From 48c4c24d1cc5ddcb8b66d245be108a97d550be1d Mon Sep 17 00:00:00 2001 From: Kacie Kang Date: Wed, 9 Feb 2022 15:35:17 -0800 Subject: [PATCH 1/9] msg --- .../Models/PsApiManagementRepresentation.cs | 2 ++ src/ApiManagement/ApiManagement/ChangeLog.md | 1 + .../documentation/upcoming-breaking-changes.md | 9 ++++++++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs index 29cdcb596692..08e503825218 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs @@ -20,6 +20,8 @@ public class PsApiManagementRepresentation { public string ContentType { get; set; } + [CmdletParameterBreakingChange("Sample", ReplaceMentCmdletParameterName = "Example")] + [Parameter(Mandatory = false)] public string Sample { get; set; } public PsApiManagementParameter[] FormParameters { get; set; } diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md index 768e279df157..b794e63ee469 100644 --- a/src/ApiManagement/ApiManagement/ChangeLog.md +++ b/src/ApiManagement/ApiManagement/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +Added warning message for upcoming breaking change. ## Version 2.3.1 * Fixed a bug in `Get-AzApiManagementTenantGitAccess` cmdlet. diff --git a/src/ApiManagement/documentation/upcoming-breaking-changes.md b/src/ApiManagement/documentation/upcoming-breaking-changes.md index e01c405de7a3..0e9ef7932930 100644 --- a/src/ApiManagement/documentation/upcoming-breaking-changes.md +++ b/src/ApiManagement/documentation/upcoming-breaking-changes.md @@ -25,4 +25,11 @@ https://github.com/Azure/azure-powershell/blob/dev/documentation/breaking-changes/breaking-change-template.md --> -# Upcoming Breaking Changes \ No newline at end of file +# Upcoming Breaking Changes + +The following cmdlets were affected this release: + +**Set-AzApiManagementOperation** +**New-AzApiManagementOperation** + +BreakingChangeAttributeParameterReplaced: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation.Samlple \ No newline at end of file From 69e117e00f3a524ce5cc40f6b9a1933d7cb592af Mon Sep 17 00:00:00 2001 From: Kacie Kang Date: Tue, 22 Mar 2022 14:30:24 -0700 Subject: [PATCH 2/9] warning --- .../Commands/NewAzureApiManagementOperation.cs | 2 ++ .../Commands/SetAzureApiManagementOperation.cs | 1 + .../Models/PsApiManagementRepresentation.cs | 2 -- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs index f7ab5d5f725b..9026a340aff9 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs @@ -88,12 +88,14 @@ public class NewAzureApiManagementOperation : AzureApiManagementCmdletBase " Use the parameter to give more details on parameters like description, type, possible values.")] public PsApiManagementParameter[] TemplateParameters { get; set; } + [CmdletParameterBreakingChange("Sample", ReplaceMentCmdletParameterName = "Example")] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Operation request details. This parameter is optional.")] public PsApiManagementRequest Request { get; set; } + [CmdletParameterBreakingChange("Sample", ReplaceMentCmdletParameterName = "Example")] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs index 61a0b0f40b84..14601dc480bd 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs @@ -88,6 +88,7 @@ public class SetAzureApiManagementOperation : AzureApiManagementCmdletBase " Use the parameter to give more details on parameters like description, type, possible values.")] public PsApiManagementParameter[] TemplateParameters { get; set; } + [CmdletParameterBreakingChange("Sample", ReplaceMentCmdletParameterName = "Example")] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs index 08e503825218..29cdcb596692 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs @@ -20,8 +20,6 @@ public class PsApiManagementRepresentation { public string ContentType { get; set; } - [CmdletParameterBreakingChange("Sample", ReplaceMentCmdletParameterName = "Example")] - [Parameter(Mandatory = false)] public string Sample { get; set; } public PsApiManagementParameter[] FormParameters { get; set; } From f31fff54d6b7e97effbf5863ab404df6c6869124 Mon Sep 17 00:00:00 2001 From: Kacie Kang Date: Thu, 24 Mar 2022 18:50:59 -0700 Subject: [PATCH 3/9] add using --- .../Commands/NewAzureApiManagementOperation.cs | 7 ++++++- .../Commands/SetAzureApiManagementOperation.cs | 8 ++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs index 9026a340aff9..8118722583ee 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands using System; using System.Management.Automation; using Management.ApiManagement.Models; + using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementOperation")] [OutputType(typeof(PsApiManagementOperation))] @@ -88,11 +89,13 @@ public class NewAzureApiManagementOperation : AzureApiManagementCmdletBase " Use the parameter to give more details on parameters like description, type, possible values.")] public PsApiManagementParameter[] TemplateParameters { get; set; } - [CmdletParameterBreakingChange("Sample", ReplaceMentCmdletParameterName = "Example")] + [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Operation request details. This parameter is optional.")] + public const String ChangeDesc = "Change Request.Representations.Sample to Request.Representations.Example"; + [CmdletParameterBreakingChange("Request.Representations.Sample", ChangeDescription = ChangeDesc)] public PsApiManagementRequest Request { get; set; } [CmdletParameterBreakingChange("Sample", ReplaceMentCmdletParameterName = "Example")] @@ -100,6 +103,8 @@ public class NewAzureApiManagementOperation : AzureApiManagementCmdletBase ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Array of possible operation responses. This parameter is optional.")] + public const String ChangeDesc2 = "Change Responses.Representations.Sample to Responses.Representations.Example"; + [CmdletParameterBreakingChange("Responses.Representations.Sample", ChangeDescription = ChangeDesc2)] public PsApiManagementResponse[] Responses { get; set; } public override void ExecuteApiManagementCmdlet() diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs index 14601dc480bd..25ec74835bc8 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs @@ -19,6 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands using Management.ApiManagement.Models; using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties; + using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementOperation", SupportsShouldProcess = true)] [OutputType(typeof(PsApiManagementOperation))] @@ -88,17 +89,20 @@ public class SetAzureApiManagementOperation : AzureApiManagementCmdletBase " Use the parameter to give more details on parameters like description, type, possible values.")] public PsApiManagementParameter[] TemplateParameters { get; set; } - [CmdletParameterBreakingChange("Sample", ReplaceMentCmdletParameterName = "Example")] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Operation request details. This parameter is optional.")] + public const String ChangeDesc = "Change Request.Representations.Sample to Request.Representations.Example"; + [CmdletParameterBreakingChange("Request.Representations.Sample", ChangeDescription = ChangeDesc)] public PsApiManagementRequest Request { get; set; } - + [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Array of possible operation responses. This parameter is optional.")] + public const String ChangeDesc2 = "Change Responses.Representations.Sample to Responses.Representations.Example"; + [CmdletParameterBreakingChange("Responses.Representations.Sample", ChangeDescription = ChangeDesc2)] public PsApiManagementResponse[] Responses { get; set; } [Parameter( From 6ed3805f74130df320b4f58c5518f9f24ef4c2df Mon Sep 17 00:00:00 2001 From: Kacie Kang Date: Fri, 25 Mar 2022 11:04:58 -0700 Subject: [PATCH 4/9] change desc --- .../Commands/SetAzureApiManagementOperation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs index 25ec74835bc8..0015d7ed6b66 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs @@ -93,7 +93,7 @@ public class SetAzureApiManagementOperation : AzureApiManagementCmdletBase ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Operation request details. This parameter is optional.")] - public const String ChangeDesc = "Change Request.Representations.Sample to Request.Representations.Example"; + public const String ChangeDesc = "Change description Request.Representations.Sample Request.Representations.Example"; [CmdletParameterBreakingChange("Request.Representations.Sample", ChangeDescription = ChangeDesc)] public PsApiManagementRequest Request { get; set; } From fa929a1c559d2bc0ff070c6b16190200760c0f79 Mon Sep 17 00:00:00 2001 From: Kacie Kang Date: Tue, 29 Mar 2022 16:15:04 -0700 Subject: [PATCH 5/9] alias --- .../Commands/SetAzureApiManagementOperation.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs index 0015d7ed6b66..a5189edc1d34 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs @@ -89,20 +89,22 @@ public class SetAzureApiManagementOperation : AzureApiManagementCmdletBase " Use the parameter to give more details on parameters like description, type, possible values.")] public PsApiManagementParameter[] TemplateParameters { get; set; } + [Alias("Request")] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Operation request details. This parameter is optional.")] - public const String ChangeDesc = "Change description Request.Representations.Sample Request.Representations.Example"; - [CmdletParameterBreakingChange("Request.Representations.Sample", ChangeDescription = ChangeDesc)] + public const String ChangeDesc = "Change Request.Representations.Sample Request.Representations.Example"; + [CmdletParameterBreakingChange("Request", ChangeDescription = ChangeDesc)] public PsApiManagementRequest Request { get; set; } + [Alias("Responses")] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Array of possible operation responses. This parameter is optional.")] public const String ChangeDesc2 = "Change Responses.Representations.Sample to Responses.Representations.Example"; - [CmdletParameterBreakingChange("Responses.Representations.Sample", ChangeDescription = ChangeDesc2)] + [CmdletParameterBreakingChange("Responses", ChangeDescription = ChangeDesc2)] public PsApiManagementResponse[] Responses { get; set; } [Parameter( From b865375a31c09e53adeeaa3400200116f315739c Mon Sep 17 00:00:00 2001 From: Kacie Kang Date: Wed, 30 Mar 2022 17:35:30 -0700 Subject: [PATCH 6/9] order --- .../Commands/NewAzureApiManagementOperation.cs | 10 ++++------ .../Commands/SetAzureApiManagementOperation.cs | 10 ++++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs index 8118722583ee..4b7a3dde1271 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs @@ -89,22 +89,20 @@ public class NewAzureApiManagementOperation : AzureApiManagementCmdletBase " Use the parameter to give more details on parameters like description, type, possible values.")] public PsApiManagementParameter[] TemplateParameters { get; set; } - + public const String ChangeDesc = "Change Request.Representations.Sample to Request.Representations.Example"; + [CmdletParameterBreakingChange("Request.Representations.Sample", ChangeDescription = ChangeDesc)] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Operation request details. This parameter is optional.")] - public const String ChangeDesc = "Change Request.Representations.Sample to Request.Representations.Example"; - [CmdletParameterBreakingChange("Request.Representations.Sample", ChangeDescription = ChangeDesc)] public PsApiManagementRequest Request { get; set; } - [CmdletParameterBreakingChange("Sample", ReplaceMentCmdletParameterName = "Example")] + public const String ChangeDesc2 = "Change Responses.Representations.Sample to Responses.Representations.Example"; + [CmdletParameterBreakingChange("Responses.Representations.Sample", ChangeDescription = ChangeDesc2)] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Array of possible operation responses. This parameter is optional.")] - public const String ChangeDesc2 = "Change Responses.Representations.Sample to Responses.Representations.Example"; - [CmdletParameterBreakingChange("Responses.Representations.Sample", ChangeDescription = ChangeDesc2)] public PsApiManagementResponse[] Responses { get; set; } public override void ExecuteApiManagementCmdlet() diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs index a5189edc1d34..469dcdc60e1e 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementOperation.cs @@ -89,22 +89,20 @@ public class SetAzureApiManagementOperation : AzureApiManagementCmdletBase " Use the parameter to give more details on parameters like description, type, possible values.")] public PsApiManagementParameter[] TemplateParameters { get; set; } - [Alias("Request")] + public const String ChangeDesc = "Change Request.Representations.Sample Request.Representations.Example"; + [CmdletParameterBreakingChange("Request", ChangeDescription = ChangeDesc)] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Operation request details. This parameter is optional.")] - public const String ChangeDesc = "Change Request.Representations.Sample Request.Representations.Example"; - [CmdletParameterBreakingChange("Request", ChangeDescription = ChangeDesc)] public PsApiManagementRequest Request { get; set; } - [Alias("Responses")] + public const String ChangeDesc2 = "Change Responses.Representations.Sample to Responses.Representations.Example"; + [CmdletParameterBreakingChange("Responses", ChangeDescription = ChangeDesc2)] [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Array of possible operation responses. This parameter is optional.")] - public const String ChangeDesc2 = "Change Responses.Representations.Sample to Responses.Representations.Example"; - [CmdletParameterBreakingChange("Responses", ChangeDescription = ChangeDesc2)] public PsApiManagementResponse[] Responses { get; set; } [Parameter( From 46487ffe7594c85ed5b0537bc01d6a51c112f573 Mon Sep 17 00:00:00 2001 From: Kacie Kang Date: Tue, 5 Apr 2022 17:33:37 -0700 Subject: [PATCH 7/9] mapi changes for 20210801 --- ...piManagement.ServiceManagement.Test.csproj | 2 +- .../ScenarioTests/ApiManagementTests.ps1 | 36 +- .../ApiCloneCrudTest.json | 510 ++++----- .../ApiCrudTest.json | 410 +++---- .../ApiDiagnosticCrudTest.json | 286 ++--- .../ApiImportExportOpenApiJsonTest.json | 150 +-- .../ApiImportExportOpenApiTest.json | 246 ++--- .../ApiImportExportSwaggerTest.json | 222 ++-- .../ApiImportExportWadlTest.json | 122 +-- .../ApiImportExportWsdlTest.json | 262 ++--- .../ApiRevisionCrudTest.json | 518 ++++----- .../ApiSchemaCrudOnSwaggerApiTest.json | 298 +++--- .../ApiSchemaCrudOnWsdlApiTest.json | 282 ++--- .../ApiVersionSetCrudTest.json | 304 +++--- .../ApiVersionSetImportCrudTest.json | 258 ++--- .../AuthorizationServerCrudTest.json | 272 ++--- .../BackendCrudTest.json | 252 ++--- .../BackendServiceFabricCrudTest.json | 316 +++--- .../CacheCrudTest.json | 272 ++--- .../CertificateCrudTest.json | 414 ++++---- .../DiagnosticCrudTest.json | 284 ++--- .../GatewayCrudTest.json | 692 ++++++------ .../GroupCrudTest.json | 600 +++++------ .../IdentityProviderAadB2CCrudTest.json | 264 ++--- .../IdentityProviderCrudTest.json | 268 ++--- .../LoggerCrudTest.json | 312 +++--- .../OpenIdConnectProviderCrudTest.json | 524 ++++----- .../OperationsCrudTest.json | 383 ++++--- .../PolicyCrudTest.json | 998 +++++++++--------- .../ProductCrudTest.json | 376 +++---- .../PropertiesCrudTest.json | 806 +++++++------- .../SubscriptionNewModelCrudTest.json | 292 ++--- .../SubscriptionOldModelCrudTest.json | 420 ++++---- .../TenantAccessConfCrudTest.json | 132 +-- .../TenantGitConfCrudTest.json | 340 +++--- .../UserCrudTest.json | 490 ++++----- .../ApiManagement.ServiceManagement.csproj | 4 +- .../ApiManagementClient.cs | 73 +- .../Models/PsApiManagementParameterExample.cs | 27 + .../Models/PsApiManagementRepresentation.cs | 3 +- .../ApiManagement.Test.csproj | 2 +- .../ApiManagement/ApiManagement.csproj | 2 +- src/ApiManagement/ApiManagement/ChangeLog.md | 2 +- .../help/New-AzApiManagementOperation.md | 7 +- 44 files changed, 6419 insertions(+), 6314 deletions(-) create mode 100644 src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementParameterExample.cs diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj index 5a31813529a5..bf2cbd32cf92 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.ps1 b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 index f0c33e2a7c97..54873c5de619 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 @@ -789,7 +789,6 @@ function Operations-CrudTest { $newOperationRequestParamType = "string" $newOperationRequestRepresentationContentType = "application/json" - $newOperationRequestRepresentationSample = getAssetName $newOperationResponseDescription = getAssetName $newOperationResponseStatusCode = 1980785443; @@ -834,7 +833,15 @@ function Operations-CrudTest { #create request representation $requestRepresentation = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation $requestRepresentation.ContentType = $newOperationRequestRepresentationContentType - $requestRepresentation.Sample = $newOperationRequestRepresentationSample + $requestRepresentation.TypeName = "the type name" + + $exp = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample + $exp.Value = "default" + $exp.Description = "My default request example" + $exp.ExternalValue = "https://contoso.com" + $exp.Summary = "default" + $requestRepresentation.Examples = @($exp) + $request.Representations = @($requestRepresentation) #create response @@ -845,12 +852,12 @@ function Operations-CrudTest { #create response representation $responseRepresentation = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation $responseRepresentation.ContentType = $newOperationResponseRepresentationContentType - $responseRepresentation.Sample = $newOperationResponseRepresentationSample + $responseRepresentation.Examples = @($exp) $response.Representations = @($responseRepresentation) $newOperation = New-AzApiManagementOperation –Context $context –ApiId $api.ApiId –OperationId $newOperationId –Name $newOperationName ` –Method $newOperationMethod –UrlTemplate $newperationUrlTemplate –Description $newOperationDescription –TemplateParameters @($rid, $query) –Request $request –Responses @($response) - + Assert-AreEqual $api.ApiId $newOperation.ApiId Assert-AreEqual $newOperationId $newOperation.OperationId Assert-AreEqual $newOperationName $newOperation.Name @@ -891,7 +898,12 @@ function Operations-CrudTest { Assert-NotNull $newOperation.Responses[0].Representations Assert-AreEqual 1 $newOperation.Responses[0].Representations.Count Assert-AreEqual $newOperationResponseRepresentationContentType $newOperation.Responses[0].Representations[0].ContentType - Assert-AreEqual $newOperationResponseRepresentationSample $newOperation.Responses[0].Representations[0].Sample + + Assert-NotNull $newOperation.Responses[0].Representations[0].Examples + Assert-AreEqual $exp.Value $newOperation.Responses[0].Representations[0].Examples[0].Value + Assert-AreEqual $exp.Description $newOperation.Responses[0].Representations[0].Examples[0].Description + Assert-AreEqual $exp.ExternalValue $newOperation.Responses[0].Representations[0].Examples[0].ExternalValue + Assert-AreEqual $exp.Summary $newOperation.Responses[0].Representations[0].Examples[0].Summary #change operation @@ -959,7 +971,7 @@ function Operations-CrudTest { #create request representation $requestRepresentation = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation $requestRepresentation.ContentType = $newOperationRequestRepresentationContentType - $requestRepresentation.Sample = $newOperationRequestRepresentationSample + $requestRepresentation.Examples = @($exp) $request.Representations = @($requestRepresentation) #create response @@ -970,7 +982,7 @@ function Operations-CrudTest { #create response representation $responseRepresentation = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation $responseRepresentation.ContentType = $newOperationResponseRepresentationContentType - $responseRepresentation.Sample = $newOperationResponseRepresentationSample + $responseRepresentation.Examples = @($exp) $response.Representations = @($responseRepresentation) $newOperation = Set-AzApiManagementOperation –Context $context –ApiId $api.ApiId –OperationId $newOperationId –Name $newOperationName ` @@ -1016,7 +1028,12 @@ function Operations-CrudTest { Assert-NotNull $newOperation.Responses[0].Representations Assert-AreEqual 1 $newOperation.Responses[0].Representations.Count Assert-AreEqual $newOperationResponseRepresentationContentType $newOperation.Responses[0].Representations[0].ContentType - Assert-AreEqual $newOperationResponseRepresentationSample $newOperation.Responses[0].Representations[0].Sample + + Assert-NotNull $newOperation.Responses[0].Representations[0].Examples + Assert-AreEqual $exp.Value $newOperation.Responses[0].Representations[0].Examples[0].Value + Assert-AreEqual $exp.Description $newOperation.Responses[0].Representations[0].Examples[0].Description + Assert-AreEqual $exp.ExternalValue $newOperation.Responses[0].Representations[0].Examples[0].ExternalValue + Assert-AreEqual $exp.Summary $newOperation.Responses[0].Representations[0].Examples[0].Summary } finally { #remove created operation @@ -2288,6 +2305,7 @@ function Logger-CrudTest { $newLoggerDescription = getAssetName $eventHubName = "powershell" # Replace the Connection string with actual EventHub connection string when recording tests + # Remove after finished $eventHubConnectionString = "Test-ConnectionString" $logger = New-AzApiManagementLogger -Context $context -LoggerId $loggerId -Name $eventHubName -ConnectionString $eventHubConnectionString -Description $newLoggerDescription @@ -2682,7 +2700,7 @@ function TenantGitConfiguration-CrudTest { Assert-NotNull $tenantGitAccess Assert-AreEqual $true $tenantGitAccess.Enabled - Assert-AreEqual "git" $tenantGitAccess.id + Assert-AreEqual "/tenant/gitAccess" $tenantGitAccess.id Assert-Null $tenantGitAccess.PrimaryKey Assert-Null $tenantGitAccess.SecondaryKey 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 2d1ba6b5b303..dc280399f85c 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a3256ef-e92a-4faf-a536-a5e75fe1a5d1" + "3fdd30a2-165d-486b-9c20-c5a366f44540" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,25 +33,25 @@ "nosniff" ], "x-ms-request-id": [ - "d4b9f3f3-0967-48c5-b6ec-fc05f303d10f" + "81e66b87-5b3e-42a7-9616-c52a568c1025" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "edfeb251-c970-47ae-9878-9e4c82fa7137" + "81e66b87-5b3e-42a7-9616-c52a568c1025" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001642Z:edfeb251-c970-47ae-9878-9e4c82fa7137" + "WESTCENTRALUS:20220401T190305Z:81e66b87-5b3e-42a7-9616-c52a568c1025" ], "Date": [ - "Tue, 13 Jul 2021 00:16:42 GMT" + "Fri, 01 Apr 2022 19:03:05 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis/echo-api?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd2bd979-98fd-42ac-928f-02ecb1c365e1" + "09705250-14eb-45e6-82aa-969d92b80bc6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/5E=\"" + "\"AAAAAAAAC04=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -99,25 +99,25 @@ "nosniff" ], "x-ms-request-id": [ - "802a034f-8877-4303-b256-152618236add" + "e0de0637-bf2f-4fc9-952f-d4354107c060" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "c5485321-f73d-410f-a0ad-a35c0589ce26" + "e0de0637-bf2f-4fc9-952f-d4354107c060" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001643Z:c5485321-f73d-410f-a0ad-a35c0589ce26" + "WESTCENTRALUS:20220401T190305Z:e0de0637-bf2f-4fc9-952f-d4354107c060" ], "Date": [ - "Tue, 13 Jul 2021 00:16:42 GMT" + "Fri, 01 Apr 2022 19:03:05 GMT" ], "Content-Length": [ - "747" + "757" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,26 +126,26 @@ "-1" ] }, - "ResponseBody": "{\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\": {\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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\": {\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/echo-api/operations?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d897e8e-24d4-4a57-883a-8adeaa93b212" + "8722cb0b-d808-464b-bf26-3502cba30c3b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -162,25 +162,25 @@ "nosniff" ], "x-ms-request-id": [ - "0d603a0d-bc1c-46d9-93a7-ae6fc1a3a335" + "eb12cf75-59f0-4b75-b961-f64c38ae33ed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "72c7905e-f67c-414f-90b4-5320ae4f280e" + "eb12cf75-59f0-4b75-b961-f64c38ae33ed" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001643Z:72c7905e-f67c-414f-90b4-5320ae4f280e" + "WESTCENTRALUS:20220401T190306Z:eb12cf75-59f0-4b75-b961-f64c38ae33ed" ], "Date": [ - "Tue, 13 Jul 2021 00:16:42 GMT" + "Fri, 01 Apr 2022 19:03:05 GMT" ], "Content-Length": [ - "7816" + "7876" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,32 +189,32 @@ "-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/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/echo-api/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/echo-api/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/echo-api/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/echo-api/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/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/apiVersionSets/ps6672?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjY3Mj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczk4MTM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6561\",\r\n \"versionQueryName\": \"ps602\",\r\n \"displayName\": \"ps5592\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2642\",\r\n \"versionQueryName\": \"ps4770\",\r\n \"displayName\": \"ps2858\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a38dbc91-4c5b-4da7-bcf2-5fe664227003" + "81969f3b-2053-47cf-9f84-4c7fb87a60e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "155" + "156" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAS0=\"" + "\"AAAAAAAADO4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,25 +234,25 @@ "nosniff" ], "x-ms-request-id": [ - "10f5d9ad-9471-443e-bdf1-8256641ab041" + "b57fdc09-f1f9-4190-b05d-554e11fe6821" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "f33b56b9-05c7-4c74-94d5-6b8df71aed20" + "b57fdc09-f1f9-4190-b05d-554e11fe6821" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001643Z:f33b56b9-05c7-4c74-94d5-6b8df71aed20" + "WESTCENTRALUS:20220401T190307Z:b57fdc09-f1f9-4190-b05d-554e11fe6821" ], "Date": [ - "Tue, 13 Jul 2021 00:16:43 GMT" + "Fri, 01 Apr 2022 19:03:07 GMT" ], "Content-Length": [ - "448" + "459" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps6672\",\r\n \"properties\": {\r\n \"displayName\": \"ps5592\",\r\n \"description\": \"ps6561\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps602\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps9813\",\r\n \"properties\": {\r\n \"displayName\": \"ps2858\",\r\n \"description\": \"ps2642\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps4770\",\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/ps5809?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6823\",\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps1273\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6595\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8084\",\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps1822\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps9036\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c309374f-2434-40e6-bd78-0f8b96bf7a24" + "05971c9b-2689-482a-a305-fe280e16ce44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,7 +297,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABATE=\"" + "\"AAAAAAAADPI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,25 +306,25 @@ "nosniff" ], "x-ms-request-id": [ - "ab66eda0-b4bc-4f5f-a6f6-5be0a3be02a5" + "5773dec1-4d03-4afa-9a28-85a5fe80f5c3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "bcfd8825-9856-4627-a318-f935b33d74da" + "5773dec1-4d03-4afa-9a28-85a5fe80f5c3" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001645Z:bcfd8825-9856-4627-a318-f935b33d74da" + "WESTCENTRALUS:20220401T190308Z:5773dec1-4d03-4afa-9a28-85a5fe80f5c3" ], "Date": [ - "Tue, 13 Jul 2021 00:16:44 GMT" + "Fri, 01 Apr 2022 19:03:08 GMT" ], "Content-Length": [ - "768" + "778" ], "Content-Type": [ "application/json; charset=utf-8" @@ -333,23 +333,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5809\",\r\n \"properties\": {\r\n \"displayName\": \"ps1273\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6823\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6595\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6390\",\r\n \"properties\": {\r\n \"displayName\": \"ps1822\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8084\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps9036\",\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/ps5809?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c309374f-2434-40e6-bd78-0f8b96bf7a24" + "05971c9b-2689-482a-a305-fe280e16ce44" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -360,7 +360,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABATE=\"" + "\"AAAAAAAADPI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,25 +369,25 @@ "nosniff" ], "x-ms-request-id": [ - "159af660-cd20-4401-9216-7ff26f0f3475" + "4cf1c914-ba35-41c3-a71d-c3eee6c08f1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "31f0455f-19bc-469e-9376-ac84ab46140e" + "4cf1c914-ba35-41c3-a71d-c3eee6c08f1c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001715Z:31f0455f-19bc-469e-9376-ac84ab46140e" + "WESTCENTRALUS:20220401T190338Z:4cf1c914-ba35-41c3-a71d-c3eee6c08f1c" ], "Date": [ - "Tue, 13 Jul 2021 00:17:14 GMT" + "Fri, 01 Apr 2022 19:03:38 GMT" ], "Content-Length": [ - "768" + "778" ], "Content-Type": [ "application/json; charset=utf-8" @@ -396,26 +396,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5809\",\r\n \"properties\": {\r\n \"displayName\": \"ps1273\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6823\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6595\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6390\",\r\n \"properties\": {\r\n \"displayName\": \"ps1822\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8084\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps9036\",\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/ps5809/operations?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d5c81ec-ef51-49d0-be8f-a1195b1fcdaa" + "ea926a91-e897-483b-9e4e-031338b9485e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -432,25 +432,25 @@ "nosniff" ], "x-ms-request-id": [ - "e2bdbbe5-3935-427e-bfa4-089b49304ce1" + "7e117457-2149-455b-bf2f-c81bc69cfb45" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "b00bcec6-810b-41cf-950d-0e0ef7a99324" + "7e117457-2149-455b-bf2f-c81bc69cfb45" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001715Z:b00bcec6-810b-41cf-950d-0e0ef7a99324" + "WESTCENTRALUS:20220401T190338Z:7e117457-2149-455b-bf2f-c81bc69cfb45" ], "Date": [ - "Tue, 13 Jul 2021 00:17:14 GMT" + "Fri, 01 Apr 2022 19:03:38 GMT" ], "Content-Length": [ - "7804" + "7864" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,26 +459,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/ps5809/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/ps5809/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/ps5809/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/ps5809/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/ps5809/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/ps5809/operations/create-resource?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/create-resource?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL2NyZWF0ZS1yZXNvdXJjZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4a58b6e-ba59-48cd-bc45-cb781acb373f" + "17909291-14e1-4ffb-a22d-37adf4f89018" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -489,7 +489,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAUE=\"" + "\"AAAAAAAADP8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,25 +498,25 @@ "nosniff" ], "x-ms-request-id": [ - "8d6db15a-be69-46df-ba0e-96c9d5e679da" + "72604fb2-e20a-4734-80e9-f4c21cc8cf4c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "9e4f9a0c-eb5f-49db-ade7-ebf2bc262ed2" + "72604fb2-e20a-4734-80e9-f4c21cc8cf4c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001715Z:9e4f9a0c-eb5f-49db-ade7-ebf2bc262ed2" + "WESTCENTRALUS:20220401T190339Z:72604fb2-e20a-4734-80e9-f4c21cc8cf4c" ], "Date": [ - "Tue, 13 Jul 2021 00:17:14 GMT" + "Fri, 01 Apr 2022 19:03:38 GMT" ], "Content-Length": [ - "1267" + "1646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,26 +525,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/ps5809/operations/modify-resource?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/modify-resource?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL21vZGlmeS1yZXNvdXJjZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "facafb02-c13b-4096-ba37-66ec0712fb59" + "cb3583a4-87cb-4e8f-bee7-e3e0a660e219" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -555,7 +555,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAUA=\"" + "\"AAAAAAAADP4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,25 +564,25 @@ "nosniff" ], "x-ms-request-id": [ - "9eeee20c-f911-4e56-a4b2-105366250a43" + "597b0103-dfb6-44f8-9a2c-185e4e87d0e7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "470209cc-5802-46bd-b3f3-b86b78bd970a" + "597b0103-dfb6-44f8-9a2c-185e4e87d0e7" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001715Z:470209cc-5802-46bd-b3f3-b86b78bd970a" + "WESTCENTRALUS:20220401T190339Z:597b0103-dfb6-44f8-9a2c-185e4e87d0e7" ], "Date": [ - "Tue, 13 Jul 2021 00:17:14 GMT" + "Fri, 01 Apr 2022 19:03:38 GMT" ], "Content-Length": [ - "890" + "900" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,26 +591,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/ps5809/operations/remove-resource?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvcmVtb3ZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/remove-resource?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL3JlbW92ZS1yZXNvdXJjZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e45ca3c-fb36-456f-8860-b850bf56174a" + "463f30b9-5864-4ea5-b901-b5bf8b36f949" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -621,7 +621,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAUI=\"" + "\"AAAAAAAADQE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -630,25 +630,25 @@ "nosniff" ], "x-ms-request-id": [ - "a27a0a12-7820-455a-9a1b-c35476f7e206" + "38746452-fc2b-4d90-88a7-6ab6ca313e0e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "92ad1e31-145d-4ba0-a671-dbd783372691" + "38746452-fc2b-4d90-88a7-6ab6ca313e0e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001715Z:92ad1e31-145d-4ba0-a671-dbd783372691" + "WESTCENTRALUS:20220401T190339Z:38746452-fc2b-4d90-88a7-6ab6ca313e0e" ], "Date": [ - "Tue, 13 Jul 2021 00:17:14 GMT" + "Fri, 01 Apr 2022 19:03:39 GMT" ], "Content-Length": [ - "900" + "910" ], "Content-Type": [ "application/json; charset=utf-8" @@ -657,26 +657,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/ps5809/operations/retrieve-header-only?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-header-only?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL3JldHJpZXZlLWhlYWRlci1vbmx5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75530ab4-2ec2-40b4-9ef7-e5348ca8d3fa" + "6f28602f-5af2-4d04-bcb3-b2e211154c84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -687,7 +687,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAUM=\"" + "\"AAAAAAAADQU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,25 +696,25 @@ "nosniff" ], "x-ms-request-id": [ - "1a712534-bb95-4491-bfa1-3ccf5d4d9da2" + "53ad62ac-6872-4206-9e38-9703abc2664a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "6a6d3597-b906-41e0-b47e-d4c5b4b1bae8" + "53ad62ac-6872-4206-9e38-9703abc2664a" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001715Z:6a6d3597-b906-41e0-b47e-d4c5b4b1bae8" + "WESTCENTRALUS:20220401T190339Z:53ad62ac-6872-4206-9e38-9703abc2664a" ], "Date": [ - "Tue, 13 Jul 2021 00:17:15 GMT" + "Fri, 01 Apr 2022 19:03:39 GMT" ], "Content-Length": [ - "895" + "905" ], "Content-Type": [ "application/json; charset=utf-8" @@ -723,26 +723,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/ps5809/operations/retrieve-resource?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-resource?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL3JldHJpZXZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03274a87-4e5f-4d55-a0c9-e64543c273aa" + "bf94474e-0c52-4c6c-a0ff-8a578b614443" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -753,7 +753,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAT4=\"" + "\"AAAAAAAADP0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,25 +762,25 @@ "nosniff" ], "x-ms-request-id": [ - "64ebeeb0-7774-481d-a23d-d267e2f3aa63" + "ad23d9a3-6bb2-4337-ab38-1abf54d3d7f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "2f355c8f-1c9f-45df-b2b5-f5ec09cb1655" + "ad23d9a3-6bb2-4337-ab38-1abf54d3d7f3" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001716Z:2f355c8f-1c9f-45df-b2b5-f5ec09cb1655" + "WESTCENTRALUS:20220401T190339Z:ad23d9a3-6bb2-4337-ab38-1abf54d3d7f3" ], "Date": [ - "Tue, 13 Jul 2021 00:17:15 GMT" + "Fri, 01 Apr 2022 19:03:39 GMT" ], "Content-Length": [ - "1474" + "1484" ], "Content-Type": [ "application/json; charset=utf-8" @@ -789,26 +789,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/ps5809/operations/retrieve-resource-cached?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2UtY2FjaGVkP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-resource-cached?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL3JldHJpZXZlLXJlc291cmNlLWNhY2hlZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d5392f6-8236-4912-bc0f-9b866ac3ef53" + "425b9225-443a-48e0-b30a-a46da9421756" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -819,7 +819,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAT8=\"" + "\"AAAAAAAADQM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,25 +828,25 @@ "nosniff" ], "x-ms-request-id": [ - "a5206685-e717-43b7-a1d8-4ad4e74eff52" + "430e0d6d-b176-4bf0-bcef-c0aa0a82e77a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-correlation-request-id": [ - "7449c3b8-cdfb-4720-a755-3f3ff93c2b27" + "430e0d6d-b176-4bf0-bcef-c0aa0a82e77a" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001716Z:7449c3b8-cdfb-4720-a755-3f3ff93c2b27" + "WESTCENTRALUS:20220401T190339Z:430e0d6d-b176-4bf0-bcef-c0aa0a82e77a" ], "Date": [ - "Tue, 13 Jul 2021 00:17:15 GMT" + "Fri, 01 Apr 2022 19:03:39 GMT" ], "Content-Length": [ - "1551" + "1561" ], "Content-Type": [ "application/json; charset=utf-8" @@ -855,32 +855,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/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/ps2333?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzMzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTg0MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9579\",\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps6672\",\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps917\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps8476\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1906\",\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps9813\",\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps6463\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7493\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "41b7fc7b-4609-4cdf-a29c-d92e0abaab25" + "48ec97f4-4674-481c-9832-09c58689e457" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "376" + "377" ] }, "ResponseHeaders": { @@ -891,7 +891,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAVY=\"" + "\"AAAAAAAADRg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -900,25 +900,25 @@ "nosniff" ], "x-ms-request-id": [ - "11ab242b-e177-4007-98a2-d80814324f08" + "f5324611-26a5-4027-a19b-a6e601b094d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "0a935a50-3faa-41dc-b27e-59a10ba5f6f3" + "f5324611-26a5-4027-a19b-a6e601b094d3" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001717Z:0a935a50-3faa-41dc-b27e-59a10ba5f6f3" + "WESTCENTRALUS:20220401T190340Z:f5324611-26a5-4027-a19b-a6e601b094d3" ], "Date": [ - "Tue, 13 Jul 2021 00:17:16 GMT" + "Fri, 01 Apr 2022 19:03:40 GMT" ], "Content-Length": [ - "1364" + "1396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -927,23 +927,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2333\",\r\n \"properties\": {\r\n \"displayName\": \"ps917\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9579\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps8476\",\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/ps6672\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672\",\r\n \"name\": \"ps5592\",\r\n \"description\": \"ps6561\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps602\",\r\n \"versionHeaderName\": null\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5841\",\r\n \"properties\": {\r\n \"displayName\": \"ps6463\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1906\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7493\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813\",\r\n \"name\": \"ps2858\",\r\n \"description\": \"ps2642\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps4770\",\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/ps2333?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzMzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTg0MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41b7fc7b-4609-4cdf-a29c-d92e0abaab25" + "48ec97f4-4674-481c-9832-09c58689e457" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -954,7 +954,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAVY=\"" + "\"AAAAAAAADRg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -963,25 +963,25 @@ "nosniff" ], "x-ms-request-id": [ - "d24618a0-bab6-4acf-a07a-0cbb80c47a71" + "e3143051-64d6-4fbf-8672-c8c8346a2806" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "68629107-08e8-43c1-80d4-a3dc3833c769" + "e3143051-64d6-4fbf-8672-c8c8346a2806" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001747Z:68629107-08e8-43c1-80d4-a3dc3833c769" + "WESTCENTRALUS:20220401T190410Z:e3143051-64d6-4fbf-8672-c8c8346a2806" ], "Date": [ - "Tue, 13 Jul 2021 00:17:47 GMT" + "Fri, 01 Apr 2022 19:04:10 GMT" ], "Content-Length": [ - "987" + "1008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -990,17 +990,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2333\",\r\n \"properties\": {\r\n \"displayName\": \"ps917\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9579\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps8476\",\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/ps6672\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5841\",\r\n \"properties\": {\r\n \"displayName\": \"ps6463\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1906\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7493\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94b3455c-41b8-44f4-8e1a-ef4d9f628d90" + "b7ce8597-a892-4181-b695-244d8a71bf2f" ], "If-Match": [ "*" @@ -1009,10 +1009,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1029,7 +1029,7 @@ "nosniff" ], "x-ms-request-id": [ - "d5cc312a-2b5e-4825-8c3a-a679402d8296" + "318bdaf2-c0a2-4b92-be30-ab8e5e89d464" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1038,13 +1038,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "18fff16b-4ab3-4d24-b569-193e4272e5e0" + "318bdaf2-c0a2-4b92-be30-ab8e5e89d464" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001747Z:18fff16b-4ab3-4d24-b569-193e4272e5e0" + "WESTCENTRALUS:20220401T190411Z:318bdaf2-c0a2-4b92-be30-ab8e5e89d464" ], "Date": [ - "Tue, 13 Jul 2021 00:17:47 GMT" + "Fri, 01 Apr 2022 19:04:10 GMT" ], "Expires": [ "-1" @@ -1057,13 +1057,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzMzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTg0MT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17ac2963-a18c-4187-ad82-74a1186d3fc2" + "e9250572-c703-4178-9549-484cd3e12eb4" ], "If-Match": [ "*" @@ -1072,10 +1072,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1092,7 +1092,7 @@ "nosniff" ], "x-ms-request-id": [ - "a67c2db0-64f9-474c-bcb6-b42434c24c27" + "afab64db-ea83-4570-81b4-66b784a3c1e4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1101,13 +1101,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "50ce9d18-0a82-4ad2-9a96-c72ec23621d4" + "afab64db-ea83-4570-81b4-66b784a3c1e4" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001748Z:50ce9d18-0a82-4ad2-9a96-c72ec23621d4" + "WESTCENTRALUS:20220401T190411Z:afab64db-ea83-4570-81b4-66b784a3c1e4" ], "Date": [ - "Tue, 13 Jul 2021 00:17:48 GMT" + "Fri, 01 Apr 2022 19:04:11 GMT" ], "Expires": [ "-1" @@ -1120,13 +1120,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjY3Mj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczk4MTM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dfab2af-fba0-40db-9a2b-4a4fc920f70f" + "0370fc61-6ec7-4ac6-b332-235aca94954d" ], "If-Match": [ "*" @@ -1135,10 +1135,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1155,7 +1155,7 @@ "nosniff" ], "x-ms-request-id": [ - "62dd9f27-5838-424c-b4d2-bc1838322a05" + "9b99f8bd-e549-471b-99bd-f66f89ffc36b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1164,13 +1164,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "45a07cfe-b381-49a0-9325-cda91257c2d3" + "9b99f8bd-e549-471b-99bd-f66f89ffc36b" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001748Z:45a07cfe-b381-49a0-9325-cda91257c2d3" + "WESTCENTRALUS:20220401T190411Z:9b99f8bd-e549-471b-99bd-f66f89ffc36b" ], "Date": [ - "Tue, 13 Jul 2021 00:17:48 GMT" + "Fri, 01 Apr 2022 19:04:11 GMT" ], "Expires": [ "-1" @@ -1182,21 +1182,21 @@ ], "Names": { "": [ - "ps5809", - "ps6672", - "ps2333", - "ps5592", - "ps602", - "ps6561", - "ps1273", - "ps6823", - "ps6595", - "ps917", - "ps9579", - "ps8476" + "ps6390", + "ps9813", + "ps5841", + "ps2858", + "ps4770", + "ps2642", + "ps1822", + "ps8084", + "ps9036", + "ps6463", + "ps1906", + "ps7493" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 b978abc07b76..7cb71056101e 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1aa2d48b-6008-449c-924c-79d2aa726563" + "710cded0-bfff-48e0-ba94-bae8095c1133" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "9db14f6a-9682-44f2-9e99-abc15d7c5fee" + "368a84e5-5869-41f9-a7f7-6976e9fe2643" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "4b388755-c1d0-45f7-ad7f-758a5a7911eb" + "368a84e5-5869-41f9-a7f7-6976e9fe2643" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001540Z:4b388755-c1d0-45f7-ad7f-758a5a7911eb" + "WESTCENTRALUS:20220401T190214Z:368a84e5-5869-41f9-a7f7-6976e9fe2643" ], "Date": [ - "Tue, 13 Jul 2021 00:15:39 GMT" + "Fri, 01 Apr 2022 19:02:13 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis/echo-api?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "773061f5-1ca0-4ba2-9c38-df0506301eaf" + "a8dad497-abfe-4dca-ab7a-436b926c5045" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/5E=\"" + "\"AAAAAAAAC04=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -99,7 +99,7 @@ "nosniff" ], "x-ms-request-id": [ - "5d33c1f1-7b77-4a3f-bf47-8abd93c9d3c8" + "677b3193-64d4-436b-84dc-b0315290321f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -108,16 +108,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "79240767-105f-459c-8070-b869a284249d" + "677b3193-64d4-436b-84dc-b0315290321f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001540Z:79240767-105f-459c-8070-b869a284249d" + "WESTCENTRALUS:20220401T190215Z:677b3193-64d4-436b-84dc-b0315290321f" ], "Date": [ - "Tue, 13 Jul 2021 00:15:39 GMT" + "Fri, 01 Apr 2022 19:02:15 GMT" ], "Content-Length": [ - "747" + "757" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,26 +126,26 @@ "-1" ] }, - "ResponseBody": "{\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\": {\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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\": {\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?$filter=properties/displayName%20eq%20'Echo%20API'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/JGZpbHRlcj1wcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lJTIwZXElMjAnRWNobyUyMEFQSScmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?$filter=properties/displayName%20eq%20'Echo%20API'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ0VjaG8lMjBBUEknJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd30bc70-733d-4a83-a76e-530d22f12922" + "07375205-c776-4537-b142-4c9692e36610" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "nosniff" ], "x-ms-request-id": [ - "49a4b865-6f30-44ce-b6fc-e81188ad9871" + "3ecefc79-849d-41a5-a0e8-038b7f71246c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "b34dfde7-4d87-4e27-a7f7-edaea686c8d0" + "3ecefc79-849d-41a5-a0e8-038b7f71246c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001540Z:b34dfde7-4d87-4e27-a7f7-edaea686c8d0" + "WESTCENTRALUS:20220401T190215Z:3ecefc79-849d-41a5-a0e8-038b7f71246c" ], "Date": [ - "Tue, 13 Jul 2021 00:15:39 GMT" + "Fri, 01 Apr 2022 19:02:15 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,32 +189,32 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis/ps3398?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps73\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps1329\",\r\n \"query\": \"ps4460\"\r\n },\r\n \"displayName\": \"ps8573\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7658\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7322\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps8160\",\r\n \"query\": \"ps8637\"\r\n },\r\n \"displayName\": \"ps7197\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6547\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "177760f5-3a9b-4df6-a1b5-d3716bbb1c7e" + "c1f9f462-6641-424d-8add-a27f6c34a134" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "326" + "328" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAPI=\"" + "\"AAAAAAAADLY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "x-ms-request-id": [ - "336a9e64-d10d-4aca-af26-c3cf0409889d" + "3cd95584-9f33-42f1-941a-25cab079c24b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "a3e51479-e4ca-4ffc-a50e-15ad6e291b27" + "3cd95584-9f33-42f1-941a-25cab079c24b" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001541Z:a3e51479-e4ca-4ffc-a50e-15ad6e291b27" + "WESTCENTRALUS:20220401T190216Z:3cd95584-9f33-42f1-941a-25cab079c24b" ], "Date": [ - "Tue, 13 Jul 2021 00:15:41 GMT" + "Fri, 01 Apr 2022 19:02:16 GMT" ], "Content-Length": [ - "737" + "749" ], "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/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps8573\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps73\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7658\",\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\": \"ps1329\",\r\n \"query\": \"ps4460\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7197\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps7322\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6547\",\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\": \"ps8160\",\r\n \"query\": \"ps8637\"\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/ps3398?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4669\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3142\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4809\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4232\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2024\",\r\n \"query\": \"ps8863\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps7859\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4000\",\r\n \"protocols\": [\r\n \"Https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "16def454-d405-4877-92a9-efade78935f3" + "7f37e7e9-c036-4ee7-bf50-8ac10a480b8a" ], "If-Match": [ "*" @@ -280,16 +280,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "434" + "435" ] }, "ResponseHeaders": { @@ -300,7 +300,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAPc=\"" + "\"AAAAAAAADLs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,7 +309,7 @@ "nosniff" ], "x-ms-request-id": [ - "7c0511c0-38c7-4219-b018-dfa23967999f" + "5778c721-b73f-4298-b2cb-885d457384a5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -318,16 +318,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "7e5971ad-322c-46e6-a068-fdd51c12f88d" + "5778c721-b73f-4298-b2cb-885d457384a5" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001618Z:7e5971ad-322c-46e6-a068-fdd51c12f88d" + "WESTCENTRALUS:20220401T190247Z:5778c721-b73f-4298-b2cb-885d457384a5" ], "Date": [ - "Tue, 13 Jul 2021 00:16:18 GMT" + "Fri, 01 Apr 2022 19:02:47 GMT" ], "Content-Length": [ - "726" + "737" ], "Content-Type": [ "application/json; charset=utf-8" @@ -336,17 +336,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4809\",\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\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4000\",\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\": \"ps2024\",\r\n \"query\": \"ps8863\"\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/ps3398?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4669\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3142\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4809\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4232\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2024\",\r\n \"query\": \"ps8863\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps7859\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4000\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "17e112e6-f280-4f8c-b2be-23b49a314800" + "4fdfb6f7-1878-4e2e-8535-9a6ce6ed4827" ], "If-Match": [ "*" @@ -355,16 +355,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "434" + "435" ] }, "ResponseHeaders": { @@ -375,7 +375,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAP4=\"" + "\"AAAAAAAADMA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,7 +384,7 @@ "nosniff" ], "x-ms-request-id": [ - "f7aa283a-0bd8-4a4d-bf6f-63e860178efd" + "64430114-030d-4df9-aef2-61838a8d5a69" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -393,16 +393,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "c4fb8177-578c-4255-9e03-2195421f79a4" + "64430114-030d-4df9-aef2-61838a8d5a69" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001621Z:c4fb8177-578c-4255-9e03-2195421f79a4" + "WESTCENTRALUS:20220401T190248Z:64430114-030d-4df9-aef2-61838a8d5a69" ], "Date": [ - "Tue, 13 Jul 2021 00:16:21 GMT" + "Fri, 01 Apr 2022 19:02:47 GMT" ], "Content-Length": [ - "726" + "737" ], "Content-Type": [ "application/json; charset=utf-8" @@ -411,23 +411,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4809\",\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\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4000\",\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\": \"ps2024\",\r\n \"query\": \"ps8863\"\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/ps3398?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "177760f5-3a9b-4df6-a1b5-d3716bbb1c7e" + "c1f9f462-6641-424d-8add-a27f6c34a134" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -438,7 +438,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAPI=\"" + "\"AAAAAAAADLY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -447,25 +447,25 @@ "nosniff" ], "x-ms-request-id": [ - "b7ec937f-7201-44c3-8126-c15eb35926d1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "07b8bd28-307c-4dc4-b774-9af2347da32d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "7aaecea2-08fc-4013-92d1-9ee14e89d0c4" + "07b8bd28-307c-4dc4-b774-9af2347da32d" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001611Z:7aaecea2-08fc-4013-92d1-9ee14e89d0c4" + "WESTCENTRALUS:20220401T190246Z:07b8bd28-307c-4dc4-b774-9af2347da32d" ], "Date": [ - "Tue, 13 Jul 2021 00:16:11 GMT" + "Fri, 01 Apr 2022 19:02:46 GMT" ], "Content-Length": [ - "737" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -474,26 +474,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps8573\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps73\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7658\",\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\": \"ps1329\",\r\n \"query\": \"ps4460\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7197\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps7322\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6547\",\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\": \"ps8160\",\r\n \"query\": \"ps8637\"\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/ps3398?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16def454-d405-4877-92a9-efade78935f3" + "7f37e7e9-c036-4ee7-bf50-8ac10a480b8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -504,7 +504,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAPI=\"" + "\"AAAAAAAADLY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -513,7 +513,7 @@ "nosniff" ], "x-ms-request-id": [ - "937ebc21-6bb8-4fb1-bf5d-4dd19292725c" + "ea971f72-c107-43b5-93a0-71e408610c94" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -522,16 +522,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "6a0d5691-1102-4d90-8afb-416b3876fda7" + "ea971f72-c107-43b5-93a0-71e408610c94" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001611Z:6a0d5691-1102-4d90-8afb-416b3876fda7" + "WESTCENTRALUS:20220401T190247Z:ea971f72-c107-43b5-93a0-71e408610c94" ], "Date": [ - "Tue, 13 Jul 2021 00:16:11 GMT" + "Fri, 01 Apr 2022 19:02:46 GMT" ], "Content-Length": [ - "737" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,26 +540,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps8573\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps73\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7658\",\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\": \"ps1329\",\r\n \"query\": \"ps4460\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7197\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps7322\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6547\",\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\": \"ps8160\",\r\n \"query\": \"ps8637\"\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/ps3398?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17e112e6-f280-4f8c-b2be-23b49a314800" + "4fdfb6f7-1878-4e2e-8535-9a6ce6ed4827" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -570,7 +570,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAPc=\"" + "\"AAAAAAAADLs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -579,7 +579,7 @@ "nosniff" ], "x-ms-request-id": [ - "18ed7626-6fc3-4c41-a52b-196b3f6aed71" + "4272a8fd-4f3a-4991-8947-6487aed6a27c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -588,16 +588,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "2902f29f-166b-47f5-bd81-b7db50653f68" + "4272a8fd-4f3a-4991-8947-6487aed6a27c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001618Z:2902f29f-166b-47f5-bd81-b7db50653f68" + "WESTCENTRALUS:20220401T190247Z:4272a8fd-4f3a-4991-8947-6487aed6a27c" ], "Date": [ - "Tue, 13 Jul 2021 00:16:18 GMT" + "Fri, 01 Apr 2022 19:02:47 GMT" ], "Content-Length": [ - "726" + "737" ], "Content-Type": [ "application/json; charset=utf-8" @@ -606,26 +606,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4809\",\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\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4000\",\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\": \"ps2024\",\r\n \"query\": \"ps8863\"\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/products?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07f05e34-f076-463b-b346-eaf2f5def873" + "5145eede-d2a4-42df-8c8d-41ab4ead194c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -642,7 +642,7 @@ "nosniff" ], "x-ms-request-id": [ - "7e2c3196-973d-4cb8-a969-57864b4974f2" + "afd4adc7-1b05-480e-b0a9-186b13dec8dd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -651,16 +651,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "f203a7d7-8739-49bb-bb00-574a4af8e482" + "afd4adc7-1b05-480e-b0a9-186b13dec8dd" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001621Z:f203a7d7-8739-49bb-bb00-574a4af8e482" + "WESTCENTRALUS:20220401T190248Z:afd4adc7-1b05-480e-b0a9-186b13dec8dd" ], "Date": [ - "Tue, 13 Jul 2021 00:16:21 GMT" + "Fri, 01 Apr 2022 19:02:47 GMT" ], "Content-Length": [ - "1287" + "1307" ], "Content-Type": [ "application/json; charset=utf-8" @@ -669,26 +669,26 @@ "-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\": 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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/ps3398?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczMzOTg/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8344?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM4MzQ0P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fd3f176-e21d-4208-a6bc-50513c755e88" + "ca399224-db15-483e-bfd2-dfcf3b7dc5bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -699,7 +699,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAP4=\"" + "\"AAAAAAAADMA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,7 +708,7 @@ "nosniff" ], "x-ms-request-id": [ - "260838db-483d-45f0-9ae2-a37a89ce9bf1" + "056e23ed-0f6c-4dad-babc-382575e6691a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -717,16 +717,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "3bf17b5f-84d4-4107-9d15-4ee5992160c6" + "056e23ed-0f6c-4dad-babc-382575e6691a" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001622Z:3bf17b5f-84d4-4107-9d15-4ee5992160c6" + "WESTCENTRALUS:20220401T190248Z:056e23ed-0f6c-4dad-babc-382575e6691a" ], "Date": [ - "Tue, 13 Jul 2021 00:16:21 GMT" + "Fri, 01 Apr 2022 19:02:48 GMT" ], "Content-Length": [ - "629" + "639" ], "Content-Type": [ "application/json; charset=utf-8" @@ -735,26 +735,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4809\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4000\",\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/starter/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28cbe45-c4f1-408c-9bd0-41b33a630bab" + "7881ee60-e03c-4aeb-8697-f5c57ba16c29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -771,7 +771,7 @@ "nosniff" ], "x-ms-request-id": [ - "ed6e51ce-8228-41ac-a077-dc134ba41890" + "207b4fed-27d2-4be6-8f94-da4f4f4c1543" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,16 +780,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "ed412a4a-9a02-4a7b-8ffc-37f4a397e0f4" + "207b4fed-27d2-4be6-8f94-da4f4f4c1543" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001622Z:ed412a4a-9a02-4a7b-8ffc-37f4a397e0f4" + "WESTCENTRALUS:20220401T190248Z:207b4fed-27d2-4be6-8f94-da4f4f4c1543" ], "Date": [ - "Tue, 13 Jul 2021 00:16:22 GMT" + "Fri, 01 Apr 2022 19:02:48 GMT" ], "Content-Length": [ - "1482" + "1502" ], "Content-Type": [ "application/json; charset=utf-8" @@ -798,26 +798,26 @@ "-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/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4809\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4000\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3686d036-5e7e-4fc8-bf62-3064f84d74a4" + "3d0bf09f-50f1-4a18-8531-c9a615b38e2d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -834,7 +834,7 @@ "nosniff" ], "x-ms-request-id": [ - "8df58a21-ed8d-400b-9cea-25c6fdf94d91" + "7a0bc691-099c-416f-affc-4075645e67bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -843,16 +843,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "18d36016-fa06-49f8-8f5a-446917ddf13d" + "7a0bc691-099c-416f-affc-4075645e67bd" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001623Z:18d36016-fa06-49f8-8f5a-446917ddf13d" + "WESTCENTRALUS:20220401T190249Z:7a0bc691-099c-416f-affc-4075645e67bd" ], "Date": [ - "Tue, 13 Jul 2021 00:16:22 GMT" + "Fri, 01 Apr 2022 19:02:48 GMT" ], "Content-Length": [ - "755" + "765" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,26 +861,26 @@ "-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 \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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 \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3398?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczMzOTg/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8344?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM4MzQ0P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad752c02-fde4-4e98-8b74-9fcb60969dd2" + "3be715a9-5727-433c-a37d-8b2b2b5ad8c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -897,7 +897,7 @@ "nosniff" ], "x-ms-request-id": [ - "316137d5-ea01-449b-9801-72bd606a6981" + "6f81d9ef-164d-4bb4-b972-bc07573930fb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -906,13 +906,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "81bd111a-45a8-4959-972d-9ee6baa745ff" + "6f81d9ef-164d-4bb4-b972-bc07573930fb" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001622Z:81bd111a-45a8-4959-972d-9ee6baa745ff" + "WESTCENTRALUS:20220401T190249Z:6f81d9ef-164d-4bb4-b972-bc07573930fb" ], "Date": [ - "Tue, 13 Jul 2021 00:16:22 GMT" + "Fri, 01 Apr 2022 19:02:48 GMT" ], "Expires": [ "-1" @@ -925,13 +925,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fd5525c-f204-458b-bd40-e4d29fad282c" + "805a647b-480c-4375-8649-a11f859aba01" ], "If-Match": [ "*" @@ -940,10 +940,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -960,7 +960,7 @@ "nosniff" ], "x-ms-request-id": [ - "3ac47a7f-842b-4be4-a28a-44a7e528c1c1" + "bee3eefc-fb5e-4f54-8eb7-b4df9e8bfbd9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -969,13 +969,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "23a8fc5b-b080-4b88-adb9-84dc36d4d8b1" + "bee3eefc-fb5e-4f54-8eb7-b4df9e8bfbd9" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001623Z:23a8fc5b-b080-4b88-adb9-84dc36d4d8b1" + "WESTCENTRALUS:20220401T190249Z:bee3eefc-fb5e-4f54-8eb7-b4df9e8bfbd9" ], "Date": [ - "Tue, 13 Jul 2021 00:16:22 GMT" + "Fri, 01 Apr 2022 19:02:49 GMT" ], "Expires": [ "-1" @@ -990,20 +990,20 @@ ], "Names": { "": [ - "ps3398", - "ps8573", - "ps73", - "ps7658", - "ps1329", - "ps4460", - "ps3142", - "ps4669", - "ps4809", - "ps3527", - "ps699" + "ps8344", + "ps7197", + "ps7322", + "ps6547", + "ps8160", + "ps8637", + "ps7859", + "ps4232", + "ps4000", + "ps2024", + "ps8863" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 6784f4d9e5e4..1206b673c47e 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49964453-9398-4ad5-a23c-37a5bfa7d8c2" + "eef0116d-8d7b-40a2-b845-86e6c148ad4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "a78de975-f77c-4f10-a087-86b62f8d7828" + "38dfbd8d-c270-4fff-b698-1b15dc656de6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "8d428925-1132-4381-80ba-320829cff787" + "38dfbd8d-c270-4fff-b698-1b15dc656de6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001359Z:8d428925-1132-4381-80ba-320829cff787" + "WESTUS:20220401T190049Z:38dfbd8d-c270-4fff-b698-1b15dc656de6" ], "Date": [ - "Tue, 13 Jul 2021 00:13:58 GMT" + "Fri, 01 Apr 2022 19:00:48 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis/echo-api/diagnostics?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0af6b7c-71c0-424b-80dd-c2224780e63a" + "5226a797-a2e5-4ee2-97da-2a0818d7cd07" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -96,7 +96,7 @@ "nosniff" ], "x-ms-request-id": [ - "3b2fd595-6ab3-4950-8419-f82f4bd38598" + "c5dc4698-61a1-4398-a97d-17007c9f7c6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,13 +105,13 @@ "11998" ], "x-ms-correlation-request-id": [ - "01ced567-1de8-49ea-9a75-8a0c2666e2d3" + "c5dc4698-61a1-4398-a97d-17007c9f7c6f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001359Z:01ced567-1de8-49ea-9a75-8a0c2666e2d3" + "WESTUS:20220401T190050Z:c5dc4698-61a1-4398-a97d-17007c9f7c6f" ], "Date": [ - "Tue, 13 Jul 2021 00:13:58 GMT" + "Fri, 01 Apr 2022 19:00:49 GMT" ], "Content-Length": [ "34" @@ -127,22 +127,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44574b44-80d1-4913-bdbb-1338df60efde" + "209ba58b-3b08-4a86-8afe-56ccc2931767" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "nosniff" ], "x-ms-request-id": [ - "d8f07f7a-6b98-4995-9f9e-c070a1c611a6" + "f25c1c18-535b-4937-b59b-a91ab093f0a3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "11995" ], "x-ms-correlation-request-id": [ - "57bcf71b-2396-4627-9cf2-bad161ad26ad" + "f25c1c18-535b-4937-b59b-a91ab093f0a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001404Z:57bcf71b-2396-4627-9cf2-bad161ad26ad" + "WESTUS:20220401T190055Z:f25c1c18-535b-4937-b59b-a91ab093f0a3" ], "Date": [ - "Tue, 13 Jul 2021 00:14:03 GMT" + "Fri, 01 Apr 2022 19:00:54 GMT" ], "Content-Length": [ "34" @@ -190,22 +190,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMzgzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTgzOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps4934\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"6f2f4c2d-d03b-4cd1-af0c-ba13df45e04e\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7270\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"e2c9fc13-375a-4468-814d-a3acd13dfb4f\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "43fac817-310e-4714-819a-c57bc0949a78" + "cab62c56-1783-40a2-a46c-e12639ef6d09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -222,7 +222,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAI0=\"" + "\"AAAAAAAADFk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "x-ms-request-id": [ - "5875fd68-b95d-4e00-a433-c002b48f49bb" + "8ff25a35-a7b6-4cd4-95c0-512797689289" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,16 +240,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "a22836e0-3bfd-4c26-8d89-15e6267e3a6b" + "8ff25a35-a7b6-4cd4-95c0-512797689289" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001402Z:a22836e0-3bfd-4c26-8d89-15e6267e3a6b" + "WESTUS:20220401T190053Z:8ff25a35-a7b6-4cd4-95c0-512797689289" ], "Date": [ - "Tue, 13 Jul 2021 00:14:02 GMT" + "Fri, 01 Apr 2022 19:00:53 GMT" ], "Content-Length": [ - "506" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,26 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps1383\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps4934\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--60ecdacaa2ca601290f0cb94}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5839\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7270\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--62474be5217d200d902d7e1b}}\"\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=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps1383\",\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/ps5839\",\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": [ - "ec4c909c-2b04-4764-87dc-923838f09dd0" + "271a130b-4059-4446-beb2-75be957bcf8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,7 +294,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAJA=\"" + "\"AAAAAAAADFw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "x-ms-request-id": [ - "7ea44bae-0f9a-4b49-8d20-f7043aa8a868" + "025fa49a-a1f7-4112-b5c7-c9647959a616" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,16 +312,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "b3df10dd-1a6c-46c4-b256-e1bd6b79a708" + "025fa49a-a1f7-4112-b5c7-c9647959a616" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001403Z:b3df10dd-1a6c-46c4-b256-e1bd6b79a708" + "WESTUS:20220401T190054Z:025fa49a-a1f7-4112-b5c7-c9647959a616" ], "Date": [ - "Tue, 13 Jul 2021 00:14:02 GMT" + "Fri, 01 Apr 2022 19:00:53 GMT" ], "Content-Length": [ - "1417" + "1437" ], "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/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/ps1383\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\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=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps1383\",\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/ps5839\",\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": [ - "d04ddae9-78dd-4255-9069-2785f27fe00a" + "65ec8f62-58b6-42a1-8114-aadc644f0617" ], "If-Match": [ "*" @@ -349,10 +349,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,7 +369,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAJQ=\"" + "\"AAAAAAAADGA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +378,7 @@ "nosniff" ], "x-ms-request-id": [ - "6e536ca6-408b-4e57-97f8-e9946f795f76" + "6eef1021-6565-4473-a01b-5ca821407423" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -387,16 +387,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "a0169adf-3da3-4c46-a544-3ef8b41d0eb7" + "6eef1021-6565-4473-a01b-5ca821407423" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001403Z:a0169adf-3da3-4c46-a544-3ef8b41d0eb7" + "WESTUS:20220401T190054Z:6eef1021-6565-4473-a01b-5ca821407423" ], "Date": [ - "Tue, 13 Jul 2021 00:14:02 GMT" + "Fri, 01 Apr 2022 19:00:53 GMT" ], "Content-Length": [ - "1076" + "1096" ], "Content-Type": [ "application/json; charset=utf-8" @@ -405,26 +405,26 @@ "-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/ps1383\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bee7c164-613f-44fc-846a-5821ce85519b" + "22a2607e-65a8-467b-b98e-e393067872ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -435,7 +435,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAJQ=\"" + "\"AAAAAAAADGA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,7 +444,7 @@ "nosniff" ], "x-ms-request-id": [ - "d63d63fd-ef0e-4e64-bd37-ce519993ddc5" + "f122425f-f372-45b3-b19b-36fdbf1ebc22" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -453,16 +453,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "650bc1da-78cf-40f6-acb3-62b719db7a43" + "f122425f-f372-45b3-b19b-36fdbf1ebc22" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001403Z:650bc1da-78cf-40f6-acb3-62b719db7a43" + "WESTUS:20220401T190054Z:f122425f-f372-45b3-b19b-36fdbf1ebc22" ], "Date": [ - "Tue, 13 Jul 2021 00:14:02 GMT" + "Fri, 01 Apr 2022 19:00:53 GMT" ], "Content-Length": [ - "1076" + "1096" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,26 +471,26 @@ "-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/ps1383\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59347589-43b2-4cfd-9abb-4120f134ed4f" + "e9c1def1-5b95-476f-b171-b94a4303f6e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -501,7 +501,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAJQ=\"" + "\"AAAAAAAADGA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,7 +510,7 @@ "nosniff" ], "x-ms-request-id": [ - "67770aa8-3277-44c3-96bc-e15e217c7ffc" + "3cefedc8-30c4-4fbe-9ad3-998e3201008d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -519,16 +519,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "082d32d3-ed29-4ee4-b146-593c75536437" + "3cefedc8-30c4-4fbe-9ad3-998e3201008d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001403Z:082d32d3-ed29-4ee4-b146-593c75536437" + "WESTUS:20220401T190054Z:3cefedc8-30c4-4fbe-9ad3-998e3201008d" ], "Date": [ - "Tue, 13 Jul 2021 00:14:03 GMT" + "Fri, 01 Apr 2022 19:00:53 GMT" ], "Content-Length": [ - "1076" + "1096" ], "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/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/ps1383\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f82cf0c-f328-4a41-9aae-580861612820" + "943082e1-260c-4bce-a9c0-75a2e4122b84" ], "If-Match": [ "*" @@ -556,10 +556,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -576,7 +576,7 @@ "nosniff" ], "x-ms-request-id": [ - "c6be2e13-da34-43c7-9f15-a334be5f61bc" + "ad107a83-5247-41ff-827c-6693ce00a6a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -585,13 +585,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "e7db7fea-a526-46f4-9af0-150c41c8ef25" + "ad107a83-5247-41ff-827c-6693ce00a6a9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001404Z:e7db7fea-a526-46f4-9af0-150c41c8ef25" + "WESTUS:20220401T190055Z:ad107a83-5247-41ff-827c-6693ce00a6a9" ], "Date": [ - "Tue, 13 Jul 2021 00:14:03 GMT" + "Fri, 01 Apr 2022 19:00:54 GMT" ], "Expires": [ "-1" @@ -604,13 +604,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2938de6d-8cef-43ba-a421-9af6b89603d4" + "7bad9f23-6897-4758-93e9-c27d2870becb" ], "If-Match": [ "*" @@ -619,10 +619,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -639,7 +639,7 @@ "nosniff" ], "x-ms-request-id": [ - "44d3e48e-bc82-4a6d-9f6b-c7728a309ed8" + "4b1d6a2b-d960-4009-9c98-00662d3cef24" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -648,13 +648,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "c9aa66ec-fb30-4bd6-8958-4542e8308775" + "4b1d6a2b-d960-4009-9c98-00662d3cef24" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001404Z:c9aa66ec-fb30-4bd6-8958-4542e8308775" + "WESTUS:20220401T190055Z:4b1d6a2b-d960-4009-9c98-00662d3cef24" ], "Date": [ - "Tue, 13 Jul 2021 00:14:03 GMT" + "Fri, 01 Apr 2022 19:00:54 GMT" ], "Expires": [ "-1" @@ -664,13 +664,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMzgzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTgzOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fce1a49-1a3b-4563-8614-81d8690b2665" + "abde6410-26c3-4f6d-a1fb-79b9eb17512a" ], "If-Match": [ "*" @@ -679,10 +679,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -699,7 +699,7 @@ "nosniff" ], "x-ms-request-id": [ - "dfff3a45-951a-460e-a4de-0ac9d8360a45" + "73c44386-2107-4fc6-8526-5eadda9abed4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -708,13 +708,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "b473bcdd-60f2-46b5-b2df-9709817c0970" + "73c44386-2107-4fc6-8526-5eadda9abed4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001404Z:b473bcdd-60f2-46b5-b2df-9709817c0970" + "WESTUS:20220401T190055Z:73c44386-2107-4fc6-8526-5eadda9abed4" ], "Date": [ - "Tue, 13 Jul 2021 00:14:03 GMT" + "Fri, 01 Apr 2022 19:00:55 GMT" ], "Expires": [ "-1" @@ -727,22 +727,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6fd82c8-ad6a-482e-a79e-194586cb6009" + "45a5b054-955e-40ec-91b4-a4c05ee0085c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -759,7 +759,7 @@ "nosniff" ], "x-ms-request-id": [ - "f942e345-0b23-4bab-8a77-a359b7cb73df" + "eebe5d11-f16a-4323-beb1-63597fd2d160" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -768,13 +768,13 @@ "11994" ], "x-ms-correlation-request-id": [ - "c4f28ca0-555e-42ea-a636-78a242693d89" + "eebe5d11-f16a-4323-beb1-63597fd2d160" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001404Z:c4f28ca0-555e-42ea-a636-78a242693d89" + "WESTUS:20220401T190055Z:eebe5d11-f16a-4323-beb1-63597fd2d160" ], "Date": [ - "Tue, 13 Jul 2021 00:14:04 GMT" + "Fri, 01 Apr 2022 19:00:55 GMT" ], "Content-Length": [ "34" @@ -792,11 +792,11 @@ ], "Names": { "": [ - "ps1383", - "ps4934" + "ps5839", + "ps7270" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 c9364f0b8553..1a68c029ecbf 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "75457790-82dd-4380-9e1b-928b3eed3b93" + "cbd5a650-adf0-4d85-a69d-e09a8e83605c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01&asyncId=60ecd8f0a2ca601290f0cb23&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?api-version=2021-08-01&asyncId=62474a74217d200d902d7da5&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "9c225783-d927-4b10-9ebc-91890385c540" + "d634c4f1-0d0c-47e3-834a-546a6d532ad5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,13 +51,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "9256ee8f-7abe-4bb7-99d5-0b4068e9de21" + "d634c4f1-0d0c-47e3-834a-546a6d532ad5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000608Z:9256ee8f-7abe-4bb7-99d5-0b4068e9de21" + "WESTUS:20220401T185444Z:d634c4f1-0d0c-47e3-834a-546a6d532ad5" ], "Date": [ - "Tue, 13 Jul 2021 00:06:08 GMT" + "Fri, 01 Apr 2022 18:54:43 GMT" ], "Expires": [ "-1" @@ -70,19 +70,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01&asyncId=60ecd8f0a2ca601290f0cb23&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDhmMGEyY2E2MDEyOTBmMGNiMjMmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?api-version=2021-08-01&asyncId=62474a74217d200d902d7da5&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhNzQyMTdkMjAwZDkwMmQ3ZGE1JmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75457790-82dd-4380-9e1b-928b3eed3b93" + "cbd5a650-adf0-4d85-a69d-e09a8e83605c" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/s4=\"" + "\"AAAAAAAACn0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,7 +102,7 @@ "nosniff" ], "x-ms-request-id": [ - "60f7a91c-6c1f-491d-b9e7-995f2b39c8f6" + "583897cc-1fb2-4698-b998-10aef9051222" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,16 +111,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "b2b464af-5d92-43f3-9ddd-235e898ce281" + "583897cc-1fb2-4698-b998-10aef9051222" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000639Z:b2b464af-5d92-43f3-9ddd-235e898ce281" + "WESTUS:20220401T185514Z:583897cc-1fb2-4698-b998-10aef9051222" ], "Date": [ - "Tue, 13 Jul 2021 00:06:38 GMT" + "Fri, 01 Apr 2022 18:55:14 GMT" ], "Content-Length": [ - "1049" + "1336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7518\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3611\",\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 \"termsOfServiceUrl\": \"http://swagger.io/terms/\",\r\n \"contact\": {\r\n \"name\": null,\r\n \"url\": null,\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75457790-82dd-4380-9e1b-928b3eed3b93" + "cbd5a650-adf0-4d85-a69d-e09a8e83605c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/s4=\"" + "\"AAAAAAAACn0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "bddc6f44-5a1d-4219-9748-85e9cb49ca0e" + "a56c153a-dff9-4e19-a6e5-a862dbc8b512" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "ea673cc4-3daa-4764-83f8-bdaa8e124b27" + "a56c153a-dff9-4e19-a6e5-a862dbc8b512" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000639Z:ea673cc4-3daa-4764-83f8-bdaa8e124b27" + "WESTUS:20220401T185514Z:a56c153a-dff9-4e19-a6e5-a862dbc8b512" ], "Date": [ - "Tue, 13 Jul 2021 00:06:38 GMT" + "Fri, 01 Apr 2022 18:55:14 GMT" ], "Content-Length": [ - "1049" + "1336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7518\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3611\",\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 \"termsOfServiceUrl\": \"http://swagger.io/terms/\",\r\n \"contact\": {\r\n \"name\": null,\r\n \"url\": null,\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518/schemas?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611/schemas?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cf556dd-a1a0-468e-8ef4-cfbfc5ed6483" + "0fd7e58f-b4c4-4365-9aca-92c7b2b22a3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "nosniff" ], "x-ms-request-id": [ - "c93bc123-2f8f-4ed2-b9cc-4f79c5218a87" + "4ba95daa-1781-4a8a-aa49-01629e7fdb24" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,16 +240,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "68434211-b31d-4e75-a5fa-0ac1a7ad1ee4" + "4ba95daa-1781-4a8a-aa49-01629e7fdb24" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000639Z:68434211-b31d-4e75-a5fa-0ac1a7ad1ee4" + "WESTUS:20220401T185515Z:4ba95daa-1781-4a8a-aa49-01629e7fdb24" ], "Date": [ - "Tue, 13 Jul 2021 00:06:39 GMT" + "Fri, 01 Apr 2022 18:55:15 GMT" ], "Content-Length": [ - "10858" + "10877" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,17 +258,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/ps7518/schemas/60ecd8f0a2ca601290f0cb22\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"60ecd8f0a2ca601290f0cb22\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611/schemas/62474a73217d200d902d7da4\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"62474a73217d200d902d7da4\",\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 \"PetFindByStatusGetRequest\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"default\": \"available\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByStatusGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Pet\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByStatusGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Pet\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByTagsGetRequest\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByTagsGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Pet\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByTagsGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Pet\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-GetRequest\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-PostRequest\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-DeleteRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-DeleteRequest-1\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-UploadImagePostRequest\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-UploadImagePostRequest-1\": {\r\n \"type\": \"string\",\r\n \"format\": \"binary\",\r\n \"x-apim-inline\": true\r\n },\r\n \"StoreInventoryGet200ApplicationJsonResponse\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"StoreOrder-orderId-GetRequest\": {\r\n \"maximum\": 10.0,\r\n \"minimum\": 1.0,\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"StoreOrder-orderId-DeleteRequest\": {\r\n \"minimum\": 1.0,\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGetRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGetRequest-1\": {\r\n \"type\": \"string\",\r\n \"format\": \"password\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGet200ApplicationXmlResponse\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGet200X-Rate-LimitResponseHeader\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGet200X-Expires-AfterResponseHeader\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\",\r\n \"x-apim-inline\": true\r\n },\r\n \"User-username-GetRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"User-username-PutRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"User-username-DeleteRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserArrayRequest-json\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/User\"\r\n },\r\n \"x-apim-inline\": true\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/ps7518%3Brev%3D1?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611%3Brev%3D1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMSUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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}", + "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": [ - "7f4e11ef-c7ea-4538-bbf5-e5d3522171b4" + "74d2db26-24c2-4e01-b0b4-741674a56db4" ], "If-Match": [ "*" @@ -277,10 +277,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,7 +297,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/yw=\"" + "\"AAAAAAAACto=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,7 +306,7 @@ "nosniff" ], "x-ms-request-id": [ - "f3ad1848-b723-4d8c-8971-81dbd0ef8a68" + "274296ab-187c-465d-ad59-b723f0b7db10" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -315,16 +315,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "e626a7af-f304-479c-b70d-800c791ce62b" + "274296ab-187c-465d-ad59-b723f0b7db10" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000643Z:e626a7af-f304-479c-b70d-800c791ce62b" + "WESTUS:20220401T185516Z:274296ab-187c-465d-ad59-b723f0b7db10" ], "Date": [ - "Tue, 13 Jul 2021 00:06:42 GMT" + "Fri, 01 Apr 2022 18:55:16 GMT" ], "Content-Length": [ - "794" + "804" ], "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/apis/ps7518\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7518\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3611\",\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/ps7518?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ce38418-09d8-4aea-83fe-dfdf0a89426a" + "c02faf42-cf40-4c1e-948f-b582458abece" ], "If-Match": [ "*" @@ -352,10 +352,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -372,7 +372,7 @@ "nosniff" ], "x-ms-request-id": [ - "bc9b2567-e82e-48ad-90e6-da1f638a4240" + "c941f52c-c6d6-4be2-b751-ca8d446d8c23" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -381,13 +381,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "8520da2f-bc02-414f-9b89-83a636ae1cf8" + "c941f52c-c6d6-4be2-b751-ca8d446d8c23" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000644Z:8520da2f-bc02-414f-9b89-83a636ae1cf8" + "WESTUS:20220401T185516Z:c941f52c-c6d6-4be2-b751-ca8d446d8c23" ], "Date": [ - "Tue, 13 Jul 2021 00:06:43 GMT" + "Fri, 01 Apr 2022 18:55:16 GMT" ], "Expires": [ "-1" @@ -402,10 +402,10 @@ ], "Names": { "": [ - "ps7518" + "ps3611" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 3e03b46073d2..6c6a27bfd2c6 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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": [ - "438a71dc-970c-4f8e-9647-0bfe39da2a63" + "c1bd5339-38d5-4e5a-a3b5-d20d82f26d89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?api-version=2020-12-01&asyncId=60ecda10a2ca601290f0cb53&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?api-version=2021-08-01&asyncId=62474b27217d200d902d7dd5&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "53d28471-bd28-4b1a-9c35-839f94f20e55" + "fad5155f-9ae7-441c-bfc4-204ab0d47f8c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,13 +51,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "e5564cb1-be33-4e28-81d5-438c57c7db4e" + "fad5155f-9ae7-441c-bfc4-204ab0d47f8c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001056Z:e5564cb1-be33-4e28-81d5-438c57c7db4e" + "WESTCENTRALUS:20220401T185743Z:fad5155f-9ae7-441c-bfc4-204ab0d47f8c" ], "Date": [ - "Tue, 13 Jul 2021 00:10:56 GMT" + "Fri, 01 Apr 2022 18:57:43 GMT" ], "Expires": [ "-1" @@ -70,19 +70,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?api-version=2020-12-01&asyncId=60ecda10a2ca601290f0cb53&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGExMGEyY2E2MDEyOTBmMGNiNTMmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?api-version=2021-08-01&asyncId=62474b27217d200d902d7dd5&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDEmYXN5bmNJZD02MjQ3NGIyNzIxN2QyMDBkOTAyZDdkZDUmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "438a71dc-970c-4f8e-9647-0bfe39da2a63" + "c1bd5339-38d5-4e5a-a3b5-d20d82f26d89" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/54=\"" + "\"AAAAAAAAC1s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,7 +102,7 @@ "nosniff" ], "x-ms-request-id": [ - "39f74bb9-8a10-4c19-8d9a-e6f737ae1e14" + "2298634a-ba51-44e8-b3fd-5b4935a9c1ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,16 +111,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "446a7ab0-ca4b-41c4-8bf8-5b52e6ebf5c4" + "2298634a-ba51-44e8-b3fd-5b4935a9c1ee" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001126Z:446a7ab0-ca4b-41c4-8bf8-5b52e6ebf5c4" + "WESTCENTRALUS:20220401T185813Z:2298634a-ba51-44e8-b3fd-5b4935a9c1ee" ], "Date": [ - "Tue, 13 Jul 2021 00:11:25 GMT" + "Fri, 01 Apr 2022 18:58:13 GMT" ], "Content-Length": [ - "1381" + "1534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8084\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps120\",\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 \"contact\": {\r\n \"name\": \"Open Data Portal\",\r\n \"url\": \"https://developer.uspto.gov/\",\r\n \"email\": \"developer@uspto.gov\"\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/ps8084?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "438a71dc-970c-4f8e-9647-0bfe39da2a63" + "c1bd5339-38d5-4e5a-a3b5-d20d82f26d89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/54=\"" + "\"AAAAAAAAC1s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "74c290b3-3b26-4096-8a24-f2106bcd8e01" + "826f759d-ac2a-4aea-9892-3042303b86d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "8e31a1d1-4386-4dde-8c82-7e3d8fafaf6a" + "826f759d-ac2a-4aea-9892-3042303b86d1" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001126Z:8e31a1d1-4386-4dde-8c82-7e3d8fafaf6a" + "WESTCENTRALUS:20220401T185813Z:826f759d-ac2a-4aea-9892-3042303b86d1" ], "Date": [ - "Tue, 13 Jul 2021 00:11:26 GMT" + "Fri, 01 Apr 2022 18:58:13 GMT" ], "Content-Length": [ - "1381" + "1534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8084\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps120\",\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 \"contact\": {\r\n \"name\": \"Open Data Portal\",\r\n \"url\": \"https://developer.uspto.gov/\",\r\n \"email\": \"developer@uspto.gov\"\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/ps2363?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "bc954ea8-a052-4b2b-a846-3854fd317bb7" + "456a31bb-e4ac-4e4d-92f8-7fbc7c089a09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,7 +231,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?api-version=2020-12-01&asyncId=60ecda2ea2ca601290f0cb58&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?api-version=2021-08-01&asyncId=62474b46217d200d902d7dda&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "x-ms-request-id": [ - "857f82ad-8d81-474c-8677-3f535a08673d" + "d19dbcaa-49f0-4d42-8fdc-be8622d876e7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -249,13 +249,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "8c7c950f-9ee5-427a-8ab6-93ad2c57e22f" + "d19dbcaa-49f0-4d42-8fdc-be8622d876e7" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001127Z:8c7c950f-9ee5-427a-8ab6-93ad2c57e22f" + "WESTCENTRALUS:20220401T185814Z:d19dbcaa-49f0-4d42-8fdc-be8622d876e7" ], "Date": [ - "Tue, 13 Jul 2021 00:11:26 GMT" + "Fri, 01 Apr 2022 18:58:13 GMT" ], "Expires": [ "-1" @@ -268,19 +268,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?api-version=2020-12-01&asyncId=60ecda2ea2ca601290f0cb58&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGEyZWEyY2E2MDEyOTBmMGNiNTgmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?api-version=2021-08-01&asyncId=62474b46217d200d902d7dda&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRiNDYyMTdkMjAwZDkwMmQ3ZGRhJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc954ea8-a052-4b2b-a846-3854fd317bb7" + "456a31bb-e4ac-4e4d-92f8-7fbc7c089a09" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/7U=\"" + "\"AAAAAAAAC3Q=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,7 +300,7 @@ "nosniff" ], "x-ms-request-id": [ - "9dec35b2-1dce-4894-8187-6d0ba8a41b6c" + "723ad577-0ab2-496f-80ea-0961c32f2ce6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "6d894b01-4d9d-441a-aed4-9c561b0adcaa" + "723ad577-0ab2-496f-80ea-0961c32f2ce6" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001157Z:6d894b01-4d9d-441a-aed4-9c561b0adcaa" + "WESTCENTRALUS:20220401T185844Z:723ad577-0ab2-496f-80ea-0961c32f2ce6" ], "Date": [ - "Tue, 13 Jul 2021 00:11:56 GMT" + "Fri, 01 Apr 2022 18:58:43 GMT" ], "Content-Length": [ - "759" + "836" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,26 +327,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2363\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4545\",\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 \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": null\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/ps2363?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc954ea8-a052-4b2b-a846-3854fd317bb7" + "456a31bb-e4ac-4e4d-92f8-7fbc7c089a09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -357,7 +357,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/7U=\"" + "\"AAAAAAAAC3Q=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,7 +366,7 @@ "nosniff" ], "x-ms-request-id": [ - "af14eb9a-5c04-47dd-9845-565c3c1c4acd" + "a6e5a520-9b15-4386-8d9a-5cc3a2d9a3d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,16 +375,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "8d2d62a3-544c-49fa-a720-b44208ef089a" + "a6e5a520-9b15-4386-8d9a-5cc3a2d9a3d5" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001157Z:8d2d62a3-544c-49fa-a720-b44208ef089a" + "WESTCENTRALUS:20220401T185844Z:a6e5a520-9b15-4386-8d9a-5cc3a2d9a3d5" ], "Date": [ - "Tue, 13 Jul 2021 00:11:56 GMT" + "Fri, 01 Apr 2022 18:58:43 GMT" ], "Content-Length": [ - "759" + "836" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,26 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2363\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4545\",\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 \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": null\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/ps8084/schemas?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120/schemas?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwL3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd5ed6f9-8e3e-4c00-bf83-356dd166737f" + "d2a6c13e-6a99-4877-a6ae-427067daacd6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -429,7 +429,7 @@ "nosniff" ], "x-ms-request-id": [ - "5e48c50e-e797-45d6-a0ce-741bb13cd7f2" + "eb90cadd-cce8-4b40-b9e2-94a95258a627" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,16 +438,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "25ca8fc4-eeeb-450c-87e3-275476898847" + "eb90cadd-cce8-4b40-b9e2-94a95258a627" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001157Z:25ca8fc4-eeeb-450c-87e3-275476898847" + "WESTCENTRALUS:20220401T185844Z:eb90cadd-cce8-4b40-b9e2-94a95258a627" ], "Date": [ - "Tue, 13 Jul 2021 00:11:56 GMT" + "Fri, 01 Apr 2022 18:58:43 GMT" ], "Content-Length": [ - "2509" + "3304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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/ps8084/schemas/60ecda10a2ca601290f0cb52\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"60ecda10a2ca601290f0cb52\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120/schemas/62474b27217d200d902d7dd4\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"62474b27217d200d902d7dd4\",\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-FieldsGetRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-FieldsGetRequest-1\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-FieldsGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-FieldsGet404ApplicationJsonResponse\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-RecordsPostRequest\": {\r\n \"type\": \"string\",\r\n \"default\": \"v1\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-RecordsPostRequest-1\": {\r\n \"type\": \"string\",\r\n \"default\": \"oa_citations\",\r\n \"x-apim-inline\": true\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 \"x-apim-inline\": true\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/ps2363%3Brev%3D1?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545%3Brev%3D1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NSUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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}", + "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": [ - "ec5fc610-7b8d-4035-8bf0-b4c5b3afcdd4" + "25fbf368-dd18-49eb-acd0-2463bb9c6c40" ], "If-Match": [ "*" @@ -475,10 +475,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,7 +495,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/8o=\"" + "\"AAAAAAAAC4s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,7 +504,7 @@ "nosniff" ], "x-ms-request-id": [ - "e74fcebc-4da5-4432-9dee-77928b30d877" + "221fd764-a6cf-4dd2-b27f-64901396ba69" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -513,16 +513,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "4138c4e9-5b79-4f8b-bac5-c0260ef7332f" + "221fd764-a6cf-4dd2-b27f-64901396ba69" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001158Z:4138c4e9-5b79-4f8b-bac5-c0260ef7332f" + "WESTCENTRALUS:20220401T185845Z:221fd764-a6cf-4dd2-b27f-64901396ba69" ], "Date": [ - "Tue, 13 Jul 2021 00:11:57 GMT" + "Fri, 01 Apr 2022 18:58:44 GMT" ], "Content-Length": [ - "793" + "803" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,17 +531,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2363\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4545\",\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/ps8084?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f99a0bc4-edf3-4cf0-99b9-230d2422684a" + "1a741053-9050-4743-8784-df2e70ce3f67" ], "If-Match": [ "*" @@ -550,10 +550,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -570,7 +570,7 @@ "nosniff" ], "x-ms-request-id": [ - "0c1ace76-001d-4b42-b209-bcf99354b491" + "1068d688-fa44-4aaf-a2eb-8f90864deba4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -579,13 +579,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "b2bd4445-64e2-4c73-a828-b8f5d483f5a9" + "1068d688-fa44-4aaf-a2eb-8f90864deba4" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001158Z:b2bd4445-64e2-4c73-a828-b8f5d483f5a9" + "WESTCENTRALUS:20220401T185845Z:1068d688-fa44-4aaf-a2eb-8f90864deba4" ], "Date": [ - "Tue, 13 Jul 2021 00:11:57 GMT" + "Fri, 01 Apr 2022 18:58:44 GMT" ], "Expires": [ "-1" @@ -598,13 +598,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4994302-251d-4d45-b90c-980ea1e85f50" + "446d827f-5ff3-4af7-a2fd-6cf64e60cb0c" ], "If-Match": [ "*" @@ -613,10 +613,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -633,7 +633,7 @@ "nosniff" ], "x-ms-request-id": [ - "57e850b2-babe-40d2-bf60-231f96116325" + "5bf025aa-3f96-45ca-8a49-5adb149c7741" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -642,13 +642,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "cd520883-0cd9-4893-a994-4c7a4ccc57e7" + "5bf025aa-3f96-45ca-8a49-5adb149c7741" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001158Z:cd520883-0cd9-4893-a994-4c7a4ccc57e7" + "WESTCENTRALUS:20220401T185845Z:5bf025aa-3f96-45ca-8a49-5adb149c7741" ], "Date": [ - "Tue, 13 Jul 2021 00:11:57 GMT" + "Fri, 01 Apr 2022 18:58:44 GMT" ], "Expires": [ "-1" @@ -663,11 +663,11 @@ ], "Names": { "": [ - "ps8084", - "ps2363" + "ps120", + "ps4545" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 2ef6acea5586..3e3ef229ff22 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTkzOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "bc76e4b2-57f8-48a6-9129-9a06ea668920" + "682d763f-3098-40e1-9be4-3865db03bd38" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01&asyncId=60f5ce2fa2ca600208eaaf66&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?api-version=2021-08-01&asyncId=624749d4217d200d902d7d8d&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "154f0d18-67d0-4c40-af85-66f593a6b54a" + "f3b8d163-f4c9-43a1-ac09-6d07d8575988" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,13 +51,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "3d2966bd-ac4e-4384-8673-ced253e2613b" + "f3b8d163-f4c9-43a1-ac09-6d07d8575988" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210719T191039Z:3d2966bd-ac4e-4384-8673-ced253e2613b" + "WESTCENTRALUS:20220401T185206Z:f3b8d163-f4c9-43a1-ac09-6d07d8575988" ], "Date": [ - "Mon, 19 Jul 2021 19:10:38 GMT" + "Fri, 01 Apr 2022 18:52:06 GMT" ], "Expires": [ "-1" @@ -70,19 +70,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01&asyncId=60f5ce2fa2ca600208eaaf66&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/YXBpLXZlcnNpb249MjAyMC0xMi0wMSZhc3luY0lkPTYwZjVjZTJmYTJjYTYwMDIwOGVhYWY2NiZhc3luY0NvZGU9MjAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?api-version=2021-08-01&asyncId=624749d4217d200d902d7d8d&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTkzOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzQ5ZDQyMTdkMjAwZDkwMmQ3ZDhkJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc76e4b2-57f8-48a6-9129-9a06ea668920" + "682d763f-3098-40e1-9be4-3865db03bd38" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABBBE=\"" + "\"AAAAAAAACXM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,7 +102,7 @@ "nosniff" ], "x-ms-request-id": [ - "85de798a-45ef-416c-b7ed-f785be713448" + "0e76db0e-8b6e-4c17-92b2-f61c10942231" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,16 +111,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "698af5c3-d95a-4a12-b6e4-b907138318cd" + "0e76db0e-8b6e-4c17-92b2-f61c10942231" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210719T191109Z:698af5c3-d95a-4a12-b6e4-b907138318cd" + "WESTCENTRALUS:20220401T185236Z:0e76db0e-8b6e-4c17-92b2-f61c10942231" ], "Date": [ - "Mon, 19 Jul 2021 19:11:09 GMT" + "Fri, 01 Apr 2022 18:52:36 GMT" ], "Content-Length": [ - "882" + "1211" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps373\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1938\",\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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTkzOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc76e4b2-57f8-48a6-9129-9a06ea668920" + "682d763f-3098-40e1-9be4-3865db03bd38" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABBBE=\"" + "\"AAAAAAAACXM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "73913596-489b-40cf-8256-623685bd768e" + "9d799d30-01f4-42d6-a998-8c8a50cf19be" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "6610ae6e-8340-46b7-a817-a026c01c04c6" + "9d799d30-01f4-42d6-a998-8c8a50cf19be" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210719T191110Z:6610ae6e-8340-46b7-a817-a026c01c04c6" + "WESTCENTRALUS:20220401T185237Z:9d799d30-01f4-42d6-a998-8c8a50cf19be" ], "Date": [ - "Mon, 19 Jul 2021 19:11:09 GMT" + "Fri, 01 Apr 2022 18:52:36 GMT" ], "Content-Length": [ - "882" + "1211" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps373\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1938\",\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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "171f2573-d818-4cbc-9008-9ae33aadaf81" + "7fda8631-3d50-46a7-b8d8-e940d2d4b6ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,7 +231,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01&asyncId=60f5ce4ea2ca600208eaaf6b&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?api-version=2021-08-01&asyncId=624749f6217d200d902d7d92&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "x-ms-request-id": [ - "9a00f57b-98b1-496d-85e0-2fcec367af2a" + "e3b92bf8-6183-4a0e-a4fd-b861cbdf7ddd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -249,13 +249,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "e4b208b1-24e3-4b2e-8e6c-323d981b93c9" + "e3b92bf8-6183-4a0e-a4fd-b861cbdf7ddd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210719T191110Z:e4b208b1-24e3-4b2e-8e6c-323d981b93c9" + "WESTCENTRALUS:20220401T185238Z:e3b92bf8-6183-4a0e-a4fd-b861cbdf7ddd" ], "Date": [ - "Mon, 19 Jul 2021 19:11:10 GMT" + "Fri, 01 Apr 2022 18:52:37 GMT" ], "Expires": [ "-1" @@ -268,19 +268,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01&asyncId=60f5ce4ea2ca600208eaaf6b&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGY1Y2U0ZWEyY2E2MDAyMDhlYWFmNmImYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?api-version=2021-08-01&asyncId=624749f6217d200d902d7d92&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzQ5ZjYyMTdkMjAwZDkwMmQ3ZDkyJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "171f2573-d818-4cbc-9008-9ae33aadaf81" + "7fda8631-3d50-46a7-b8d8-e940d2d4b6ea" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABBDo=\"" + "\"AAAAAAAACZw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,7 +300,7 @@ "nosniff" ], "x-ms-request-id": [ - "33df7470-c085-4498-9eb2-869f38a873b4" + "48cd4db4-b3c4-459b-817c-ec3ac269de3f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "2f408805-4def-4aa9-ac70-20018bf5581e" + "48cd4db4-b3c4-459b-817c-ec3ac269de3f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210719T191141Z:2f408805-4def-4aa9-ac70-20018bf5581e" + "WESTCENTRALUS:20220401T185308Z:48cd4db4-b3c4-459b-817c-ec3ac269de3f" ], "Date": [ - "Mon, 19 Jul 2021 19:11:40 GMT" + "Fri, 01 Apr 2022 18:53:07 GMT" ], "Content-Length": [ - "1046" + "1333" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,26 +327,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1013\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5277\",\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 \"termsOfServiceUrl\": \"http://swagger.io/terms/\",\r\n \"contact\": {\r\n \"name\": null,\r\n \"url\": null,\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "171f2573-d818-4cbc-9008-9ae33aadaf81" + "7fda8631-3d50-46a7-b8d8-e940d2d4b6ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -357,7 +357,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABBDo=\"" + "\"AAAAAAAACZw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,7 +366,7 @@ "nosniff" ], "x-ms-request-id": [ - "05968171-27fe-442e-9fba-5357cd0967e1" + "72d5ead6-870c-44c1-8c6f-424e04fcb603" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,16 +375,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "e7f3ac26-9163-4a5e-ba67-6e18052fb945" + "72d5ead6-870c-44c1-8c6f-424e04fcb603" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210719T191141Z:e7f3ac26-9163-4a5e-ba67-6e18052fb945" + "WESTCENTRALUS:20220401T185308Z:72d5ead6-870c-44c1-8c6f-424e04fcb603" ], "Date": [ - "Mon, 19 Jul 2021 19:11:40 GMT" + "Fri, 01 Apr 2022 18:53:07 GMT" ], "Content-Length": [ - "1046" + "1333" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,17 +393,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1013\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5277\",\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 \"termsOfServiceUrl\": \"http://swagger.io/terms/\",\r\n \"contact\": {\r\n \"name\": null,\r\n \"url\": null,\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013%3Brev%3D1?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277%3Brev%3D1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3NyUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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}", + "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": [ - "3cb27dd1-1af0-471b-bb82-542d97ec15d6" + "539637c0-228c-4b7c-9bde-dc45889aa8f8" ], "If-Match": [ "*" @@ -412,10 +412,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,7 +432,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABBJY=\"" + "\"AAAAAAAACf4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,7 +441,7 @@ "nosniff" ], "x-ms-request-id": [ - "00cdde49-696b-4680-a5ca-b97d1d4ef248" + "988232e4-3c41-47df-bf4c-b94007496919" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -450,16 +450,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "1aa0f2b8-b944-49de-88e6-0e89bba3027d" + "988232e4-3c41-47df-bf4c-b94007496919" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210719T191147Z:1aa0f2b8-b944-49de-88e6-0e89bba3027d" + "WESTCENTRALUS:20220401T185310Z:988232e4-3c41-47df-bf4c-b94007496919" ], "Date": [ - "Mon, 19 Jul 2021 19:11:47 GMT" + "Fri, 01 Apr 2022 18:53:10 GMT" ], "Content-Length": [ - "815" + "825" ], "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/ps1013\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1013\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5277\",\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/ps373?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTkzOD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe71b08d-ebf6-40b6-b726-fd1eef8db144" + "ce65c02c-fcd3-4229-8654-d55383237a91" ], "If-Match": [ "*" @@ -487,10 +487,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -507,7 +507,7 @@ "nosniff" ], "x-ms-request-id": [ - "67bbd295-893e-4b7d-9a50-ae28091bdaf7" + "99fb862f-1b06-4989-a88a-2236aeaba3ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -516,13 +516,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "446601af-dc3c-42b3-bf01-00f20db3a6cc" + "99fb862f-1b06-4989-a88a-2236aeaba3ae" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210719T191149Z:446601af-dc3c-42b3-bf01-00f20db3a6cc" + "WESTCENTRALUS:20220401T185314Z:99fb862f-1b06-4989-a88a-2236aeaba3ae" ], "Date": [ - "Mon, 19 Jul 2021 19:11:48 GMT" + "Fri, 01 Apr 2022 18:53:13 GMT" ], "Expires": [ "-1" @@ -535,13 +535,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3Nz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6684dff-2e5a-4cab-99e0-8355969cd915" + "9000c283-90fa-4589-b640-c5a5f75f0584" ], "If-Match": [ "*" @@ -550,10 +550,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -570,7 +570,7 @@ "nosniff" ], "x-ms-request-id": [ - "d8960ef4-16c1-4f9a-b454-11fbb85beebb" + "42a0bce9-394e-4704-8581-1657502595aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -579,13 +579,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "51aacc57-d2d8-4366-8705-6e4ee1fb7167" + "42a0bce9-394e-4704-8581-1657502595aa" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210719T191149Z:51aacc57-d2d8-4366-8705-6e4ee1fb7167" + "WESTCENTRALUS:20220401T185314Z:42a0bce9-394e-4704-8581-1657502595aa" ], "Date": [ - "Mon, 19 Jul 2021 19:11:49 GMT" + "Fri, 01 Apr 2022 18:53:14 GMT" ], "Expires": [ "-1" @@ -600,11 +600,11 @@ ], "Names": { "": [ - "ps373", - "ps1013" + "ps1938", + "ps5277" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 581b9fb001b6..9502472ecf98 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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 \"format\": \"wadl-xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "78fcbff7-4e3b-469a-8e73-6399a89e0109" + "a2ec8f06-2072-478e-8ff5-290f7e57a8c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?api-version=2020-12-01&asyncId=60ecdbd7a2ca601290f0cbce&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?api-version=2021-08-01&asyncId=62474cd6217d200d902d7e52&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "83588153-e97b-48a1-bff0-52f25639c766" + "2f2558e3-dde7-415b-8740-4bed158bf385" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,13 +51,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "ca5dd73b-0bfb-46e4-8a12-a9e2309f262d" + "2f2558e3-dde7-415b-8740-4bed158bf385" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001831Z:ca5dd73b-0bfb-46e4-8a12-a9e2309f262d" + "WESTCENTRALUS:20220401T190454Z:2f2558e3-dde7-415b-8740-4bed158bf385" ], "Date": [ - "Tue, 13 Jul 2021 00:18:31 GMT" + "Fri, 01 Apr 2022 19:04:54 GMT" ], "Expires": [ "-1" @@ -70,19 +70,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?api-version=2020-12-01&asyncId=60ecdbd7a2ca601290f0cbce&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGJkN2EyY2E2MDEyOTBmMGNiY2UmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?api-version=2021-08-01&asyncId=62474cd6217d200d902d7e52&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRjZDYyMTdkMjAwZDkwMmQ3ZTUyJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78fcbff7-4e3b-469a-8e73-6399a89e0109" + "a2ec8f06-2072-478e-8ff5-290f7e57a8c9" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAcA=\"" + "\"AAAAAAAADYM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,7 +102,7 @@ "nosniff" ], "x-ms-request-id": [ - "95c770c5-1a06-4843-b316-bbb645e54716" + "2639be8b-6850-4b33-bc01-01e4652fd1bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,16 +111,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "554acde3-6b39-4aab-b6c2-41c7b8e076ac" + "2639be8b-6850-4b33-bc01-01e4652fd1bd" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001901Z:554acde3-6b39-4aab-b6c2-41c7b8e076ac" + "WESTCENTRALUS:20220401T190525Z:2639be8b-6850-4b33-bc01-01e4652fd1bd" ], "Date": [ - "Tue, 13 Jul 2021 00:19:01 GMT" + "Fri, 01 Apr 2022 19:05:25 GMT" ], "Content-Length": [ - "792" + "802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5691\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3926\",\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/ps5691?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78fcbff7-4e3b-469a-8e73-6399a89e0109" + "a2ec8f06-2072-478e-8ff5-290f7e57a8c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAcA=\"" + "\"AAAAAAAADYM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "311072f3-653e-4b89-adbd-3053db14d8fe" + "0923a190-2f98-4c01-a002-d48b635e0e1f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "c4c76aaa-91cb-4445-aefa-c768d3f802b6" + "0923a190-2f98-4c01-a002-d48b635e0e1f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001901Z:c4c76aaa-91cb-4445-aefa-c768d3f802b6" + "WESTCENTRALUS:20220401T190525Z:0923a190-2f98-4c01-a002-d48b635e0e1f" ], "Date": [ - "Tue, 13 Jul 2021 00:19:01 GMT" + "Fri, 01 Apr 2022 19:05:25 GMT" ], "Content-Length": [ - "792" + "802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5691\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3926\",\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/ps5691/schemas?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxL3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926/schemas?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNi9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91d8d7d-5a4e-47bc-90eb-60d4c994d107" + "4e2d3e65-4a02-425f-9d71-7cb5dbec7566" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "nosniff" ], "x-ms-request-id": [ - "02fbe1eb-a75d-4aff-a578-13d553165306" + "bb720790-63f5-4d02-87dc-178eabe60c6c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,16 +240,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "dad38283-528c-4d76-a456-36c53b3caa8d" + "bb720790-63f5-4d02-87dc-178eabe60c6c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001901Z:dad38283-528c-4d76-a456-36c53b3caa8d" + "WESTCENTRALUS:20220401T190525Z:bb720790-63f5-4d02-87dc-178eabe60c6c" ], "Date": [ - "Tue, 13 Jul 2021 00:19:01 GMT" + "Fri, 01 Apr 2022 19:05:25 GMT" ], "Content-Length": [ - "2909" + "2919" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,17 +258,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/ps5691/schemas/60ecdbd7a2ca601290f0cbcd\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"60ecdbd7a2ca601290f0cbcd\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926/schemas/62474cd6217d200d902d7e51\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"62474cd6217d200d902d7e51\",\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/ps5691?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNj9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992532ac-7bb6-438b-a33e-2a5152ae239b" + "bbb50889-7316-4f0a-8f54-ffccc0d768f5" ], "If-Match": [ "*" @@ -277,10 +277,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -297,7 +297,7 @@ "nosniff" ], "x-ms-request-id": [ - "72c40530-2477-43ef-9fb8-bec0d7c0948c" + "c6b1e6c5-4449-4acf-9afc-83fd2da32055" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,13 +306,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "46c9b401-4433-42cc-afbd-e9d130157402" + "c6b1e6c5-4449-4acf-9afc-83fd2da32055" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001902Z:46c9b401-4433-42cc-afbd-e9d130157402" + "WESTCENTRALUS:20220401T190525Z:c6b1e6c5-4449-4acf-9afc-83fd2da32055" ], "Date": [ - "Tue, 13 Jul 2021 00:19:01 GMT" + "Fri, 01 Apr 2022 19:05:25 GMT" ], "Expires": [ "-1" @@ -327,10 +327,10 @@ ], "Names": { "": [ - "ps5691" + "ps3926" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 6fd6b9209975..11422feef834 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTI0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "0e14e2ab-6898-4593-b8e7-f68d34f48545" + "b414c252-8d3f-4351-b1f0-f61de334ccba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?api-version=2020-12-01&asyncId=60ecdae3a2ca601290f0cb9e&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?api-version=2021-08-01&asyncId=62474bf4217d200d902d7e22&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,22 +42,22 @@ "nosniff" ], "x-ms-request-id": [ - "7648c62c-e0ac-4e45-a3a5-519428d1749e" + "f553e724-f8de-4a46-a500-e6f387c45559" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "dccf9c90-9d28-44be-8f6e-5e95e0bb4082" + "f553e724-f8de-4a46-a500-e6f387c45559" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001427Z:dccf9c90-9d28-44be-8f6e-5e95e0bb4082" + "WESTUS:20220401T190108Z:f553e724-f8de-4a46-a500-e6f387c45559" ], "Date": [ - "Tue, 13 Jul 2021 00:14:27 GMT" + "Fri, 01 Apr 2022 19:01:08 GMT" ], "Expires": [ "-1" @@ -70,19 +70,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?api-version=2020-12-01&asyncId=60ecdae3a2ca601290f0cb9e&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGFlM2EyY2E2MDEyOTBmMGNiOWUmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?api-version=2021-08-01&asyncId=62474bf4217d200d902d7e22&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTI0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRiZjQyMTdkMjAwZDkwMmQ3ZTIyJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e14e2ab-6898-4593-b8e7-f68d34f48545" + "b414c252-8d3f-4351-b1f0-f61de334ccba" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAKk=\"" + "\"AAAAAAAADGs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,25 +102,25 @@ "nosniff" ], "x-ms-request-id": [ - "d286a1c0-87c8-46b9-b541-a5d95f2ea703" + "473fe51f-1cd7-4763-8c42-5264d328580a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "46ce799e-d7a7-42c6-8a3b-26924846b53b" + "473fe51f-1cd7-4763-8c42-5264d328580a" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001457Z:46ce799e-d7a7-42c6-8a3b-26924846b53b" + "WESTUS:20220401T190138Z:473fe51f-1cd7-4763-8c42-5264d328580a" ], "Date": [ - "Tue, 13 Jul 2021 00:14:57 GMT" + "Fri, 01 Apr 2022 19:01:38 GMT" ], "Content-Length": [ - "786" + "796" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5541\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1240\",\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/ps5541?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTI0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e14e2ab-6898-4593-b8e7-f68d34f48545" + "b414c252-8d3f-4351-b1f0-f61de334ccba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAKk=\"" + "\"AAAAAAAADGs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,25 +168,25 @@ "nosniff" ], "x-ms-request-id": [ - "c7bab1fd-ffe0-4b5e-be31-a623210eb44d" + "77f4c449-65a3-426b-a8a6-d87a52f44937" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "bc8294bd-869c-41c7-bb19-4e5e3db31632" + "77f4c449-65a3-426b-a8a6-d87a52f44937" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001457Z:bc8294bd-869c-41c7-bb19-4e5e3db31632" + "WESTUS:20220401T190139Z:77f4c449-65a3-426b-a8a6-d87a52f44937" ], "Date": [ - "Tue, 13 Jul 2021 00:14:57 GMT" + "Fri, 01 Apr 2022 19:01:38 GMT" ], "Content-Length": [ - "786" + "796" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5541\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1240\",\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/ps7738?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "aa78ec47-6243-4795-8601-b9bce7068337" + "10d2710c-e1a3-4cf0-9e7b-36a4536d63b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,7 +231,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?api-version=2020-12-01&asyncId=60ecdb01a2ca601290f0cba5&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?api-version=2021-08-01&asyncId=62474c13217d200d902d7e29&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,22 +240,22 @@ "nosniff" ], "x-ms-request-id": [ - "9c1e92be-622b-4662-b6a2-867d06c5b22f" + "ecc994ae-b1d5-41c5-ab97-5eaeec4db89c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "4d4fc179-7cfd-45e2-8c2f-72c627a87c8b" + "ecc994ae-b1d5-41c5-ab97-5eaeec4db89c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001458Z:4d4fc179-7cfd-45e2-8c2f-72c627a87c8b" + "WESTUS:20220401T190139Z:ecc994ae-b1d5-41c5-ab97-5eaeec4db89c" ], "Date": [ - "Tue, 13 Jul 2021 00:14:57 GMT" + "Fri, 01 Apr 2022 19:01:39 GMT" ], "Expires": [ "-1" @@ -268,19 +268,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?api-version=2020-12-01&asyncId=60ecdb01a2ca601290f0cba5&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGIwMWEyY2E2MDEyOTBmMGNiYTUmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?api-version=2021-08-01&asyncId=62474c13217d200d902d7e29&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRjMTMyMTdkMjAwZDkwMmQ3ZTI5JmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa78ec47-6243-4795-8601-b9bce7068337" + "10d2710c-e1a3-4cf0-9e7b-36a4536d63b1" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAL4=\"" + "\"AAAAAAAADIE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,25 +300,25 @@ "nosniff" ], "x-ms-request-id": [ - "d9e8f6db-1a0e-4519-88fb-8abb650f9eca" + "68e5f0b6-6d1b-47c2-8988-de8cd56bcfca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "512f19da-886b-464a-b8e5-079519616bb5" + "68e5f0b6-6d1b-47c2-8988-de8cd56bcfca" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001528Z:512f19da-886b-464a-b8e5-079519616bb5" + "WESTUS:20220401T190210Z:68e5f0b6-6d1b-47c2-8988-de8cd56bcfca" ], "Date": [ - "Tue, 13 Jul 2021 00:15:27 GMT" + "Fri, 01 Apr 2022 19:02:09 GMT" ], "Content-Length": [ - "798" + "808" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,26 +327,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7738\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4295\",\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/ps7738?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa78ec47-6243-4795-8601-b9bce7068337" + "10d2710c-e1a3-4cf0-9e7b-36a4536d63b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -357,7 +357,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAL4=\"" + "\"AAAAAAAADIE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,25 +366,25 @@ "nosniff" ], "x-ms-request-id": [ - "7338c314-5bbd-4002-b84d-98a43f1e91d6" + "d66136ed-2fb5-4c21-a278-15268cc1ba2c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "901a51a4-4d0f-40ca-abb6-27b72cab8d02" + "d66136ed-2fb5-4c21-a278-15268cc1ba2c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001528Z:901a51a4-4d0f-40ca-abb6-27b72cab8d02" + "WESTUS:20220401T190210Z:d66136ed-2fb5-4c21-a278-15268cc1ba2c" ], "Date": [ - "Tue, 13 Jul 2021 00:15:27 GMT" + "Fri, 01 Apr 2022 19:02:09 GMT" ], "Content-Length": [ - "798" + "808" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,26 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7738\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4295\",\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/ps7738/schemas?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7938c09b-aa40-43e6-b10d-5f39f1a667fc" + "612ee72d-0ba9-4654-b1db-d3c2003b2f49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -429,25 +429,25 @@ "nosniff" ], "x-ms-request-id": [ - "b189b315-a782-49b1-b45b-d04c7b1fa291" + "17cb380e-f774-4a5f-9094-2ef052b323ed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "63564bdf-55ef-4ebd-83f0-d7a1f4ac523e" + "17cb380e-f774-4a5f-9094-2ef052b323ed" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001528Z:63564bdf-55ef-4ebd-83f0-d7a1f4ac523e" + "WESTUS:20220401T190210Z:17cb380e-f774-4a5f-9094-2ef052b323ed" ], "Date": [ - "Tue, 13 Jul 2021 00:15:28 GMT" + "Fri, 01 Apr 2022 19:02:09 GMT" ], "Content-Length": [ - "15328" + "15368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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/ps7738/schemas/4d79da74-1713-4439-b5b6-c348fa3e15f1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"4d79da74-1713-4439-b5b6-c348fa3e15f1\",\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/ps7738/schemas/54ad1b1a-7333-4d71-98b3-c6c2741e4b8c\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"54ad1b1a-7333-4d71-98b3-c6c2741e4b8c\",\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/ps7738/schemas/b8fce5e3-9e2d-4d4b-bd6f-eea039aca39e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"b8fce5e3-9e2d-4d4b-bd6f-eea039aca39e\",\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/ps7738/schemas/eb36d202-22ef-4321-846c-f40a2e0b1837\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"eb36d202-22ef-4321-846c-f40a2e0b1837\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas/0e52fa82-26f0-4827-bf7d-e5085063b201\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"0e52fa82-26f0-4827-bf7d-e5085063b201\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas/289018a0-154c-44bd-b387-34c154864ed8\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"289018a0-154c-44bd-b387-34c154864ed8\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas/8a5af773-1a09-4e00-8a0c-bdc8f239836a\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"8a5af773-1a09-4e00-8a0c-bdc8f239836a\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas/de3b0663-0bc0-406d-96af-42a8a5d60b3a\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"de3b0663-0bc0-406d-96af-42a8a5d60b3a\",\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/ps7738%3Brev%3D1?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295%3Brev%3D1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NSUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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}", + "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": [ - "6c14f18a-7a0f-441a-93cc-1e718f6c0bd6" + "4e27c074-ecae-4291-bd46-b27f33ac3946" ], "If-Match": [ "*" @@ -475,10 +475,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,7 +495,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAOc=\"" + "\"AAAAAAAADKs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,25 +504,25 @@ "nosniff" ], "x-ms-request-id": [ - "c5d36d09-3f36-4e83-940f-bc30092959de" + "6e946877-6bce-4e89-b329-24f359fe6d71" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "a2fef3c8-6cea-4f48-a37a-f671208002bf" + "6e946877-6bce-4e89-b329-24f359fe6d71" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001534Z:a2fef3c8-6cea-4f48-a37a-f671208002bf" + "WESTUS:20220401T190210Z:6e946877-6bce-4e89-b329-24f359fe6d71" ], "Date": [ - "Tue, 13 Jul 2021 00:15:33 GMT" + "Fri, 01 Apr 2022 19:02:10 GMT" ], "Content-Length": [ - "835" + "845" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,17 +531,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7738\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4295\",\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/ps5541?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTI0MD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c04a713f-b73b-484f-bfa2-103f60846abb" + "990ae12b-fae0-402c-87f2-8dcbe9d578da" ], "If-Match": [ "*" @@ -550,10 +550,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -570,7 +570,7 @@ "nosniff" ], "x-ms-request-id": [ - "ba73dbdd-467c-48d8-92a7-f2a60cece9fe" + "a19e5392-7dc3-43d7-93a4-62e43ee85f37" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -579,13 +579,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "3f27c067-209f-40f2-a11b-3219ce383898" + "a19e5392-7dc3-43d7-93a4-62e43ee85f37" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001535Z:3f27c067-209f-40f2-a11b-3219ce383898" + "WESTUS:20220401T190210Z:a19e5392-7dc3-43d7-93a4-62e43ee85f37" ], "Date": [ - "Tue, 13 Jul 2021 00:15:35 GMT" + "Fri, 01 Apr 2022 19:02:10 GMT" ], "Expires": [ "-1" @@ -598,13 +598,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ddb5d27-a9e9-4b44-9eab-78f67e7df8bd" + "7dd1317d-c5a2-48e7-9300-38c6778bcf97" ], "If-Match": [ "*" @@ -613,10 +613,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -633,7 +633,7 @@ "nosniff" ], "x-ms-request-id": [ - "012a88d3-0899-4885-af66-24d4dc41075d" + "056b4e1c-2404-4326-bf0b-9e7b58dbfa12" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -642,13 +642,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "c01ba1f8-bd1b-4a00-9aab-56d5df2a4c36" + "056b4e1c-2404-4326-bf0b-9e7b58dbfa12" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001535Z:c01ba1f8-bd1b-4a00-9aab-56d5df2a4c36" + "WESTUS:20220401T190211Z:056b4e1c-2404-4326-bf0b-9e7b58dbfa12" ], "Date": [ - "Tue, 13 Jul 2021 00:15:35 GMT" + "Fri, 01 Apr 2022 19:02:10 GMT" ], "Expires": [ "-1" @@ -663,11 +663,11 @@ ], "Names": { "": [ - "ps5541", - "ps7738" + "ps1240", + "ps4295" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 24432048c155..556c220b838c 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "7b104bfc-0578-481e-b17f-3385b91bb8d3" + "e3924d59-0c0e-4758-b21a-e090a1a7f2a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01&asyncId=60ecd8a1a2ca601290f0cb18&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01&asyncId=62474a1e217d200d902d7d9a&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "e83e57c8-5b2a-4b6a-a37c-ab881563f3be" + "4d5d83c3-50b4-4ae0-a6ec-9beafe6323ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,13 +51,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "47602173-9b65-4f2c-901b-4896d251e46f" + "4d5d83c3-50b4-4ae0-a6ec-9beafe6323ca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000449Z:47602173-9b65-4f2c-901b-4896d251e46f" + "WESTUS:20220401T185318Z:4d5d83c3-50b4-4ae0-a6ec-9beafe6323ca" ], "Date": [ - "Tue, 13 Jul 2021 00:04:49 GMT" + "Fri, 01 Apr 2022 18:53:18 GMT" ], "Expires": [ "-1" @@ -70,19 +70,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01&asyncId=60ecd8a1a2ca601290f0cb18&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDhhMWEyY2E2MDEyOTBmMGNiMTgmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01&asyncId=62474a1e217d200d902d7d9a&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhMWUyMTdkMjAwZDkwMmQ3ZDlhJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b104bfc-0578-481e-b17f-3385b91bb8d3" + "e3924d59-0c0e-4758-b21a-e090a1a7f2a9" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/l4=\"" + "\"AAAAAAAACgo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,25 +102,25 @@ "nosniff" ], "x-ms-request-id": [ - "7dc78372-d396-4ccd-a0ea-9dfd8ae93093" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cd72f362-289e-468d-96a1-37c6a6f8d4c8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "7c91ca8f-a764-496a-bc8c-3827a775af82" + "cd72f362-289e-468d-96a1-37c6a6f8d4c8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000519Z:7c91ca8f-a764-496a-bc8c-3827a775af82" + "WESTUS:20220401T185348Z:cd72f362-289e-468d-96a1-37c6a6f8d4c8" ], "Date": [ - "Tue, 13 Jul 2021 00:05:19 GMT" + "Fri, 01 Apr 2022 18:53:48 GMT" ], "Content-Length": [ - "884" + "1211" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128\",\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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b104bfc-0578-481e-b17f-3385b91bb8d3" + "e3924d59-0c0e-4758-b21a-e090a1a7f2a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/l4=\"" + "\"AAAAAAAACgo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "31a79328-ec19-4a93-8060-a5cec53f977b" + "2fc1a837-a063-4aa5-ab63-d652dc858c46" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "eef6b84e-2381-498d-9227-5b81a607c4cb" + "2fc1a837-a063-4aa5-ab63-d652dc858c46" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000519Z:eef6b84e-2381-498d-9227-5b81a607c4cb" + "WESTUS:20220401T185349Z:2fc1a837-a063-4aa5-ab63-d652dc858c46" ], "Date": [ - "Tue, 13 Jul 2021 00:05:19 GMT" + "Fri, 01 Apr 2022 18:53:49 GMT" ], "Content-Length": [ - "884" + "1211" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128\",\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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "292d5639-e27c-409b-b7bf-d38b1ea1ed8c" + "31688169-d80d-43ca-a751-47208df59fe7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/l4=\"" + "\"AAAAAAAACgo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "x-ms-request-id": [ - "32c92440-f5ff-4b6d-8fe1-a63719f192a1" + "a5f80047-d49c-4eef-a165-b5d9ac9e1e08" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "cfc7ed30-53ef-4dbf-9708-b6418440edda" + "a5f80047-d49c-4eef-a165-b5d9ac9e1e08" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000523Z:cfc7ed30-53ef-4dbf-9708-b6418440edda" + "WESTUS:20220401T185352Z:a5f80047-d49c-4eef-a165-b5d9ac9e1e08" ], "Date": [ - "Tue, 13 Jul 2021 00:05:22 GMT" + "Fri, 01 Apr 2022 18:53:51 GMT" ], "Content-Length": [ - "884" + "1211" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128\",\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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b369c10-60db-4a8f-be01-92e8f0ef30e2" + "335ec01b-4f5c-418f-8941-ca7348b72a4e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -297,7 +297,7 @@ "nosniff" ], "x-ms-request-id": [ - "d7d3ca48-d03a-4098-bac2-fcdda24e0115" + "b47dfc4b-6372-44b1-ad04-65937a4a09b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,16 +306,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "1bf3c487-0bbf-492a-a4da-5c4f88d0d015" + "b47dfc4b-6372-44b1-ad04-65937a4a09b5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000519Z:1bf3c487-0bbf-492a-a4da-5c4f88d0d015" + "WESTUS:20220401T185349Z:b47dfc4b-6372-44b1-ad04-65937a4a09b5" ], "Date": [ - "Tue, 13 Jul 2021 00:05:19 GMT" + "Fri, 01 Apr 2022 18:53:49 GMT" ], "Content-Length": [ - "1287" + "1305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,26 +324,26 @@ "-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\": 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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/ps2216?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczIyMTY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8128?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM4MTI4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc2e137d-bde9-4d1a-8c5b-9fde822cc781" + "d69b8c3d-52af-44b9-a229-29b55b70f7de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -354,7 +354,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/l4=\"" + "\"AAAAAAAACgo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "x-ms-request-id": [ - "b953563a-e1a9-433a-97c3-d009c2889d6f" + "311ae7f6-f0c4-4a80-ac1b-40cdace5ff64" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -372,16 +372,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "29504dcc-dfec-4fc7-a720-7533df53ed2a" + "311ae7f6-f0c4-4a80-ac1b-40cdace5ff64" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000520Z:29504dcc-dfec-4fc7-a720-7533df53ed2a" + "WESTUS:20220401T185350Z:311ae7f6-f0c4-4a80-ac1b-40cdace5ff64" ], "Date": [ - "Tue, 13 Jul 2021 00:05:20 GMT" + "Fri, 01 Apr 2022 18:53:50 GMT" ], "Content-Length": [ - "758" + "768" ], "Content-Type": [ "application/json; charset=utf-8" @@ -390,26 +390,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps2216\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8128\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df5137f9-2760-4cd4-8c59-44fc9235a83b" + "ae1a066e-e7bc-4c21-87ed-f7bf59a5f5f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -426,7 +426,7 @@ "nosniff" ], "x-ms-request-id": [ - "5594bc6b-4fbc-4d2f-8864-bc53f15c6cdf" + "da9957a2-2d89-42d8-b294-f9e32e5ed1e4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,16 +435,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "9f6f4802-fcb8-4877-9486-4993dd043686" + "da9957a2-2d89-42d8-b294-f9e32e5ed1e4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000521Z:9f6f4802-fcb8-4877-9486-4993dd043686" + "WESTUS:20220401T185351Z:da9957a2-2d89-42d8-b294-f9e32e5ed1e4" ], "Date": [ - "Tue, 13 Jul 2021 00:05:20 GMT" + "Fri, 01 Apr 2022 18:53:51 GMT" ], "Content-Length": [ - "1610" + "1630" ], "Content-Type": [ "application/json; charset=utf-8" @@ -453,26 +453,26 @@ "-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/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps2216\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8128\",\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/ps2216/operations?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36e83d38-5399-4fcc-a83d-e0f01b716fcb" + "e221b63a-1496-402b-bcad-af4009e6689f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -489,7 +489,7 @@ "nosniff" ], "x-ms-request-id": [ - "8661a2c0-dcc2-4725-8481-2e5d11f1ba56" + "7744df46-2b96-4355-978a-1aa746c9eccb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -498,16 +498,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "3e82bbab-73a4-4706-b830-d8b2618d81c7" + "7744df46-2b96-4355-978a-1aa746c9eccb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000523Z:3e82bbab-73a4-4706-b830-d8b2618d81c7" + "WESTUS:20220401T185351Z:7744df46-2b96-4355-978a-1aa746c9eccb" ], "Date": [ - "Tue, 13 Jul 2021 00:05:22 GMT" + "Fri, 01 Apr 2022 18:53:51 GMT" ], "Content-Length": [ - "27305" + "28037" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,26 +516,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/ps2216/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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/ps2216/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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/ps2216/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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/ps2216/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 \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/ps2216/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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/ps2216/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 \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\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 \"sample\": \"[\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/ps2216/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Id\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DummyDateHeaderParam\"\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Header1\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DefinedQueryParam\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Limit\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Id\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Limit\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\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 \"sample\": \"[\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/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/ps2216%3Brev%3D2?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps9980\",\r\n \"sourceApiId\": \"/apis/ps2216;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps6264\",\r\n \"sourceApiId\": \"/apis/ps8128;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "292d5639-e27c-409b-b7bf-d38b1ea1ed8c" + "31688169-d80d-43ca-a751-47208df59fe7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -552,7 +552,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/os=\"" + "\"AAAAAAAACjk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -561,7 +561,7 @@ "nosniff" ], "x-ms-request-id": [ - "df5fcff5-a77d-47a9-b895-495da554280f" + "7c7140ed-35e2-42f7-8ef8-1f0d8b93333f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -570,16 +570,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "3764ec60-19f0-416e-a5dc-f891e0b4141a" + "7c7140ed-35e2-42f7-8ef8-1f0d8b93333f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000526Z:3764ec60-19f0-416e-a5dc-f891e0b4141a" + "WESTUS:20220401T185359Z:7c7140ed-35e2-42f7-8ef8-1f0d8b93333f" ], "Date": [ - "Tue, 13 Jul 2021 00:05:26 GMT" + "Fri, 01 Apr 2022 18:53:59 GMT" ], "Content-Length": [ - "913" + "1240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -588,23 +588,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216;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\": \"ps9980\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128;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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"apiRevisionDescription\": \"ps6264\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216%3Brev%3D2?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "292d5639-e27c-409b-b7bf-d38b1ea1ed8c" + "31688169-d80d-43ca-a751-47208df59fe7" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -615,7 +615,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/os=\"" + "\"AAAAAAAACjk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,7 +624,7 @@ "nosniff" ], "x-ms-request-id": [ - "7e1e516c-5191-45d1-a00b-a13452fa0266" + "ca7d75b4-7e31-4986-a9d4-2564e069cf71" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,16 +633,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "a80580ab-2723-4b1d-bc9c-69ed33f787a1" + "ca7d75b4-7e31-4986-a9d4-2564e069cf71" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000556Z:a80580ab-2723-4b1d-bc9c-69ed33f787a1" + "WESTUS:20220401T185430Z:ca7d75b4-7e31-4986-a9d4-2564e069cf71" ], "Date": [ - "Tue, 13 Jul 2021 00:05:56 GMT" + "Fri, 01 Apr 2022 18:54:30 GMT" ], "Content-Length": [ - "913" + "1240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216;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\": \"ps9980\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128;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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"apiRevisionDescription\": \"ps6264\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216%3Brev%3D2?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "def37544-7b13-42ef-9381-6e31add44c72" + "459f15cb-6fca-49be-ae9a-ab380206c48f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -681,7 +681,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/os=\"" + "\"AAAAAAAACjk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -690,7 +690,7 @@ "nosniff" ], "x-ms-request-id": [ - "56b4679c-9dc1-43b6-bd64-88978d282ff6" + "1fa4dc5f-cd83-4009-b1d7-0d4e7df5edde" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -699,16 +699,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "60107bf7-b809-4c03-82c0-1b6bd120c444" + "1fa4dc5f-cd83-4009-b1d7-0d4e7df5edde" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000557Z:60107bf7-b809-4c03-82c0-1b6bd120c444" + "WESTUS:20220401T185430Z:1fa4dc5f-cd83-4009-b1d7-0d4e7df5edde" ], "Date": [ - "Tue, 13 Jul 2021 00:05:56 GMT" + "Fri, 01 Apr 2022 18:54:30 GMT" ], "Content-Length": [ - "913" + "1240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -717,26 +717,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216;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\": \"ps9980\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128;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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"apiRevisionDescription\": \"ps6264\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216%3Brev%3D2/operations?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D2/operations?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a26213d6-cfdf-4a8b-95e6-55e68b9f5a75" + "6f0f879f-c7c1-42a4-9ed2-7a3058e05c5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -753,7 +753,7 @@ "nosniff" ], "x-ms-request-id": [ - "3d4c664a-78e5-454e-96a0-3d4fa1fc0026" + "7d68881b-f2cb-4ec8-b069-dac13031bf73" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -762,16 +762,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "5a4b0ee3-2b83-49d0-923d-a65c8f4e3c04" + "7d68881b-f2cb-4ec8-b069-dac13031bf73" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000556Z:5a4b0ee3-2b83-49d0-923d-a65c8f4e3c04" + "WESTUS:20220401T185430Z:7d68881b-f2cb-4ec8-b069-dac13031bf73" ], "Date": [ - "Tue, 13 Jul 2021 00:05:56 GMT" + "Fri, 01 Apr 2022 18:54:30 GMT" ], "Content-Length": [ - "27353" + "28085" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,26 +780,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/ps2216;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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/ps2216;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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/ps2216;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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/ps2216;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 \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/ps2216;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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/ps2216;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 \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\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 \"sample\": \"[\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/ps2216;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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Id\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DummyDateHeaderParam\"\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Header1\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DefinedQueryParam\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Limit\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Id\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;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 \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Limit\"\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 \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\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 \"sample\": \"[\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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 \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;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/ps2216/revisions?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/revisions?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZXZpc2lvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24220d74-9e07-481a-8387-76598aec2c05" + "2fb283e4-e98f-4bbd-bf22-d5670382a973" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -816,7 +816,7 @@ "nosniff" ], "x-ms-request-id": [ - "95565616-3ca9-4d2c-be02-7a33e8d241ac" + "78c365b6-1144-40db-94a1-ea97be027b74" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -825,16 +825,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "ae483ff7-f65d-4f41-84c8-cc7aa732850c" + "78c365b6-1144-40db-94a1-ea97be027b74" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000557Z:ae483ff7-f65d-4f41-84c8-cc7aa732850c" + "WESTUS:20220401T185431Z:78c365b6-1144-40db-94a1-ea97be027b74" ], "Date": [ - "Tue, 13 Jul 2021 00:05:57 GMT" + "Fri, 01 Apr 2022 18:54:31 GMT" ], "Content-Length": [ - "597" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -843,26 +843,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/apis/ps2216;rev=2/revisions/ps2216;rev=2\",\r\n \"apiId\": \"/apis/ps2216;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2021-07-13T00:05:25.21Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:26.233Z\",\r\n \"description\": \"ps9980\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"id\": \"/apis/ps2216;rev=1/revisions/ps2216;rev=1\",\r\n \"apiId\": \"/apis/ps2216;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2021-07-13T00:04:49.367Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:04:49.397Z\",\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/ps8128;rev=2/revisions/ps8128;rev=2\",\r\n \"apiId\": \"/apis/ps8128;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2022-04-01T18:53:58.02Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:53:59.23Z\",\r\n \"description\": \"ps6264\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"id\": \"/apis/ps8128;rev=1/revisions/ps8128;rev=1\",\r\n \"apiId\": \"/apis/ps8128;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2022-04-01T18:53:18.693Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:53:18.74Z\",\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/ps2216/releases/ps6066?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzL3BzNjA2Nj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcy9wczI0NDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps2216;rev=2\",\r\n \"notes\": \"ps1845\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps8128;rev=2\",\r\n \"notes\": \"ps3602\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f8af4145-33ef-48ee-a41c-b1165ca0083c" + "1cdbfd7c-ec60-4015-9f23-a28c6670dccd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -879,7 +879,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/rk=\"" + "\"AAAAAAAACmg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -888,7 +888,7 @@ "nosniff" ], "x-ms-request-id": [ - "eafffad5-b194-4fb4-aebe-ac1c313a271b" + "9f22d04e-43ea-46db-9f34-5fc5b763d1ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -897,16 +897,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "260014d7-bd93-437a-8abf-69082011b073" + "9f22d04e-43ea-46db-9f34-5fc5b763d1ae" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000558Z:260014d7-bd93-437a-8abf-69082011b073" + "WESTUS:20220401T185432Z:9f22d04e-43ea-46db-9f34-5fc5b763d1ae" ], "Date": [ - "Tue, 13 Jul 2021 00:05:57 GMT" + "Fri, 01 Apr 2022 18:54:32 GMT" ], "Content-Length": [ - "603" + "623" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,26 +915,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"createdDateTime\": \"2021-07-13T00:05:58.0915272Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:58.1249239Z\",\r\n \"notes\": \"ps1845\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"createdDateTime\": \"2022-04-01T18:54:31.8836096Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:31.9136859Z\",\r\n \"notes\": \"ps3602\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzL3BzNjA2Nj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcy9wczI0NDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8cf4dbb-a007-48a5-bda1-c7dc188d349c" + "af9b0bf0-7b45-4f3d-817f-712dd68108fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -945,7 +945,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/rk=\"" + "\"AAAAAAAACmg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +954,7 @@ "nosniff" ], "x-ms-request-id": [ - "833f6e91-ca6b-4d83-a6b3-c52ff6948e14" + "05037e4a-4bbb-4966-a8b2-30b5f9946318" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -963,16 +963,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "183b1e18-b7b4-44ff-8bcf-0e5e1f563cc5" + "05037e4a-4bbb-4966-a8b2-30b5f9946318" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000558Z:183b1e18-b7b4-44ff-8bcf-0e5e1f563cc5" + "WESTUS:20220401T185432Z:05037e4a-4bbb-4966-a8b2-30b5f9946318" ], "Date": [ - "Tue, 13 Jul 2021 00:05:58 GMT" + "Fri, 01 Apr 2022 18:54:32 GMT" ], "Content-Length": [ - "594" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,26 +981,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"createdDateTime\": \"2021-07-13T00:05:58.09Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:58.123Z\",\r\n \"notes\": \"ps1845\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"createdDateTime\": \"2022-04-01T18:54:31.883Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:31.913Z\",\r\n \"notes\": \"ps3602\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzL3BzNjA2Nj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcy9wczI0NDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8cf4dbb-a007-48a5-bda1-c7dc188d349c" + "af9b0bf0-7b45-4f3d-817f-712dd68108fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1011,7 +1011,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/sA=\"" + "\"AAAAAAAACm8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1020,7 +1020,7 @@ "nosniff" ], "x-ms-request-id": [ - "02d6403e-cc34-47a0-b85b-47b58eba63bd" + "0b3c1bd4-0a40-49d4-833f-6a4aca077545" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1029,16 +1029,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "31e96383-a4a5-4aed-89c6-2650750b40e7" + "0b3c1bd4-0a40-49d4-833f-6a4aca077545" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000559Z:31e96383-a4a5-4aed-89c6-2650750b40e7" + "WESTUS:20220401T185433Z:0b3c1bd4-0a40-49d4-833f-6a4aca077545" ], "Date": [ - "Tue, 13 Jul 2021 00:05:58 GMT" + "Fri, 01 Apr 2022 18:54:33 GMT" ], "Content-Length": [ - "594" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,17 +1047,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"createdDateTime\": \"2021-07-13T00:05:58.09Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:59.023Z\",\r\n \"notes\": \"ps7283\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"createdDateTime\": \"2022-04-01T18:54:31.883Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:33.223Z\",\r\n \"notes\": \"ps7134\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzL3BzNjA2Nj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcy9wczI0NDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"notes\": \"ps7283\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"notes\": \"ps7134\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f8cf4dbb-a007-48a5-bda1-c7dc188d349c" + "af9b0bf0-7b45-4f3d-817f-712dd68108fd" ], "If-Match": [ "*" @@ -1066,16 +1066,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "225" + "235" ] }, "ResponseHeaders": { @@ -1086,7 +1086,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/sA=\"" + "\"AAAAAAAACm8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,7 +1095,7 @@ "nosniff" ], "x-ms-request-id": [ - "6c7e2949-de34-4f5d-9f10-6e9434a3b6ca" + "7b9cd7a8-104a-42b4-b857-2a94fcd703ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1104,16 +1104,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "5b46cd85-13ed-4a45-91e5-f1405a4dc2ea" + "7b9cd7a8-104a-42b4-b857-2a94fcd703ec" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000559Z:5b46cd85-13ed-4a45-91e5-f1405a4dc2ea" + "WESTUS:20220401T185433Z:7b9cd7a8-104a-42b4-b857-2a94fcd703ec" ], "Date": [ - "Tue, 13 Jul 2021 00:05:58 GMT" + "Fri, 01 Apr 2022 18:54:33 GMT" ], "Content-Length": [ - "598" + "619" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1122,26 +1122,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"createdDateTime\": \"2021-07-13T00:05:58.09Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:59.0219974Z\",\r\n \"notes\": \"ps7283\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"createdDateTime\": \"2022-04-01T18:54:31.883Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:33.2241758Z\",\r\n \"notes\": \"ps7134\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df3acd9e-3c0e-47f8-810c-fa33f6768f01" + "ee8ebcf4-517a-4e1e-b67d-dd25ce0d8217" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1158,7 +1158,7 @@ "nosniff" ], "x-ms-request-id": [ - "a2c31767-d642-459e-86e0-e5034d303a32" + "8d50b351-5fda-4857-b933-76fdea48c248" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1167,16 +1167,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "a7510137-c3e7-4e66-b169-24e8abf91abb" + "8d50b351-5fda-4857-b933-76fdea48c248" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000559Z:a7510137-c3e7-4e66-b169-24e8abf91abb" + "WESTUS:20220401T185434Z:8d50b351-5fda-4857-b933-76fdea48c248" ], "Date": [ - "Tue, 13 Jul 2021 00:05:59 GMT" + "Fri, 01 Apr 2022 18:54:34 GMT" ], "Content-Length": [ - "500" + "511" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1185,17 +1185,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/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2021-07-13T00:05:58.09Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:59.023Z\",\r\n \"notes\": \"ps7283\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2022-04-01T18:54:31.883Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:33.223Z\",\r\n \"notes\": \"ps7134\"\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/ps2216%3Brev%3D1?deleteRevisions=false&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMT9kZWxldGVSZXZpc2lvbnM9ZmFsc2UmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D1?deleteRevisions=false&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDE/ZGVsZXRlUmV2aXNpb25zPWZhbHNlJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01e64f25-f587-4bac-8ad2-cbb9b5fa94e8" + "bbd99354-42d7-428a-b0d5-56a4b8481cea" ], "If-Match": [ "*" @@ -1204,10 +1204,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1224,7 +1224,7 @@ "nosniff" ], "x-ms-request-id": [ - "ffbd75c1-dbd6-443d-861d-c8082d46412a" + "a9f95995-45c1-46c3-bd91-42d8d58b3fa8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1233,13 +1233,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "b2af84ca-eba4-445b-a225-2ab96993f109" + "a9f95995-45c1-46c3-bd91-42d8d58b3fa8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000600Z:b2af84ca-eba4-445b-a225-2ab96993f109" + "WESTUS:20220401T185434Z:a9f95995-45c1-46c3-bd91-42d8d58b3fa8" ], "Date": [ - "Tue, 13 Jul 2021 00:05:59 GMT" + "Fri, 01 Apr 2022 18:54:34 GMT" ], "Expires": [ "-1" @@ -1252,13 +1252,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8574bfc3-558d-47dc-b481-aa010dda6fb6" + "f617dc77-b687-493e-a8de-8c025c0335e4" ], "If-Match": [ "*" @@ -1267,10 +1267,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1287,7 +1287,7 @@ "nosniff" ], "x-ms-request-id": [ - "ca8718f7-2901-471a-9e29-f82fe9bd2555" + "9ae3641d-42a9-4271-a512-e75c78edf1a8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1296,13 +1296,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "47181a82-6e58-4d70-94e7-2e23830897af" + "9ae3641d-42a9-4271-a512-e75c78edf1a8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000601Z:47181a82-6e58-4d70-94e7-2e23830897af" + "WESTUS:20220401T185435Z:9ae3641d-42a9-4271-a512-e75c78edf1a8" ], "Date": [ - "Tue, 13 Jul 2021 00:06:00 GMT" + "Fri, 01 Apr 2022 18:54:35 GMT" ], "Expires": [ "-1" @@ -1317,14 +1317,14 @@ ], "Names": { "": [ - "ps2216", - "ps6066", - "ps9980", - "ps1845", - "ps7283" + "ps8128", + "ps2448", + "ps6264", + "ps3602", + "ps7134" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 82dd3e67ed55..6da610026bb6 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4102\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9383\",\r\n \"query\": \"ps9012\"\r\n },\r\n \"displayName\": \"ps6703\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8180\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps5613\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9154\",\r\n \"query\": \"ps2844\"\r\n },\r\n \"displayName\": \"ps3801\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8767\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "498cb380-2bcb-475f-90df-28d7aaf9e44f" + "5cb0024e-f0a2-403f-997a-f86420ebc156" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAi8=\"" + "\"AAAAAAAADhs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "42928d2f-fe56-4d94-8c23-f8e6a9bfbd7a" + "054f6f34-9447-4796-b82b-f4019b88d417" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,16 +51,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "586c0c95-652f-4fe2-9410-73a562d4d300" + "054f6f34-9447-4796-b82b-f4019b88d417" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002334Z:586c0c95-652f-4fe2-9410-73a562d4d300" + "WESTUS:20220401T230820Z:054f6f34-9447-4796-b82b-f4019b88d417" ], "Date": [ - "Tue, 13 Jul 2021 00:23:33 GMT" + "Fri, 01 Apr 2022 23:08:19 GMT" ], "Content-Length": [ - "739" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,23 +69,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8106\",\r\n \"properties\": {\r\n \"displayName\": \"ps6703\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4102\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8180\",\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\": \"ps9383\",\r\n \"query\": \"ps9012\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1085\",\r\n \"properties\": {\r\n \"displayName\": \"ps3801\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps5613\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8767\",\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\": \"ps9154\",\r\n \"query\": \"ps2844\"\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/ps8106?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "498cb380-2bcb-475f-90df-28d7aaf9e44f" + "5cb0024e-f0a2-403f-997a-f86420ebc156" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -96,7 +96,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAi8=\"" + "\"AAAAAAAADhs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "x-ms-request-id": [ - "0fe1ed0d-df5c-44b5-807a-b6455ff4bed8" + "805254c0-0266-4c9b-9eeb-d33f6c141f79" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,16 +114,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "4e8738fe-ecde-4e8e-a47c-6d5f5edaf763" + "805254c0-0266-4c9b-9eeb-d33f6c141f79" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002404Z:4e8738fe-ecde-4e8e-a47c-6d5f5edaf763" + "WESTUS:20220401T230851Z:805254c0-0266-4c9b-9eeb-d33f6c141f79" ], "Date": [ - "Tue, 13 Jul 2021 00:24:03 GMT" + "Fri, 01 Apr 2022 23:08:51 GMT" ], "Content-Length": [ - "739" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,26 +132,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8106\",\r\n \"properties\": {\r\n \"displayName\": \"ps6703\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4102\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8180\",\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\": \"ps9383\",\r\n \"query\": \"ps9012\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1085\",\r\n \"properties\": {\r\n \"displayName\": \"ps3801\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps5613\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8767\",\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\": \"ps9154\",\r\n \"query\": \"ps2844\"\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/ps8106/schemas?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00af67d8-a32e-457b-a82b-ac6e8a58b6e2" + "05f9623d-c921-4e25-a39b-50a1b3398510" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "f0119d16-041f-416e-bf27-b7a5f611c2e1" + "b151a840-f9b2-4d06-ad84-4efdd218d6bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,13 +177,13 @@ "11998" ], "x-ms-correlation-request-id": [ - "2fd08508-b287-4193-97e4-383bc91c987a" + "b151a840-f9b2-4d06-ad84-4efdd218d6bb" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002404Z:2fd08508-b287-4193-97e4-383bc91c987a" + "WESTUS:20220401T230852Z:b151a840-f9b2-4d06-ad84-4efdd218d6bb" ], "Date": [ - "Tue, 13 Jul 2021 00:24:03 GMT" + "Fri, 01 Apr 2022 23:08:52 GMT" ], "Content-Length": [ "34" @@ -199,22 +199,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f19b0f6-53ba-43ea-a459-05334bc21686" + "c26efa26-19a8-494a-aeb5-14ab0c87f55a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "nosniff" ], "x-ms-request-id": [ - "f2fa3f6f-2274-4bac-8d92-b233c6d63dae" + "e54853bf-d250-40d5-9724-bec8dcc6d311" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,16 +240,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "092e2ca0-47a0-4441-823a-fd658c0282ef" + "e54853bf-d250-40d5-9724-bec8dcc6d311" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002435Z:092e2ca0-47a0-4441-823a-fd658c0282ef" + "WESTUS:20220401T230924Z:e54853bf-d250-40d5-9724-bec8dcc6d311" ], "Date": [ - "Tue, 13 Jul 2021 00:24:34 GMT" + "Fri, 01 Apr 2022 23:09:24 GMT" ], "Content-Length": [ - "2007" + "2015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,26 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3536\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps438\",\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/ps8106/schemas/ps3536?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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": [ - "4fafc1bb-7ec5-4120-849e-73a48e7ae467" + "269d2971-3383-43af-8795-634c304722a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,7 +294,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01&asyncId=60ecdd25a2ca601290f0cc02&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01&asyncId=6247860501234e13942b0703&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "x-ms-request-id": [ - "a1cab2b7-c382-468e-a5a1-6d620af81e21" + "25f7715a-09e1-4699-b9df-7b72f984eb32" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,13 +312,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "bdbb5f97-0465-45e9-9f75-3e874b3f80b8" + "25f7715a-09e1-4699-b9df-7b72f984eb32" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002405Z:bdbb5f97-0465-45e9-9f75-3e874b3f80b8" + "WESTUS:20220401T230853Z:25f7715a-09e1-4699-b9df-7b72f984eb32" ], "Date": [ - "Tue, 13 Jul 2021 00:24:04 GMT" + "Fri, 01 Apr 2022 23:08:53 GMT" ], "Expires": [ "-1" @@ -331,13 +331,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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": [ - "cffe3b42-d8f7-4d36-bb11-2ea8b2c13cac" + "72936300-ec26-425d-9c26-096a98c80bd6" ], "If-Match": [ "*" @@ -346,10 +346,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,7 +366,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01&asyncId=60ecdd43a2ca601290f0cc06&asyncCode=200" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01&asyncId=6247862401234e13942b0707&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -375,7 +375,7 @@ "nosniff" ], "x-ms-request-id": [ - "c22680af-732f-450a-9a78-67418caed8f0" + "bbadeaa1-c219-4f8d-b74f-430a7efb6717" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -384,13 +384,13 @@ "1197" ], "x-ms-correlation-request-id": [ - "9b79c5e0-d578-4c89-89a9-1bd578ed94f4" + "bbadeaa1-c219-4f8d-b74f-430a7efb6717" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002435Z:9b79c5e0-d578-4c89-89a9-1bd578ed94f4" + "WESTUS:20220401T230924Z:bbadeaa1-c219-4f8d-b74f-430a7efb6717" ], "Date": [ - "Tue, 13 Jul 2021 00:24:35 GMT" + "Fri, 01 Apr 2022 23:09:24 GMT" ], "Expires": [ "-1" @@ -403,19 +403,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01&asyncId=60ecdd25a2ca601290f0cc02&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGQyNWEyY2E2MDEyOTBmMGNjMDImYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01&asyncId=6247860501234e13942b0703&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDEmYXN5bmNJZD02MjQ3ODYwNTAxMjM0ZTEzOTQyYjA3MDMmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fafc1bb-7ec5-4120-849e-73a48e7ae467" + "269d2971-3383-43af-8795-634c304722a1" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -426,7 +426,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAjQ=\"" + "\"AAAAAAAADiA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,7 +435,7 @@ "nosniff" ], "x-ms-request-id": [ - "6a873175-7c12-4e10-81c3-934f55b552eb" + "e2255422-9049-4fd9-98ef-ce6756ffd137" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,16 +444,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "0063c26a-7f4b-4ed4-a641-da8418815949" + "e2255422-9049-4fd9-98ef-ce6756ffd137" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002435Z:0063c26a-7f4b-4ed4-a641-da8418815949" + "WESTUS:20220401T230923Z:e2255422-9049-4fd9-98ef-ce6756ffd137" ], "Date": [ - "Tue, 13 Jul 2021 00:24:34 GMT" + "Fri, 01 Apr 2022 23:09:23 GMT" ], "Content-Length": [ - "1699" + "1707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,26 +462,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3536\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps438\",\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/ps8106/schemas/ps3536?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9afff42-4222-4d0f-a8c0-0e5b3a59f7c4" + "56001a29-6f2f-4f42-aca0-c80f97ceb591" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -492,7 +492,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAjQ=\"" + "\"AAAAAAAADiA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,7 +501,7 @@ "nosniff" ], "x-ms-request-id": [ - "fa4daf56-4d4a-4a5f-aee7-5c144429b0cd" + "f78acd85-b2c9-44dc-880f-eb8930becb5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -510,16 +510,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "22805eb8-e59d-4d80-8157-a955d81ad045" + "f78acd85-b2c9-44dc-880f-eb8930becb5c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002435Z:22805eb8-e59d-4d80-8157-a955d81ad045" + "WESTUS:20220401T230923Z:f78acd85-b2c9-44dc-880f-eb8930becb5c" ], "Date": [ - "Tue, 13 Jul 2021 00:24:34 GMT" + "Fri, 01 Apr 2022 23:09:23 GMT" ], "Content-Length": [ - "1699" + "1707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -528,23 +528,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3536\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps438\",\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/ps8106/schemas/ps3536?api-version=2020-12-01&asyncId=60ecdd43a2ca601290f0cc06&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGQ0M2EyY2E2MDEyOTBmMGNjMDYmYXN5bmNDb2RlPTIwMA==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01&asyncId=6247862401234e13942b0707&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDEmYXN5bmNJZD02MjQ3ODYyNDAxMjM0ZTEzOTQyYjA3MDcmYXN5bmNDb2RlPTIwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cffe3b42-d8f7-4d36-bb11-2ea8b2c13cac" + "72936300-ec26-425d-9c26-096a98c80bd6" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -555,7 +555,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAjg=\"" + "\"AAAAAAAADiQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,25 +564,25 @@ "nosniff" ], "x-ms-request-id": [ - "d6e8ffca-ffde-4e4d-9f78-0918e3ed7585" + "ed2d37e5-192f-4a9e-bd7a-5af568af3545" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "137f1844-f074-4264-8343-11288f40e806" + "ed2d37e5-192f-4a9e-bd7a-5af568af3545" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002506Z:137f1844-f074-4264-8343-11288f40e806" + "WESTUS:20220401T230957Z:ed2d37e5-192f-4a9e-bd7a-5af568af3545" ], "Date": [ - "Tue, 13 Jul 2021 00:25:06 GMT" + "Fri, 01 Apr 2022 23:09:57 GMT" ], "Content-Length": [ - "1525" + "1533" ], "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/ps8106/schemas/ps3536\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3536\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps438\",\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/ps8106/schemas/ps3536?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a602e973-2809-4c87-a660-a05a177090d7" + "8806823e-1f2c-42c9-8b4a-9a00aa37db27" ], "If-Match": [ "*" @@ -610,10 +610,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -630,7 +630,7 @@ "nosniff" ], "x-ms-request-id": [ - "b0f39765-4df7-4f96-87fe-01b70a8efa3d" + "fffdc0fb-526c-4071-966a-80357839af64" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -639,13 +639,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "f763c387-9f6e-430a-9692-1bbd61ee6e51" + "fffdc0fb-526c-4071-966a-80357839af64" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002507Z:f763c387-9f6e-430a-9692-1bbd61ee6e51" + "WESTUS:20220401T231002Z:fffdc0fb-526c-4071-966a-80357839af64" ], "Date": [ - "Tue, 13 Jul 2021 00:25:06 GMT" + "Fri, 01 Apr 2022 23:10:02 GMT" ], "Expires": [ "-1" @@ -658,13 +658,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0ffb94c-0d23-4368-a5cb-b53ffdd3968b" + "f559364d-14b9-4cf3-9f30-3d1cddc5372a" ], "If-Match": [ "*" @@ -673,10 +673,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -693,7 +693,7 @@ "nosniff" ], "x-ms-request-id": [ - "20ec15f1-ebdd-4855-9289-531dadf7a7f6" + "ebf4cc0a-17be-4392-ba9b-35bf4ce4b0cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -702,13 +702,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "0f9b91ef-1951-4176-a8da-a0b87901f81c" + "ebf4cc0a-17be-4392-ba9b-35bf4ce4b0cf" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002507Z:0f9b91ef-1951-4176-a8da-a0b87901f81c" + "WESTUS:20220401T231002Z:ebf4cc0a-17be-4392-ba9b-35bf4ce4b0cf" ], "Date": [ - "Tue, 13 Jul 2021 00:25:07 GMT" + "Fri, 01 Apr 2022 23:10:02 GMT" ], "Expires": [ "-1" @@ -718,13 +718,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50452192-a38a-4803-9a17-cedb5d9e551f" + "7b283155-dc4f-4044-aec7-0bc76390719d" ], "If-Match": [ "*" @@ -733,10 +733,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -753,7 +753,7 @@ "nosniff" ], "x-ms-request-id": [ - "765eed66-9156-4142-86b0-21ca29898431" + "1fff5ba2-7b63-498d-bd85-4dbb2c92987b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -762,13 +762,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "4419bfdc-2d26-41ea-8dab-65617f09085a" + "1fff5ba2-7b63-498d-bd85-4dbb2c92987b" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T002507Z:4419bfdc-2d26-41ea-8dab-65617f09085a" + "WESTUS:20220401T231006Z:1fff5ba2-7b63-498d-bd85-4dbb2c92987b" ], "Date": [ - "Tue, 13 Jul 2021 00:25:07 GMT" + "Fri, 01 Apr 2022 23:10:06 GMT" ], "Expires": [ "-1" @@ -783,16 +783,16 @@ ], "Names": { "": [ - "ps8106", - "ps3536", - "ps6703", - "ps4102", - "ps8180", - "ps9383", - "ps9012" + "ps1085", + "ps438", + "ps3801", + "ps5613", + "ps8767", + "ps9154", + "ps2844" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 8518e51f08db..9e30fd2f541c 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "95ea760c-5b00-439a-81ad-c35fc0be313f" + "f962f0e0-94d4-4ffe-847d-0c217f1e3a25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?api-version=2020-12-01&asyncId=60ecd918a2ca601290f0cb29&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?api-version=2021-08-01&asyncId=62474a99217d200d902d7dab&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "ec62aaaa-874e-4d05-823b-b7fdc017cffc" + "4980647d-8a90-4165-9d3f-94a9889109e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,13 +51,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "e4f7d0c7-02e0-4e6f-bbfe-42d156c6fb58" + "4980647d-8a90-4165-9d3f-94a9889109e0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000648Z:e4f7d0c7-02e0-4e6f-bbfe-42d156c6fb58" + "WESTCENTRALUS:20220401T185521Z:4980647d-8a90-4165-9d3f-94a9889109e0" ], "Date": [ - "Tue, 13 Jul 2021 00:06:48 GMT" + "Fri, 01 Apr 2022 18:55:21 GMT" ], "Expires": [ "-1" @@ -70,19 +70,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?api-version=2020-12-01&asyncId=60ecd918a2ca601290f0cb29&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDkxOGEyY2E2MDEyOTBmMGNiMjkmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?api-version=2021-08-01&asyncId=62474a99217d200d902d7dab&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhOTkyMTdkMjAwZDkwMmQ3ZGFiJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95ea760c-5b00-439a-81ad-c35fc0be313f" + "f962f0e0-94d4-4ffe-847d-0c217f1e3a25" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/zQ=\"" + "\"AAAAAAAACuI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,25 +102,25 @@ "nosniff" ], "x-ms-request-id": [ - "3cdad73d-4bb5-4fd9-9cf7-22dcca62ecfd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6b5308d4-d9e7-4eed-9d08-8efe0734a0bb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "e8ea98be-abaa-4f1e-96be-e2f4541d7690" + "6b5308d4-d9e7-4eed-9d08-8efe0734a0bb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000718Z:e8ea98be-abaa-4f1e-96be-e2f4541d7690" + "WESTCENTRALUS:20220401T185551Z:6b5308d4-d9e7-4eed-9d08-8efe0734a0bb" ], "Date": [ - "Tue, 13 Jul 2021 00:07:17 GMT" + "Fri, 01 Apr 2022 18:55:51 GMT" ], "Content-Length": [ - "786" + "796" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5882\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2267\",\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/ps5882?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95ea760c-5b00-439a-81ad-c35fc0be313f" + "f962f0e0-94d4-4ffe-847d-0c217f1e3a25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/zQ=\"" + "\"AAAAAAAACuI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "71b3c622-893c-4494-a0d4-1f95ef2eb171" + "2838ad06-ce1c-46b0-ae53-b68c998722f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "d46f3bfb-a4e0-4004-a682-d2bf2c24e209" + "2838ad06-ce1c-46b0-ae53-b68c998722f3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000718Z:d46f3bfb-a4e0-4004-a682-d2bf2c24e209" + "WESTCENTRALUS:20220401T185552Z:2838ad06-ce1c-46b0-ae53-b68c998722f3" ], "Date": [ - "Tue, 13 Jul 2021 00:07:17 GMT" + "Fri, 01 Apr 2022 18:55:51 GMT" ], "Content-Length": [ - "786" + "796" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5882\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2267\",\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/ps5882/schemas?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c5229c2-2182-4039-9fba-9cd525eae999" + "6c706ba9-579a-4190-a2fe-b5f76a947c65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "nosniff" ], "x-ms-request-id": [ - "86f6343d-4d18-49a6-9b2d-cba5faa5c353" + "a32c9435-f1f7-4d57-a017-3604eed63ab4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,16 +240,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "6a71f2f0-a620-4585-9dae-7f36fd1ddff6" + "a32c9435-f1f7-4d57-a017-3604eed63ab4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000718Z:6a71f2f0-a620-4585-9dae-7f36fd1ddff6" + "WESTCENTRALUS:20220401T185552Z:a32c9435-f1f7-4d57-a017-3604eed63ab4" ], "Date": [ - "Tue, 13 Jul 2021 00:07:17 GMT" + "Fri, 01 Apr 2022 18:55:51 GMT" ], "Content-Length": [ - "6975" + "6985" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,26 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\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/ps5882/schemas?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bac5cb48-dbfe-4044-be2f-0ae9aa1a23e8" + "c268a59e-79f1-4ba6-b692-b55c85516398" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -294,7 +294,7 @@ "nosniff" ], "x-ms-request-id": [ - "fc22f2d8-88ce-4fd3-ba20-46cf86a055a5" + "22a84581-24fe-486e-a96f-d8ce43f7d63a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -303,16 +303,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "e8490aae-0ad2-46e1-89e5-a99d1c1c1ab0" + "22a84581-24fe-486e-a96f-d8ce43f7d63a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000749Z:e8490aae-0ad2-46e1-89e5-a99d1c1c1ab0" + "WESTCENTRALUS:20220401T185623Z:22a84581-24fe-486e-a96f-d8ce43f7d63a" ], "Date": [ - "Tue, 13 Jul 2021 00:07:48 GMT" + "Fri, 01 Apr 2022 18:56:22 GMT" ], "Content-Length": [ - "1960" + "1970" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,26 +321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\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/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "1299308a-b0b1-41ee-8447-af5371cd133f" + "17e22c65-ef80-413f-b378-6234d2b0287c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01&asyncId=60ecd937a2ca601290f0cb30&asyncCode=200" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01&asyncId=62474ab9217d200d902d7db2&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,7 +366,7 @@ "nosniff" ], "x-ms-request-id": [ - "dc498e22-127d-4b2a-b796-a7f4c71c6a6f" + "da2ca309-25b5-4faf-9f5b-415cf548005d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,13 +375,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "510e0d71-9936-4f36-a8b7-faae82c3180a" + "da2ca309-25b5-4faf-9f5b-415cf548005d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000719Z:510e0d71-9936-4f36-a8b7-faae82c3180a" + "WESTCENTRALUS:20220401T185553Z:da2ca309-25b5-4faf-9f5b-415cf548005d" ], "Date": [ - "Tue, 13 Jul 2021 00:07:18 GMT" + "Fri, 01 Apr 2022 18:55:52 GMT" ], "Expires": [ "-1" @@ -394,13 +394,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "6d08ec6f-3107-4eac-bae7-58a3abeeccfc" + "f4914a71-8c31-40e0-97e6-7f90f7f198a9" ], "If-Match": [ "*" @@ -409,10 +409,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -429,7 +429,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01&asyncId=60ecd955a2ca601290f0cb34&asyncCode=200" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01&asyncId=62474ad7217d200d902d7db6&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,7 +438,7 @@ "nosniff" ], "x-ms-request-id": [ - "1c4b0d93-a982-443f-b4b7-0048901a2b3c" + "acbbcbc8-f1bf-4efb-8545-4ff5ba5b2ab8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,13 +447,13 @@ "1197" ], "x-ms-correlation-request-id": [ - "576b7a0d-95b8-42c9-b25a-442abb49273d" + "acbbcbc8-f1bf-4efb-8545-4ff5ba5b2ab8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000750Z:576b7a0d-95b8-42c9-b25a-442abb49273d" + "WESTCENTRALUS:20220401T185623Z:acbbcbc8-f1bf-4efb-8545-4ff5ba5b2ab8" ], "Date": [ - "Tue, 13 Jul 2021 00:07:49 GMT" + "Fri, 01 Apr 2022 18:56:23 GMT" ], "Expires": [ "-1" @@ -466,19 +466,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01&asyncId=60ecd937a2ca601290f0cb30&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDkzN2EyY2E2MDEyOTBmMGNiMzAmYXN5bmNDb2RlPTIwMA==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01&asyncId=62474ab9217d200d902d7db2&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhYjkyMTdkMjAwZDkwMmQ3ZGIyJmFzeW5jQ29kZT0yMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1299308a-b0b1-41ee-8447-af5371cd133f" + "17e22c65-ef80-413f-b378-6234d2b0287c" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -489,7 +489,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/0k=\"" + "\"AAAAAAAACvc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,7 +498,7 @@ "nosniff" ], "x-ms-request-id": [ - "e1c3f74b-3467-4016-aa88-b7be05a51795" + "f8a1fb5f-7c61-4ef8-be36-dbdbf3dd3253" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -507,16 +507,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "6d647246-de7b-46c6-8d12-964ce7c98648" + "f8a1fb5f-7c61-4ef8-be36-dbdbf3dd3253" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000749Z:6d647246-de7b-46c6-8d12-964ce7c98648" + "WESTCENTRALUS:20220401T185623Z:f8a1fb5f-7c61-4ef8-be36-dbdbf3dd3253" ], "Date": [ - "Tue, 13 Jul 2021 00:07:48 GMT" + "Fri, 01 Apr 2022 18:56:22 GMT" ], "Content-Length": [ - "1876" + "1886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,26 +525,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\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/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42a1d561-1423-4723-b32e-77b41f861533" + "b5d1f84f-c8a2-43ab-9920-fa59d62211b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -555,7 +555,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/0k=\"" + "\"AAAAAAAACvc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,7 +564,7 @@ "nosniff" ], "x-ms-request-id": [ - "64e58306-7110-4266-9cd6-e0fcb2cd4f9e" + "eda209bc-1101-46f6-a85b-4a42e635d1b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -573,16 +573,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "ec5e55e8-52dc-4848-984a-78feaaa7e046" + "eda209bc-1101-46f6-a85b-4a42e635d1b0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000749Z:ec5e55e8-52dc-4848-984a-78feaaa7e046" + "WESTCENTRALUS:20220401T185623Z:eda209bc-1101-46f6-a85b-4a42e635d1b0" ], "Date": [ - "Tue, 13 Jul 2021 00:07:48 GMT" + "Fri, 01 Apr 2022 18:56:22 GMT" ], "Content-Length": [ - "1876" + "1886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,23 +591,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\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/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01&asyncId=60ecd955a2ca601290f0cb34&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDk1NWEyY2E2MDEyOTBmMGNiMzQmYXN5bmNDb2RlPTIwMA==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01&asyncId=62474ad7217d200d902d7db6&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhZDcyMTdkMjAwZDkwMmQ3ZGI2JmFzeW5jQ29kZT0yMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d08ec6f-3107-4eac-bae7-58a3abeeccfc" + "f4914a71-8c31-40e0-97e6-7f90f7f198a9" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -618,7 +618,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/00=\"" + "\"AAAAAAAACvs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -627,25 +627,25 @@ "nosniff" ], "x-ms-request-id": [ - "d1d19365-b721-4854-9e45-955fa1cc0bce" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "c244b529-fdfb-42f7-a054-52b947d8cfb2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "16b892a2-7207-4cb9-80c0-b60855927610" + "c244b529-fdfb-42f7-a054-52b947d8cfb2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000820Z:16b892a2-7207-4cb9-80c0-b60855927610" + "WESTCENTRALUS:20220401T185653Z:c244b529-fdfb-42f7-a054-52b947d8cfb2" ], "Date": [ - "Tue, 13 Jul 2021 00:08:19 GMT" + "Fri, 01 Apr 2022 18:56:53 GMT" ], "Content-Length": [ - "1855" + "1865" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,17 +654,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\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/ps5882?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Nz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef45c5f7-2cad-4ff5-a33b-1c0747701109" + "9de504a2-4787-4c71-b279-492c143f1b95" ], "If-Match": [ "*" @@ -673,10 +673,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -693,7 +693,7 @@ "nosniff" ], "x-ms-request-id": [ - "f3dc754d-ef67-47b4-981a-87b3bdfd9f30" + "87cdfe64-cc45-4a4f-b1d1-4f8643c84cf3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -702,13 +702,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "a36f9e0e-06d2-48e0-9f62-642d7302886c" + "87cdfe64-cc45-4a4f-b1d1-4f8643c84cf3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000820Z:a36f9e0e-06d2-48e0-9f62-642d7302886c" + "WESTCENTRALUS:20220401T185654Z:87cdfe64-cc45-4a4f-b1d1-4f8643c84cf3" ], "Date": [ - "Tue, 13 Jul 2021 00:08:19 GMT" + "Fri, 01 Apr 2022 18:56:53 GMT" ], "Expires": [ "-1" @@ -723,11 +723,11 @@ ], "Names": { "": [ - "ps5882", - "ps9374" + "ps2267", + "ps9636" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 077f929ac23a..0191fcd28f22 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "694059a0-5262-4fbc-8f5c-f5722044436f" + "345f8c9b-b3e4-4f50-a979-674eb976dfa3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,22 +33,22 @@ "nosniff" ], "x-ms-request-id": [ - "7a125e32-266d-4463-994b-4ce15dda918b" + "a1f26b65-326c-4e55-a246-89706c20c8aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "eb0d1e3f-01a6-4ec6-b347-e40b05f9f16d" + "a1f26b65-326c-4e55-a246-89706c20c8aa" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001753Z:eb0d1e3f-01a6-4ec6-b347-e40b05f9f16d" + "WESTCENTRALUS:20220401T190416Z:a1f26b65-326c-4e55-a246-89706c20c8aa" ], "Date": [ - "Tue, 13 Jul 2021 00:17:52 GMT" + "Fri, 01 Apr 2022 19:04:15 GMT" ], "Content-Length": [ "34" @@ -64,22 +64,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1439\",\r\n \"versionQueryName\": \"ps2476\",\r\n \"displayName\": \"ps9130\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3756\",\r\n \"versionQueryName\": \"ps9658\",\r\n \"displayName\": \"ps4216\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a691f1da-10c0-47a6-8772-11c0956f42e1" + "69497c1d-ef2c-4ec7-b5c7-328a9f48d59c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAYQ=\"" + "\"AAAAAAAADUY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,25 +105,25 @@ "nosniff" ], "x-ms-request-id": [ - "255df385-59aa-4ed3-9afe-31bb74f55762" + "4dda32fc-ac87-47b4-bf8f-7d7895480919" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "53261d75-f3a5-49b1-9ec6-54d8825d914d" + "4dda32fc-ac87-47b4-bf8f-7d7895480919" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001753Z:53261d75-f3a5-49b1-9ec6-54d8825d914d" + "WESTCENTRALUS:20220401T190416Z:4dda32fc-ac87-47b4-bf8f-7d7895480919" ], "Date": [ - "Tue, 13 Jul 2021 00:17:52 GMT" + "Fri, 01 Apr 2022 19:04:15 GMT" ], "Content-Length": [ - "447" + "459" ], "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/ps698\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps698\",\r\n \"properties\": {\r\n \"displayName\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2476\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2834\",\r\n \"properties\": {\r\n \"displayName\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps9658\",\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/ps698?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1439\",\r\n \"versionHeaderName\": \"ps5544\",\r\n \"displayName\": \"ps9130\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3756\",\r\n \"versionHeaderName\": \"ps7337\",\r\n \"displayName\": \"ps4216\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "92590e3a-f817-4f1f-92a9-7694a9bbe7e7" + "e4f298e9-3287-42b9-90ff-3f820281be50" ], "If-Match": [ "*" @@ -151,10 +151,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -171,7 +171,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAYg=\"" + "\"AAAAAAAADUo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,25 +180,25 @@ "nosniff" ], "x-ms-request-id": [ - "7a4e2a98-9862-4aca-9be8-f22f0f09e511" + "0c4ac8ee-3ed2-4f21-8ed1-6c89bdfb7d3b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "d7d10e5f-92cc-42ca-b1ff-8b308dd16a19" + "0c4ac8ee-3ed2-4f21-8ed1-6c89bdfb7d3b" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001754Z:d7d10e5f-92cc-42ca-b1ff-8b308dd16a19" + "WESTCENTRALUS:20220401T190416Z:0c4ac8ee-3ed2-4f21-8ed1-6c89bdfb7d3b" ], "Date": [ - "Tue, 13 Jul 2021 00:17:53 GMT" + "Fri, 01 Apr 2022 19:04:15 GMT" ], "Content-Length": [ - "448" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -207,26 +207,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps698\",\r\n \"properties\": {\r\n \"displayName\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps5544\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2834\",\r\n \"properties\": {\r\n \"displayName\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7337\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92590e3a-f817-4f1f-92a9-7694a9bbe7e7" + "e4f298e9-3287-42b9-90ff-3f820281be50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -237,7 +237,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAYQ=\"" + "\"AAAAAAAADUY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,25 +246,25 @@ "nosniff" ], "x-ms-request-id": [ - "3d7a4932-1b9a-4c0e-94b4-95324ce1de0a" + "41853da0-eb3b-4a62-99be-3d4d31101d75" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "33a1ae3a-b925-4890-adda-4afe14bef34f" + "41853da0-eb3b-4a62-99be-3d4d31101d75" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001754Z:33a1ae3a-b925-4890-adda-4afe14bef34f" + "WESTCENTRALUS:20220401T190416Z:41853da0-eb3b-4a62-99be-3d4d31101d75" ], "Date": [ - "Tue, 13 Jul 2021 00:17:53 GMT" + "Fri, 01 Apr 2022 19:04:15 GMT" ], "Content-Length": [ - "447" + "459" ], "Content-Type": [ "application/json; charset=utf-8" @@ -273,26 +273,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps698\",\r\n \"properties\": {\r\n \"displayName\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2476\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2834\",\r\n \"properties\": {\r\n \"displayName\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps9658\",\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/ps698?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69c44aee-95d2-4484-8152-566b4a4a0160" + "697c8822-dd3e-40a9-8c49-81d8cbcfbc90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -303,7 +303,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAYg=\"" + "\"AAAAAAAADUo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,25 +312,25 @@ "nosniff" ], "x-ms-request-id": [ - "148a735a-4f12-41e6-8b4f-23db93dc9c7b" + "50ef2ddb-adf2-40c7-b566-1f00ade13564" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "959ceac3-949b-4e9d-8aba-b71fe78f5c08" + "50ef2ddb-adf2-40c7-b566-1f00ade13564" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001754Z:959ceac3-949b-4e9d-8aba-b71fe78f5c08" + "WESTCENTRALUS:20220401T190417Z:50ef2ddb-adf2-40c7-b566-1f00ade13564" ], "Date": [ - "Tue, 13 Jul 2021 00:17:53 GMT" + "Fri, 01 Apr 2022 19:04:16 GMT" ], "Content-Length": [ - "448" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,26 +339,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps698\",\r\n \"properties\": {\r\n \"displayName\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps5544\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2834\",\r\n \"properties\": {\r\n \"displayName\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7337\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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": [ - "06568126-3f4f-4da1-8016-d6a9efb167e9" + "410ba509-d4fb-43bc-8761-ef72a7cc038d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,7 +375,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01&asyncId=60ecdbb2a2ca601290f0cbc7&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?api-version=2021-08-01&asyncId=62474cb1217d200d902d7e4b&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,22 +384,22 @@ "nosniff" ], "x-ms-request-id": [ - "886f6dbd-dbea-4fbc-a840-2504e473e350" + "cdd99f81-1f9c-4d20-a4a9-dba934f5b757" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "39bc2b99-b01b-4ea8-90e9-392f6da314c6" + "cdd99f81-1f9c-4d20-a4a9-dba934f5b757" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001755Z:39bc2b99-b01b-4ea8-90e9-392f6da314c6" + "WESTCENTRALUS:20220401T190417Z:cdd99f81-1f9c-4d20-a4a9-dba934f5b757" ], "Date": [ - "Tue, 13 Jul 2021 00:17:54 GMT" + "Fri, 01 Apr 2022 19:04:16 GMT" ], "Expires": [ "-1" @@ -412,19 +412,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01&asyncId=60ecdbb2a2ca601290f0cbc7&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGJiMmEyY2E2MDEyOTBmMGNiYzcmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?api-version=2021-08-01&asyncId=62474cb1217d200d902d7e4b&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMSZhc3luY0lkPTYyNDc0Y2IxMjE3ZDIwMGQ5MDJkN2U0YiZhc3luY0NvZGU9MjAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06568126-3f4f-4da1-8016-d6a9efb167e9" + "410ba509-d4fb-43bc-8761-ef72a7cc038d" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -435,7 +435,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAYw=\"" + "\"AAAAAAAADU4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,25 +444,25 @@ "nosniff" ], "x-ms-request-id": [ - "a3d6cbd7-6b7a-4257-b545-bc49648dae4a" + "8e406644-0461-437c-a0bd-2840711f240d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "588c5def-1de9-4a87-bf85-a2638f5067c0" + "8e406644-0461-437c-a0bd-2840711f240d" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001825Z:588c5def-1de9-4a87-bf85-a2638f5067c0" + "WESTCENTRALUS:20220401T190447Z:8e406644-0461-437c-a0bd-2840711f240d" ], "Date": [ - "Tue, 13 Jul 2021 00:18:25 GMT" + "Fri, 01 Apr 2022 19:04:47 GMT" ], "Content-Length": [ - "884" + "1207" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,26 +471,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8731\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps72\",\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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06568126-3f4f-4da1-8016-d6a9efb167e9" + "410ba509-d4fb-43bc-8761-ef72a7cc038d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -501,7 +501,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAYw=\"" + "\"AAAAAAAADU4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,25 +510,25 @@ "nosniff" ], "x-ms-request-id": [ - "322d9a2f-339d-42a8-96e8-3f8512ba3ff8" + "e381ed5e-629e-4f46-8886-9ce8a7a18d72" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "a1bb91d4-e3f6-41c0-8f7a-c181e982a986" + "e381ed5e-629e-4f46-8886-9ce8a7a18d72" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001825Z:a1bb91d4-e3f6-41c0-8f7a-c181e982a986" + "WESTCENTRALUS:20220401T190447Z:e381ed5e-629e-4f46-8886-9ce8a7a18d72" ], "Date": [ - "Tue, 13 Jul 2021 00:18:25 GMT" + "Fri, 01 Apr 2022 19:04:47 GMT" ], "Content-Length": [ - "884" + "1207" ], "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/ps8731\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8731\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps72\",\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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731%3Brev%3D1?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72%3Brev%3D1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzIlM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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\": \"ps1439\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\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\": \"ps3756\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\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": [ - "8ae96afe-6d9d-42e4-ac8c-b50bfc6245a1" + "8c3cad3e-4e48-4000-92d0-4a142e26e08b" ], "If-Match": [ "*" @@ -556,16 +556,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "836" + "847" ] }, "ResponseHeaders": { @@ -576,7 +576,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAbU=\"" + "\"AAAAAAAADXg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,25 +585,25 @@ "nosniff" ], "x-ms-request-id": [ - "e6647eae-b2d2-43d2-885b-7b2587dc12fe" + "9c3e894a-f868-465f-9710-ac33769bf842" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "23b6d88c-57d8-4012-9388-b263bbf2c621" + "9c3e894a-f868-465f-9710-ac33769bf842" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001826Z:23b6d88c-57d8-4012-9388-b263bbf2c621" + "WESTCENTRALUS:20220401T190448Z:9c3e894a-f868-465f-9710-ac33769bf842" ], "Date": [ - "Tue, 13 Jul 2021 00:18:26 GMT" + "Fri, 01 Apr 2022 19:04:47 GMT" ], "Content-Length": [ - "1520" + "1548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -612,17 +612,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8731\",\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\": \"ps1439\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"name\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps5544\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps72\",\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\": \"ps3756\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"name\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7337\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzI/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3e2482c-eab0-41e7-986b-b4ff11536ec5" + "20db40a1-c07f-47ad-9680-ea62d3087531" ], "If-Match": [ "*" @@ -631,10 +631,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -651,7 +651,7 @@ "nosniff" ], "x-ms-request-id": [ - "77c09b37-a412-4db7-8fb7-fc91b2c91b5d" + "3ebd05a4-14bf-49a9-b706-6215e47cb6a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,13 +660,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "aa429dba-606a-4bd6-b2bb-0c4f9f5e47e2" + "3ebd05a4-14bf-49a9-b706-6215e47cb6a9" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001826Z:aa429dba-606a-4bd6-b2bb-0c4f9f5e47e2" + "WESTCENTRALUS:20220401T190448Z:3ebd05a4-14bf-49a9-b706-6215e47cb6a9" ], "Date": [ - "Tue, 13 Jul 2021 00:18:26 GMT" + "Fri, 01 Apr 2022 19:04:48 GMT" ], "Expires": [ "-1" @@ -679,13 +679,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c04f2ec-1226-4a02-9322-5de9234619ae" + "b73d081a-6b87-4f52-bb2c-4e41c04fe3d6" ], "If-Match": [ "*" @@ -694,10 +694,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -714,7 +714,7 @@ "nosniff" ], "x-ms-request-id": [ - "ef2a74ed-5877-4224-bf6c-8d71ed836b2b" + "faed0eb4-f8cd-41ba-a88e-14e8a47ecb4e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -723,13 +723,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "f30aedbf-a04a-4e70-ac4e-fe8cdf51392d" + "faed0eb4-f8cd-41ba-a88e-14e8a47ecb4e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001826Z:f30aedbf-a04a-4e70-ac4e-fe8cdf51392d" + "WESTCENTRALUS:20220401T190448Z:faed0eb4-f8cd-41ba-a88e-14e8a47ecb4e" ], "Date": [ - "Tue, 13 Jul 2021 00:18:26 GMT" + "Fri, 01 Apr 2022 19:04:48 GMT" ], "Expires": [ "-1" @@ -741,15 +741,15 @@ ], "Names": { "": [ - "ps8731", - "ps698", - "ps9130", - "ps2476", - "ps1439", - "ps5544" + "ps72", + "ps2834", + "ps4216", + "ps9658", + "ps3756", + "ps7337" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 5cfd4596db91..555e4fa0436b 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e749a228-d30f-4a4b-b697-439a906a9034" + "61af6515-6c23-4fba-8c18-1b84f024d1e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "d4920a65-5591-4800-9272-92b64ec02c97" + "b9a59879-e551-404c-8f8a-7a37d4441140" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,13 +42,13 @@ "11999" ], "x-ms-correlation-request-id": [ - "814c07b0-1660-4b5d-94c3-3b0eabdfca78" + "b9a59879-e551-404c-8f8a-7a37d4441140" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001905Z:814c07b0-1660-4b5d-94c3-3b0eabdfca78" + "WESTUS:20220401T190530Z:b9a59879-e551-404c-8f8a-7a37d4441140" ], "Date": [ - "Tue, 13 Jul 2021 00:19:04 GMT" + "Fri, 01 Apr 2022 19:05:29 GMT" ], "Content-Length": [ "34" @@ -64,22 +64,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8685\",\r\n \"versionQueryName\": \"ps6390\",\r\n \"displayName\": \"ps1973\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1419\",\r\n \"versionQueryName\": \"ps8386\",\r\n \"displayName\": \"ps6116\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e7277a6c-b6bd-40fe-a8e1-45b05ffef395" + "6ed4ec1b-fd35-4ce1-b832-92a325aa6ff0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAdA=\"" + "\"AAAAAAAADZM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "x-ms-request-id": [ - "0a826adf-7105-4e20-8356-463f5bde287f" + "12080afe-906f-4624-bf16-dd6c8c8b77c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,16 +114,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "4113f4d5-7050-4b0e-a19f-2385f1ed05da" + "12080afe-906f-4624-bf16-dd6c8c8b77c9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001905Z:4113f4d5-7050-4b0e-a19f-2385f1ed05da" + "WESTUS:20220401T190530Z:12080afe-906f-4624-bf16-dd6c8c8b77c9" ], "Date": [ - "Tue, 13 Jul 2021 00:19:04 GMT" + "Fri, 01 Apr 2022 19:05:29 GMT" ], "Content-Length": [ - "449" + "459" ], "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/ps4945\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4945\",\r\n \"properties\": {\r\n \"displayName\": \"ps1973\",\r\n \"description\": \"ps8685\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps6390\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7374\",\r\n \"properties\": {\r\n \"displayName\": \"ps6116\",\r\n \"description\": \"ps1419\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8386\",\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/ps4945?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8685\",\r\n \"versionHeaderName\": \"ps4909\",\r\n \"displayName\": \"ps1973\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1419\",\r\n \"versionHeaderName\": \"ps3586\",\r\n \"displayName\": \"ps6116\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ce99e6cf-242c-43ab-b4fe-5b72ebd2ae1a" + "53ac0f26-a3e7-46cc-ac15-70383e1ac025" ], "If-Match": [ "*" @@ -151,10 +151,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -171,7 +171,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAdQ=\"" + "\"AAAAAAAADZc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,7 +180,7 @@ "nosniff" ], "x-ms-request-id": [ - "73731ab5-b0ca-4aff-a4e6-8f595ba4c7ef" + "042afe04-81d8-4b7d-82f2-142a94fcc3d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -189,16 +189,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "f9f54d6d-3300-4e42-87dc-3d238ea1470d" + "042afe04-81d8-4b7d-82f2-142a94fcc3d5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001906Z:f9f54d6d-3300-4e42-87dc-3d238ea1470d" + "WESTUS:20220401T190531Z:042afe04-81d8-4b7d-82f2-142a94fcc3d5" ], "Date": [ - "Tue, 13 Jul 2021 00:19:05 GMT" + "Fri, 01 Apr 2022 19:05:30 GMT" ], "Content-Length": [ - "450" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -207,26 +207,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4945\",\r\n \"properties\": {\r\n \"displayName\": \"ps1973\",\r\n \"description\": \"ps8685\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps4909\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7374\",\r\n \"properties\": {\r\n \"displayName\": \"ps6116\",\r\n \"description\": \"ps1419\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps3586\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce99e6cf-242c-43ab-b4fe-5b72ebd2ae1a" + "53ac0f26-a3e7-46cc-ac15-70383e1ac025" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -237,7 +237,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAdA=\"" + "\"AAAAAAAADZM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,7 +246,7 @@ "nosniff" ], "x-ms-request-id": [ - "08afc377-4f45-43a2-97fb-50688b569681" + "447993f6-9703-450f-81f5-3bab4950b5a4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -255,16 +255,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "71a69b0d-ceff-47a9-a0f9-c42705248919" + "447993f6-9703-450f-81f5-3bab4950b5a4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001905Z:71a69b0d-ceff-47a9-a0f9-c42705248919" + "WESTUS:20220401T190530Z:447993f6-9703-450f-81f5-3bab4950b5a4" ], "Date": [ - "Tue, 13 Jul 2021 00:19:05 GMT" + "Fri, 01 Apr 2022 19:05:30 GMT" ], "Content-Length": [ - "449" + "459" ], "Content-Type": [ "application/json; charset=utf-8" @@ -273,26 +273,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4945\",\r\n \"properties\": {\r\n \"displayName\": \"ps1973\",\r\n \"description\": \"ps8685\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps6390\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7374\",\r\n \"properties\": {\r\n \"displayName\": \"ps6116\",\r\n \"description\": \"ps1419\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8386\",\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/ps4945?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee400bcf-95ec-4bb6-880b-99676147b782" + "fec4d081-5e72-4159-b7f5-11642b2589ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -303,7 +303,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAdQ=\"" + "\"AAAAAAAADZc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,7 +312,7 @@ "nosniff" ], "x-ms-request-id": [ - "afffbc59-bc8a-4090-a7cd-f38000498a09" + "1406c205-f4cc-4a40-9fc9-5b85ecac777b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -321,16 +321,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "3f2a578b-d642-4f0c-b966-e53846510cf8" + "1406c205-f4cc-4a40-9fc9-5b85ecac777b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001906Z:3f2a578b-d642-4f0c-b966-e53846510cf8" + "WESTUS:20220401T190531Z:1406c205-f4cc-4a40-9fc9-5b85ecac777b" ], "Date": [ - "Tue, 13 Jul 2021 00:19:05 GMT" + "Fri, 01 Apr 2022 19:05:30 GMT" ], "Content-Length": [ - "450" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,26 +339,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4945\",\r\n \"properties\": {\r\n \"displayName\": \"ps1973\",\r\n \"description\": \"ps8685\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps4909\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7374\",\r\n \"properties\": {\r\n \"displayName\": \"ps6116\",\r\n \"description\": \"ps1419\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps3586\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzOTExND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps4945\",\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/ps7374\",\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": [ - "58e4c51f-f9e1-4c47-bafd-764590fd9440" + "180ba2ce-a711-4db3-a954-ea646048be89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,7 +375,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01&asyncId=60ecdbfaa2ca601290f0cbd7&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?api-version=2021-08-01&asyncId=62474cfb217d200d902d7e5b&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,7 +384,7 @@ "nosniff" ], "x-ms-request-id": [ - "e25fa03f-b12f-4a0a-9d1d-acdc37ba7034" + "95fe3437-19fd-4075-9065-bd21e732824f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -393,13 +393,13 @@ "1197" ], "x-ms-correlation-request-id": [ - "99fe33ec-822d-4237-bcc7-baa8205ff155" + "95fe3437-19fd-4075-9065-bd21e732824f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001906Z:99fe33ec-822d-4237-bcc7-baa8205ff155" + "WESTUS:20220401T190531Z:95fe3437-19fd-4075-9065-bd21e732824f" ], "Date": [ - "Tue, 13 Jul 2021 00:19:05 GMT" + "Fri, 01 Apr 2022 19:05:30 GMT" ], "Expires": [ "-1" @@ -412,19 +412,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01&asyncId=60ecdbfaa2ca601290f0cbd7&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGJmYWEyY2E2MDEyOTBmMGNiZDcmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?api-version=2021-08-01&asyncId=62474cfb217d200d902d7e5b&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzOTExND9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRjZmIyMTdkMjAwZDkwMmQ3ZTViJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e4c51f-f9e1-4c47-bafd-764590fd9440" + "180ba2ce-a711-4db3-a954-ea646048be89" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -435,7 +435,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAdg=\"" + "\"AAAAAAAADZs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,7 +444,7 @@ "nosniff" ], "x-ms-request-id": [ - "b8cc24c7-7eef-4bef-871d-921c99149b55" + "03044a25-c2f7-4295-9cfd-f341ce2fdb7f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -453,16 +453,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "4b0b6328-953a-47d3-8674-c788eb84e230" + "03044a25-c2f7-4295-9cfd-f341ce2fdb7f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001936Z:4b0b6328-953a-47d3-8674-c788eb84e230" + "WESTUS:20220401T190601Z:03044a25-c2f7-4295-9cfd-f341ce2fdb7f" ], "Date": [ - "Tue, 13 Jul 2021 00:19:36 GMT" + "Fri, 01 Apr 2022 19:06:01 GMT" ], "Content-Length": [ - "1102" + "1439" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,26 +471,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4334\",\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/ps4945\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9114\",\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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzOTExND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e4c51f-f9e1-4c47-bafd-764590fd9440" + "180ba2ce-a711-4db3-a954-ea646048be89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -501,7 +501,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAdg=\"" + "\"AAAAAAAADZs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,7 +510,7 @@ "nosniff" ], "x-ms-request-id": [ - "76297f5d-8d46-4ba8-a3f6-d6840071e6dd" + "06d8f844-54bd-467a-9a67-a289221311ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -519,16 +519,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "71ecb2a4-7048-4a00-89cb-efc58e80b647" + "06d8f844-54bd-467a-9a67-a289221311ba" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001936Z:71ecb2a4-7048-4a00-89cb-efc58e80b647" + "WESTUS:20220401T190601Z:06d8f844-54bd-467a-9a67-a289221311ba" ], "Date": [ - "Tue, 13 Jul 2021 00:19:36 GMT" + "Fri, 01 Apr 2022 19:06:01 GMT" ], "Content-Length": [ - "1102" + "1439" ], "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/ps4334\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4334\",\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/ps4945\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9114\",\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 \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\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 \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzOTExND9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c024c112-540e-4327-9d4b-33d3f8b01330" + "ee6359e0-9da6-4641-9b81-1a9a445dcda3" ], "If-Match": [ "*" @@ -556,10 +556,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -576,7 +576,7 @@ "nosniff" ], "x-ms-request-id": [ - "62fdf8f2-80fb-4af5-98a4-7373b359d0c9" + "3c6b6ef5-da76-496f-a1ee-281a6bd61822" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -585,13 +585,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "040f00d3-4e61-4347-ad89-0ff04b060ff2" + "3c6b6ef5-da76-496f-a1ee-281a6bd61822" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001937Z:040f00d3-4e61-4347-ad89-0ff04b060ff2" + "WESTUS:20220401T190602Z:3c6b6ef5-da76-496f-a1ee-281a6bd61822" ], "Date": [ - "Tue, 13 Jul 2021 00:19:37 GMT" + "Fri, 01 Apr 2022 19:06:01 GMT" ], "Expires": [ "-1" @@ -604,13 +604,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ab4006a-f304-4184-85c9-f2c55d531721" + "990a7c40-b038-4042-bfcf-d08d4a9a353f" ], "If-Match": [ "*" @@ -619,10 +619,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -639,7 +639,7 @@ "nosniff" ], "x-ms-request-id": [ - "29d5e838-828f-4e1b-bff8-b6d9d7aa13f3" + "f245b85f-3437-4e72-8d0c-5425c88cb2f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -648,13 +648,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "0f979dc0-511f-462e-8f5e-f5af3a04f1d3" + "f245b85f-3437-4e72-8d0c-5425c88cb2f4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001937Z:0f979dc0-511f-462e-8f5e-f5af3a04f1d3" + "WESTUS:20220401T190602Z:f245b85f-3437-4e72-8d0c-5425c88cb2f4" ], "Date": [ - "Tue, 13 Jul 2021 00:19:37 GMT" + "Fri, 01 Apr 2022 19:06:01 GMT" ], "Expires": [ "-1" @@ -666,15 +666,15 @@ ], "Names": { "": [ - "ps4334", - "ps4945", - "ps1973", - "ps6390", - "ps8685", - "ps4909" + "ps9114", + "ps7374", + "ps6116", + "ps8386", + "ps1419", + "ps3586" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 fe7e9a56bd9a..b06b843bc232 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94f784f2-1ce4-4c47-ad73-8ae10f8147fc" + "7a1828fc-bca2-40bb-8ca7-edd4e8c17533" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "58031d36-b450-43a5-b51c-3d3d9f687c57" + "6a8452c1-eb49-4be5-bae8-0c54d0c38dd5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,13 +42,13 @@ "11999" ], "x-ms-correlation-request-id": [ - "2b1576c8-c74b-42a4-9270-d47c65dae028" + "6a8452c1-eb49-4be5-bae8-0c54d0c38dd5" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000711Z:2b1576c8-c74b-42a4-9270-d47c65dae028" + "WESTUS:20220401T185905Z:6a8452c1-eb49-4be5-bae8-0c54d0c38dd5" ], "Date": [ - "Wed, 14 Jul 2021 00:07:10 GMT" + "Fri, 01 Apr 2022 18:59:05 GMT" ], "Content-Length": [ "34" @@ -64,28 +64,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps5403\",\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\": \"ps6844\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\",\r\n \"displayName\": \"ps1039\",\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\": \"ps7996\",\r\n \"clientSecret\": \"ps8283\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4362\",\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\": \"ps3573\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\",\r\n \"displayName\": \"ps143\",\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\": \"ps3310\",\r\n \"clientSecret\": \"ps4659\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a61ee464-64ed-40c9-a483-129c7a28dbb8" + "552bbc2e-b091-45aa-9e2f-adbb5ed854e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "902" + "901" ] }, "ResponseHeaders": { @@ -96,7 +96,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAmQ=\"" + "\"AAAAAAAAC6k=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "x-ms-request-id": [ - "6b559e7a-1850-4d06-85a9-2c4578395516" + "e0994b49-9aba-4a56-bda8-113f73ecd5bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,16 +114,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "4a45c406-f542-46a6-bb1a-cf3b0ff8c99e" + "e0994b49-9aba-4a56-bda8-113f73ecd5bc" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000712Z:4a45c406-f542-46a6-bb1a-cf3b0ff8c99e" + "WESTUS:20220401T185907Z:e0994b49-9aba-4a56-bda8-113f73ecd5bc" ], "Date": [ - "Wed, 14 Jul 2021 00:07:11 GMT" + "Fri, 01 Apr 2022 18:59:07 GMT" ], "Content-Length": [ - "1175" + "1182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,26 +132,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps1039\",\r\n \"description\": \"ps5403\",\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\": \"ps6844\",\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\": \"ps7996\",\r\n \"clientSecret\": \"ps8283\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps143\",\r\n \"description\": \"ps4362\",\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\": \"ps3573\",\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\": \"ps3310\",\r\n \"clientSecret\": \"ps4659\",\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe95c4ce-94d7-483e-8a98-6d553eef00ee" + "49557a24-0c20-4937-9fad-b69ca6f3c223" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAmQ=\"" + "\"AAAAAAAAC6k=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "x-ms-request-id": [ - "3fc5e704-7a9d-47fe-9a0d-5767eaa094aa" + "73ed675a-7f4f-4d91-a6a0-36e1f7a36d08" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -180,16 +180,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "0ab800fb-eeb4-4d6c-8adf-159af5574cc7" + "73ed675a-7f4f-4d91-a6a0-36e1f7a36d08" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000712Z:0ab800fb-eeb4-4d6c-8adf-159af5574cc7" + "WESTUS:20220401T185907Z:73ed675a-7f4f-4d91-a6a0-36e1f7a36d08" ], "Date": [ - "Wed, 14 Jul 2021 00:07:11 GMT" + "Fri, 01 Apr 2022 18:59:07 GMT" ], "Content-Length": [ - "1064" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,26 +198,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps1039\",\r\n \"description\": \"ps5403\",\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\": \"ps6844\",\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\": \"ps7996\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps143\",\r\n \"description\": \"ps4362\",\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\": \"ps3573\",\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\": \"ps3310\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d135c897-7033-4c25-9de5-abb4974921c1" + "e75cbb85-492d-4f4d-bf74-5697e74f2d87" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -228,7 +228,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAmU=\"" + "\"AAAAAAAAC6o=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "x-ms-request-id": [ - "b4e7b9eb-9fbe-4dae-9e5b-5aa68fdd7027" + "84beb42d-f5bb-4b03-819a-181de0ec60b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -246,16 +246,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "99423219-b7a9-452f-96a1-2d27a11438b7" + "84beb42d-f5bb-4b03-819a-181de0ec60b0" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000713Z:99423219-b7a9-452f-96a1-2d27a11438b7" + "WESTUS:20220401T185908Z:84beb42d-f5bb-4b03-819a-181de0ec60b0" ], "Date": [ - "Wed, 14 Jul 2021 00:07:12 GMT" + "Fri, 01 Apr 2022 18:59:08 GMT" ], "Content-Length": [ - "1038" + "1046" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,26 +264,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps9198\",\r\n \"description\": \"ps8500\",\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\": \"ps9827\",\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\": \"ps5477\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps8099\",\r\n \"description\": \"ps8125\",\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\": \"ps8853\",\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\": \"ps5599\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e66bf703-7247-4414-b9b9-6898d3912c89" + "84921373-f46d-423b-af7d-f5e3e3d55c78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -294,7 +294,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAmU=\"" + "\"AAAAAAAAC6o=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "x-ms-request-id": [ - "0f1bd741-c2fe-4804-afac-6acf87745f63" + "3bb516b7-8f5d-4661-b9ce-a90d879d38cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,16 +312,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "7d051f2b-ecab-448f-a312-36431635bdb4" + "3bb516b7-8f5d-4661-b9ce-a90d879d38cf" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000713Z:7d051f2b-ecab-448f-a312-36431635bdb4" + "WESTUS:20220401T185908Z:3bb516b7-8f5d-4661-b9ce-a90d879d38cf" ], "Date": [ - "Wed, 14 Jul 2021 00:07:12 GMT" + "Fri, 01 Apr 2022 18:59:08 GMT" ], "Content-Length": [ - "1038" + "1046" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,26 +330,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps9198\",\r\n \"description\": \"ps8500\",\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\": \"ps9827\",\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\": \"ps5477\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps8099\",\r\n \"description\": \"ps8125\",\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\": \"ps8853\",\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\": \"ps5599\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3402561-6f11-4e07-9248-e8d889facc90" + "ef5d19b6-d5f4-4691-a5bd-b2c4c8043b92" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -366,7 +366,7 @@ "nosniff" ], "x-ms-request-id": [ - "e7a441a4-badc-4141-a62d-2e188b1f6dfa" + "c0d27e22-7e07-4123-bd31-7d58c75c502c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,13 +375,13 @@ "11995" ], "x-ms-correlation-request-id": [ - "238bd3a5-093c-422f-bb95-3669c8a0f615" + "c0d27e22-7e07-4123-bd31-7d58c75c502c" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000713Z:238bd3a5-093c-422f-bb95-3669c8a0f615" + "WESTUS:20220401T185909Z:c0d27e22-7e07-4123-bd31-7d58c75c502c" ], "Date": [ - "Wed, 14 Jul 2021 00:07:13 GMT" + "Fri, 01 Apr 2022 18:59:09 GMT" ], "Content-Length": [ "101" @@ -397,22 +397,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNi9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczNC9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e45d311b-4d0a-4795-9e3b-f558f2c005bf" + "5ec22b6a-7b92-4178-9d34-0c7de6984c98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -423,7 +423,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAmQ=\"" + "\"AAAAAAAAC6k=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +432,7 @@ "nosniff" ], "x-ms-request-id": [ - "5a3b10c0-4d13-4c15-907d-9bb3f1e2a0d5" + "a4271423-25d0-497e-9c1e-2dfccb088a1a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,13 +441,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "c9a1117a-0917-4677-a7ff-2c13a59d759d" + "a4271423-25d0-497e-9c1e-2dfccb088a1a" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000712Z:c9a1117a-0917-4677-a7ff-2c13a59d759d" + "WESTUS:20220401T185908Z:a4271423-25d0-497e-9c1e-2dfccb088a1a" ], "Date": [ - "Wed, 14 Jul 2021 00:07:11 GMT" + "Fri, 01 Apr 2022 18:59:07 GMT" ], "Content-Length": [ "91" @@ -459,26 +459,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps8283\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps4659\",\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNi9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczNC9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19b43e93-ea72-49bb-b8f6-62b19adfa338" + "c5134751-6d18-4222-a82e-9435e0bd3a3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -489,7 +489,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAmU=\"" + "\"AAAAAAAAC6o=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,7 +498,7 @@ "nosniff" ], "x-ms-request-id": [ - "2e1cd02a-1476-4beb-aa7e-621a5e0c19ec" + "2ac41547-f876-471f-90e6-9f8bb2585997" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -507,13 +507,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "c2e27a56-6b74-4b48-beaa-cb7de8e8052d" + "2ac41547-f876-471f-90e6-9f8bb2585997" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000713Z:c2e27a56-6b74-4b48-beaa-cb7de8e8052d" + "WESTUS:20220401T185908Z:2ac41547-f876-471f-90e6-9f8bb2585997" ], "Date": [ - "Wed, 14 Jul 2021 00:07:12 GMT" + "Fri, 01 Apr 2022 18:59:08 GMT" ], "Content-Length": [ "91" @@ -525,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps1013\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps7578\",\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8500\",\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\": \"ps9827\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"displayName\": \"ps9198\",\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\": \"ps5477\",\r\n \"clientSecret\": \"ps1013\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8125\",\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\": \"ps8853\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"displayName\": \"ps8099\",\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\": \"ps5599\",\r\n \"clientSecret\": \"ps7578\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d135c897-7033-4c25-9de5-abb4974921c1" + "e75cbb85-492d-4f4d-bf74-5697e74f2d87" ], "If-Match": [ "*" @@ -544,10 +544,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,7 +564,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAmU=\"" + "\"AAAAAAAAC6o=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,7 +573,7 @@ "nosniff" ], "x-ms-request-id": [ - "5a24984a-3f87-48bc-a6ed-e67cfe506d4e" + "0ef8eafa-c1e4-407d-a3df-18d130c2c7a5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -582,16 +582,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "3ff40f0e-4676-48e8-baaa-25cda86e68ce" + "0ef8eafa-c1e4-407d-a3df-18d130c2c7a5" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000713Z:3ff40f0e-4676-48e8-baaa-25cda86e68ce" + "WESTUS:20220401T185908Z:0ef8eafa-c1e4-407d-a3df-18d130c2c7a5" ], "Date": [ - "Wed, 14 Jul 2021 00:07:12 GMT" + "Fri, 01 Apr 2022 18:59:08 GMT" ], "Content-Length": [ - "1149" + "1157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,17 +600,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps9198\",\r\n \"description\": \"ps8500\",\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\": \"ps9827\",\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\": \"ps5477\",\r\n \"clientSecret\": \"ps1013\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps8099\",\r\n \"description\": \"ps8125\",\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\": \"ps8853\",\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\": \"ps5599\",\r\n \"clientSecret\": \"ps7578\",\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a26da834-74fb-4e05-96e5-d1d40ec4c5c9" + "de354283-98f6-4a91-99f6-5c786239b8f0" ], "If-Match": [ "*" @@ -619,10 +619,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -639,7 +639,7 @@ "nosniff" ], "x-ms-request-id": [ - "524b791a-012f-47e4-b506-ef3d16cf7d82" + "ed216de5-a5a0-4ef9-8a0f-a3746e68d22e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -648,13 +648,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "c96701c4-76b7-42e4-b368-efc12c88ec68" + "ed216de5-a5a0-4ef9-8a0f-a3746e68d22e" ], "x-ms-routing-request-id": [ - "WESTUS:20210714T000713Z:c96701c4-76b7-42e4-b368-efc12c88ec68" + "WESTUS:20220401T185909Z:ed216de5-a5a0-4ef9-8a0f-a3746e68d22e" ], "Date": [ - "Wed, 14 Jul 2021 00:07:12 GMT" + "Fri, 01 Apr 2022 18:59:09 GMT" ], "Expires": [ "-1" @@ -669,22 +669,22 @@ ], "Names": { "": [ - "ps9706", - "ps1039", - "ps6844", - "ps7996", - "ps5403", - "ps8283", - "ps7119", - "ps7695", - "ps9198", - "ps9827", - "ps5477", - "ps8500", - "ps1013" + "ps734", + "ps143", + "ps3573", + "ps3310", + "ps4362", + "ps4659", + "ps5177", + "ps7661", + "ps8099", + "ps8853", + "ps5599", + "ps8125", + "ps7578" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 0f476449f4d2..102819565874 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps9399\",\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps4679\",\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}", "RequestHeaders": { "x-ms-client-request-id": [ - "ebc07f0b-b4a8-4b00-aa6c-d412c431c46a" + "cbbffe55-5702-4540-8adc-3af1bb91e8e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAFw=\"" + "\"AAAAAAAADCE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,25 +42,25 @@ "nosniff" ], "x-ms-request-id": [ - "b48f99cb-e407-47a5-ae80-b2755468f377" + "defa0cb8-73e2-426e-a6d2-3c8884947eb2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "1639c68f-4eb1-4a1c-9e1a-86a2ac60e235" + "defa0cb8-73e2-426e-a6d2-3c8884947eb2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001334Z:1639c68f-4eb1-4a1c-9e1a-86a2ac60e235" + "WESTCENTRALUS:20220401T190019Z:defa0cb8-73e2-426e-a6d2-3c8884947eb2" ], "Date": [ - "Tue, 13 Jul 2021 00:13:33 GMT" + "Fri, 01 Apr 2022 19:00:18 GMT" ], "Content-Length": [ - "822" + "834" ], "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/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps9399\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps4679\",\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7167\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3476\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2947d8c1-6649-4896-b70d-27f1b3635daa" + "bbf31a9d-55eb-4baf-b67a-b65575e4dcc6" ], "If-Match": [ "*" @@ -88,10 +88,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -108,7 +108,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAF8=\"" + "\"AAAAAAAADCQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,25 +117,25 @@ "nosniff" ], "x-ms-request-id": [ - "e17065c1-5969-495e-bfa1-52c7970e7fa2" + "974f6bcd-c10a-422a-b6dd-5fded312f4bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "611b3857-c8f2-4f6e-ad52-353cd0445d7f" + "974f6bcd-c10a-422a-b6dd-5fded312f4bb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001335Z:611b3857-c8f2-4f6e-ad52-353cd0445d7f" + "WESTCENTRALUS:20220401T190020Z:974f6bcd-c10a-422a-b6dd-5fded312f4bb" ], "Date": [ - "Tue, 13 Jul 2021 00:13:34 GMT" + "Fri, 01 Apr 2022 19:00:19 GMT" ], "Content-Length": [ - "822" + "834" ], "Content-Type": [ "application/json; charset=utf-8" @@ -144,17 +144,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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": [ - "36609b2b-4b49-4121-b2de-65c5ae51d320" + "391522e6-a690-40c4-aad5-598353f3c84a" ], "If-Match": [ "*" @@ -163,10 +163,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,7 +183,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAGM=\"" + "\"AAAAAAAADCg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -192,25 +192,25 @@ "nosniff" ], "x-ms-request-id": [ - "52c4df55-23fa-4bd8-adf8-58679d83220a" + "443100f9-9fcb-43a6-9550-3ffb1f2ea644" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "9d3bd44d-50ee-4607-a203-db9ba6d5a055" + "443100f9-9fcb-43a6-9550-3ffb1f2ea644" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001336Z:9d3bd44d-50ee-4607-a203-db9ba6d5a055" + "WESTCENTRALUS:20220401T190022Z:443100f9-9fcb-43a6-9550-3ffb1f2ea644" ], "Date": [ - "Tue, 13 Jul 2021 00:13:36 GMT" + "Fri, 01 Apr 2022 19:00:22 GMT" ], "Content-Length": [ - "951" + "963" ], "Content-Type": [ "application/json; charset=utf-8" @@ -219,26 +219,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2947d8c1-6649-4896-b70d-27f1b3635daa" + "bbf31a9d-55eb-4baf-b67a-b65575e4dcc6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -249,7 +249,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAF8=\"" + "\"AAAAAAAADCQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,25 +258,25 @@ "nosniff" ], "x-ms-request-id": [ - "eaec136d-e218-4663-8f12-b256d3353618" + "0f198846-1af2-48a1-a4a3-8f674f8ebeee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "b990dcf3-cbf0-4f8b-a8e3-5feefa6f8dc4" + "0f198846-1af2-48a1-a4a3-8f674f8ebeee" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001335Z:b990dcf3-cbf0-4f8b-a8e3-5feefa6f8dc4" + "WESTCENTRALUS:20220401T190020Z:0f198846-1af2-48a1-a4a3-8f674f8ebeee" ], "Date": [ - "Tue, 13 Jul 2021 00:13:34 GMT" + "Fri, 01 Apr 2022 19:00:20 GMT" ], "Content-Length": [ - "822" + "834" ], "Content-Type": [ "application/json; charset=utf-8" @@ -285,26 +285,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "828e7d3e-9237-454d-80b0-7d2f539bc7a2" + "616ea130-cdb5-48d0-a028-f9b74eb5d0b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -315,7 +315,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAF8=\"" + "\"AAAAAAAADCQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,25 +324,25 @@ "nosniff" ], "x-ms-request-id": [ - "4e90b082-fd04-4843-9f39-8fa24556e142" + "dbcf26b6-7880-4d4c-92e7-433a23359e77" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-correlation-request-id": [ - "cd824cfe-5149-4d6f-a76c-78414dabc23e" + "dbcf26b6-7880-4d4c-92e7-433a23359e77" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001336Z:cd824cfe-5149-4d6f-a76c-78414dabc23e" + "WESTCENTRALUS:20220401T190022Z:dbcf26b6-7880-4d4c-92e7-433a23359e77" ], "Date": [ - "Tue, 13 Jul 2021 00:13:36 GMT" + "Fri, 01 Apr 2022 19:00:21 GMT" ], "Content-Length": [ - "822" + "834" ], "Content-Type": [ "application/json; charset=utf-8" @@ -351,26 +351,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36609b2b-4b49-4121-b2de-65c5ae51d320" + "391522e6-a690-40c4-aad5-598353f3c84a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -381,7 +381,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAGM=\"" + "\"AAAAAAAADCg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -390,25 +390,25 @@ "nosniff" ], "x-ms-request-id": [ - "22b3493a-f0f9-4583-aeef-9d60d3db1229" + "68c4f4df-4aaf-43f6-97c6-6e77a8b8393f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-correlation-request-id": [ - "33e5990b-ba18-4429-9143-8d84174ba9d1" + "68c4f4df-4aaf-43f6-97c6-6e77a8b8393f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001336Z:33e5990b-ba18-4429-9143-8d84174ba9d1" + "WESTCENTRALUS:20220401T190022Z:68c4f4df-4aaf-43f6-97c6-6e77a8b8393f" ], "Date": [ - "Tue, 13 Jul 2021 00:13:36 GMT" + "Fri, 01 Apr 2022 19:00:22 GMT" ], "Content-Length": [ - "951" + "963" ], "Content-Type": [ "application/json; charset=utf-8" @@ -417,26 +417,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac804e18-a352-40f4-a20d-d94a10170b3f" + "74482312-6947-4359-b111-b72d1cb61d50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -453,22 +453,22 @@ "nosniff" ], "x-ms-request-id": [ - "ef1de333-34fe-427c-897d-e551121ed756" + "48f88050-0d7d-49e2-829b-0d2ef9503a5a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11994" ], "x-ms-correlation-request-id": [ - "b0c99489-7739-4832-82d9-a126dac5c531" + "48f88050-0d7d-49e2-829b-0d2ef9503a5a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001337Z:b0c99489-7739-4832-82d9-a126dac5c531" + "WESTCENTRALUS:20220401T190023Z:48f88050-0d7d-49e2-829b-0d2ef9503a5a" ], "Date": [ - "Tue, 13 Jul 2021 00:13:37 GMT" + "Fri, 01 Apr 2022 19:00:23 GMT" ], "Content-Length": [ "83" @@ -484,22 +484,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c1a36ec-0cc0-41cc-a824-1a3ab9a75024" + "6f2fb9ae-4333-493a-a462-bfbefd57e0fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -516,25 +516,25 @@ "nosniff" ], "x-ms-request-id": [ - "52364f3a-d27a-4eea-ac1d-b80410fafd99" + "5c971c42-a34f-41a2-83d1-16cb47d7ab8e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-correlation-request-id": [ - "dba3597c-2552-4116-9433-daef7def71c8" + "5c971c42-a34f-41a2-83d1-16cb47d7ab8e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001336Z:dba3597c-2552-4116-9433-daef7def71c8" + "WESTCENTRALUS:20220401T190022Z:5c971c42-a34f-41a2-83d1-16cb47d7ab8e" ], "Date": [ - "Tue, 13 Jul 2021 00:13:36 GMT" + "Fri, 01 Apr 2022 19:00:21 GMT" ], "Content-Length": [ - "1002" + "1014" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,17 +543,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/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "645448c4-c36b-4efd-a01b-e75f7d521fbf" + "4e33c42c-e6f6-4c44-8b9a-3ae18e8493b7" ], "If-Match": [ "*" @@ -562,10 +562,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -582,22 +582,22 @@ "nosniff" ], "x-ms-request-id": [ - "5478bd13-3fa9-41ce-b3ca-3538d20bd0b4" + "9aff95f1-42fb-4cca-8a16-303b776d87c0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "2ca9b9d9-c566-4bd7-8668-cbcf17415bd4" + "9aff95f1-42fb-4cca-8a16-303b776d87c0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001337Z:2ca9b9d9-c566-4bd7-8668-cbcf17415bd4" + "WESTCENTRALUS:20220401T190023Z:9aff95f1-42fb-4cca-8a16-303b776d87c0" ], "Date": [ - "Tue, 13 Jul 2021 00:13:37 GMT" + "Fri, 01 Apr 2022 19:00:22 GMT" ], "Expires": [ "-1" @@ -612,13 +612,13 @@ ], "Names": { "": [ - "ps823", - "ps7670", - "ps9399", - "ps7167" + "ps3597", + "ps5714", + "ps4679", + "ps3476" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 d51e2db2c46f..731f43b0ec86 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "612e2f3f-282a-44db-9e67-0be81696ca39" + "661586c7-2387-4b29-b4cf-d5b3b3bc1fd2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,22 +33,22 @@ "nosniff" ], "x-ms-request-id": [ - "bed14349-9d69-42b9-86be-e3cb51115ea1" + "b4f80f56-ea94-464f-88ca-5884dc9050f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "a0bc7ff6-6290-4dd4-a91a-083242195c89" + "b4f80f56-ea94-464f-88ca-5884dc9050f3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001635Z:a0bc7ff6-6290-4dd4-a91a-083242195c89" + "WESTUS:20220401T190258Z:b4f80f56-ea94-464f-88ca-5884dc9050f3" ], "Date": [ - "Tue, 13 Jul 2021 00:16:35 GMT" + "Fri, 01 Apr 2022 19:02:57 GMT" ], "Content-Length": [ "34" @@ -64,22 +64,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23d2fb18-ebed-4c50-87d7-3354edec67b4" + "d154c4c6-99cb-4a05-a15a-85a32b2f5a4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -96,25 +96,25 @@ "nosniff" ], "x-ms-request-id": [ - "165fc5eb-1683-4764-a45a-e3a5d4f0ded7" + "a7060073-ea3f-4b28-a4e5-1ba2d4361236" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "aaaaa592-1132-4e74-80b8-0ca5c8238356" + "a7060073-ea3f-4b28-a4e5-1ba2d4361236" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001637Z:aaaaa592-1132-4e74-80b8-0ca5c8238356" + "WESTUS:20220401T190301Z:a7060073-ea3f-4b28-a4e5-1ba2d4361236" ], "Date": [ - "Tue, 13 Jul 2021 00:16:37 GMT" + "Fri, 01 Apr 2022 19:03:00 GMT" ], "Content-Length": [ - "1326" + "1344" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps6460\",\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 \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps4230\",\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 \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\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/ps8107?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMjAyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", "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": [ - "13771767-1e7e-4cbc-909f-d79198f3ad60" + "dfaeb971-f7bd-4573-9965-d28822c34053" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABARw=\"" + "\"AAAAAAAADN0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "6f3e443f-4ad2-44fd-ac7a-f18caf4f9a70" + "fff4643d-220f-4ff9-bd47-8f22f049c837" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "e79a071b-a59b-4b9f-96d4-5aca6e561e8f" + "fff4643d-220f-4ff9-bd47-8f22f049c837" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001635Z:e79a071b-a59b-4b9f-96d4-5aca6e561e8f" + "WESTUS:20220401T190259Z:fff4643d-220f-4ff9-bd47-8f22f049c837" ], "Date": [ - "Tue, 13 Jul 2021 00:16:35 GMT" + "Fri, 01 Apr 2022 19:02:59 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8107\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1202\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMjAyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13771767-1e7e-4cbc-909f-d79198f3ad60" + "dfaeb971-f7bd-4573-9965-d28822c34053" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABARw=\"" + "\"AAAAAAAADN0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,25 +234,25 @@ "nosniff" ], "x-ms-request-id": [ - "39483f9a-97e8-4bd7-8634-9c9cb11382fb" + "d3e00d80-3ace-46c4-9b2b-6990fa63843f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "6204ae86-c785-4ae6-8357-670e4e9da9d8" + "d3e00d80-3ace-46c4-9b2b-6990fa63843f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001635Z:6204ae86-c785-4ae6-8357-670e4e9da9d8" + "WESTUS:20220401T190259Z:d3e00d80-3ace-46c4-9b2b-6990fa63843f" ], "Date": [ - "Tue, 13 Jul 2021 00:16:35 GMT" + "Fri, 01 Apr 2022 19:02:59 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8107\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1202\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMjAyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1421bd4-b7c6-4158-8e59-e00e33426e10" + "f8adafd4-bab6-4c6b-bbe5-707c15e3bad2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -297,22 +297,22 @@ "nosniff" ], "x-ms-request-id": [ - "d7f8fff0-fdfb-4d57-b748-c06223d2ec8d" + "d01acca8-5ad6-4d64-931b-8897efe87f87" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-correlation-request-id": [ - "303453fe-55f3-4fdd-b445-e81be0d86274" + "d01acca8-5ad6-4d64-931b-8897efe87f87" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001638Z:303453fe-55f3-4fdd-b445-e81be0d86274" + "WESTUS:20220401T190301Z:d01acca8-5ad6-4d64-931b-8897efe87f87" ], "Date": [ - "Tue, 13 Jul 2021 00:16:38 GMT" + "Fri, 01 Apr 2022 19:03:01 GMT" ], "Content-Length": [ "87" @@ -328,28 +328,28 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps2237\",\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\": \"ps6518\",\r\n \"description\": \"ps360\",\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": [ - "5f5d9bd6-87b0-4858-b7d2-92adab088810" + "4c7f58bf-290a-4218-875b-96552a3aaab4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "676" + "675" ] }, "ResponseHeaders": { @@ -360,7 +360,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABASA=\"" + "\"AAAAAAAADOE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "x-ms-request-id": [ - "62d898db-3494-48c3-aa44-682ed07ff12b" + "fdedd25b-5d0e-4acf-ad17-abfd07d950d9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -378,16 +378,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "9dd01419-34a4-432c-bf5b-f2f8a6d65875" + "fdedd25b-5d0e-4acf-ad17-abfd07d950d9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001636Z:9dd01419-34a4-432c-bf5b-f2f8a6d65875" + "WESTUS:20220401T190300Z:fdedd25b-5d0e-4acf-ad17-abfd07d950d9" ], "Date": [ - "Tue, 13 Jul 2021 00:16:36 GMT" + "Fri, 01 Apr 2022 19:02:59 GMT" ], "Content-Length": [ - "1170" + "1187" ], "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/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps2237\",\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 \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps360\",\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 \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\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/ps9632?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6460\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4230\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8c4546ec-b6f0-45ad-ba82-1ae0b40bd954" + "913766f3-8493-45e4-a026-8e338c5379b4" ], "If-Match": [ "*" @@ -415,10 +415,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -435,7 +435,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABASM=\"" + "\"AAAAAAAADOQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,7 +444,7 @@ "nosniff" ], "x-ms-request-id": [ - "d8d1bb8a-e483-4d10-b803-fef900283f13" + "e008d917-9fc6-48c1-bfa5-03be5421ecdc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -453,16 +453,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "ba2b2cd2-644f-44d6-9eeb-affb2f325e8d" + "e008d917-9fc6-48c1-bfa5-03be5421ecdc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001637Z:ba2b2cd2-644f-44d6-9eeb-affb2f325e8d" + "WESTUS:20220401T190300Z:e008d917-9fc6-48c1-bfa5-03be5421ecdc" ], "Date": [ - "Tue, 13 Jul 2021 00:16:36 GMT" + "Fri, 01 Apr 2022 19:03:00 GMT" ], "Content-Length": [ - "1170" + "1188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,26 +471,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps6460\",\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 \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps4230\",\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 \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\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/ps9632?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c4546ec-b6f0-45ad-ba82-1ae0b40bd954" + "913766f3-8493-45e4-a026-8e338c5379b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -501,7 +501,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABASM=\"" + "\"AAAAAAAADOQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,25 +510,25 @@ "nosniff" ], "x-ms-request-id": [ - "69b4bffa-7bea-4b23-a5d7-779aea6d5911" + "fcbe19a5-f64b-41df-be9d-0441f4d3fafe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "686967f0-a93c-4c3a-957e-236fe524e6aa" + "fcbe19a5-f64b-41df-be9d-0441f4d3fafe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001637Z:686967f0-a93c-4c3a-957e-236fe524e6aa" + "WESTUS:20220401T190300Z:fcbe19a5-f64b-41df-be9d-0441f4d3fafe" ], "Date": [ - "Tue, 13 Jul 2021 00:16:37 GMT" + "Fri, 01 Apr 2022 19:03:00 GMT" ], "Content-Length": [ - "1170" + "1188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,26 +537,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps6460\",\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 \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps4230\",\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 \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\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/ps9632?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca4c068f-1cb8-4fb4-ba9e-ff0705a3cc7f" + "0e2efca2-b465-4a29-9b33-a14736c09422" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -567,7 +567,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABASM=\"" + "\"AAAAAAAADOQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,25 +576,25 @@ "nosniff" ], "x-ms-request-id": [ - "df3f0c07-cf44-4f9e-a2f3-c7c2130b35e7" + "be37357f-746f-406f-9d5b-7e7758a0a391" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "8554f986-9643-4545-b20a-85ff43ccc60a" + "be37357f-746f-406f-9d5b-7e7758a0a391" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001637Z:8554f986-9643-4545-b20a-85ff43ccc60a" + "WESTUS:20220401T190301Z:be37357f-746f-406f-9d5b-7e7758a0a391" ], "Date": [ - "Tue, 13 Jul 2021 00:16:37 GMT" + "Fri, 01 Apr 2022 19:03:00 GMT" ], "Content-Length": [ - "1170" + "1188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -603,26 +603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps6460\",\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 \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps4230\",\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 \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\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/ps9632?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7126dcfe-6d63-4084-a649-a6948bc21029" + "b2dcccde-3ce4-42ed-80f6-27d6029c99ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -639,22 +639,22 @@ "nosniff" ], "x-ms-request-id": [ - "c6adfc8d-a090-4bd2-91bd-8071a1d4f7c0" + "37c93ff6-e3ed-477f-9419-4d7d0ed361bf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "ff059909-421d-4c7a-ad70-0fd134042ecc" + "37c93ff6-e3ed-477f-9419-4d7d0ed361bf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001638Z:ff059909-421d-4c7a-ad70-0fd134042ecc" + "WESTUS:20220401T190301Z:37c93ff6-e3ed-477f-9419-4d7d0ed361bf" ], "Date": [ - "Tue, 13 Jul 2021 00:16:38 GMT" + "Fri, 01 Apr 2022 19:03:01 GMT" ], "Content-Length": [ "83" @@ -670,13 +670,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe000a9-d4e0-4bcf-8837-bf47a4f85861" + "86c53582-818e-4572-b453-81466b25862d" ], "If-Match": [ "*" @@ -685,10 +685,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -705,22 +705,22 @@ "nosniff" ], "x-ms-request-id": [ - "827aff39-d11d-4ea2-a9fb-5235fca6cee1" + "e6023673-4366-485f-94b8-3a0d949f5c7e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "ff0f2b4d-f061-48f5-b2d9-1839a59fd362" + "e6023673-4366-485f-94b8-3a0d949f5c7e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001638Z:ff0f2b4d-f061-48f5-b2d9-1839a59fd362" + "WESTUS:20220401T190301Z:e6023673-4366-485f-94b8-3a0d949f5c7e" ], "Date": [ - "Tue, 13 Jul 2021 00:16:38 GMT" + "Fri, 01 Apr 2022 19:03:01 GMT" ], "Expires": [ "-1" @@ -733,13 +733,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMjAyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e0d3207-a3f3-4c46-85cd-bbaf246846de" + "c410299b-74b0-4f20-bbd7-ff8560ad5818" ], "If-Match": [ "*" @@ -748,10 +748,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -768,22 +768,22 @@ "nosniff" ], "x-ms-request-id": [ - "a64f911b-3424-4978-8982-7ff3a4967106" + "ed4cc502-386a-4f1b-b916-74d40bd27874" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "55cb721c-cbf6-446d-876b-7e8166128288" + "ed4cc502-386a-4f1b-b916-74d40bd27874" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001638Z:55cb721c-cbf6-446d-876b-7e8166128288" + "WESTUS:20220401T190301Z:ed4cc502-386a-4f1b-b916-74d40bd27874" ], "Date": [ - "Tue, 13 Jul 2021 00:16:38 GMT" + "Fri, 01 Apr 2022 19:03:01 GMT" ], "Expires": [ "-1" @@ -798,14 +798,14 @@ ], "Names": { "": [ - "ps8107", - "ps9632", - "ps7669", - "ps2237", - "ps6460" + "ps1202", + "ps516", + "ps6518", + "ps360", + "ps4230" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 fd3fff92a2e3..96f0fbff5f13 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77b51043-7d4f-48f0-b245-22947366a1d1" + "d9343993-7429-46fb-b1c5-521bc3553524" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "2f27289d-6a78-43ab-8513-cdcd8b5c737a" + "c683c387-a4e7-4156-8d59-bfdb57baf059" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,13 +42,13 @@ "11999" ], "x-ms-correlation-request-id": [ - "dcf80df2-c8ec-4403-b562-af6612a36bb2" + "c683c387-a4e7-4156-8d59-bfdb57baf059" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213225Z:dcf80df2-c8ec-4403-b562-af6612a36bb2" + "WESTCENTRALUS:20220401T185710Z:c683c387-a4e7-4156-8d59-bfdb57baf059" ], "Date": [ - "Thu, 15 Jul 2021 21:32:25 GMT" + "Fri, 01 Apr 2022 18:57:09 GMT" ], "Content-Length": [ "34" @@ -64,22 +64,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0033344d-8390-4af4-8d44-a6aeaa4a0e1c" + "e737c3aa-f642-48ca-86dd-49af02511484" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -96,7 +96,7 @@ "nosniff" ], "x-ms-request-id": [ - "c80442be-740f-4faa-b7ee-6a958860509b" + "0096300b-739d-448f-a4c7-ecc04def422d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "9b8346e1-aa2d-491d-bc67-e5f795d3ac44" + "0096300b-739d-448f-a4c7-ecc04def422d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213227Z:9b8346e1-aa2d-491d-bc67-e5f795d3ac44" + "WESTCENTRALUS:20220401T185715Z:0096300b-739d-448f-a4c7-ecc04def422d" ], "Date": [ - "Thu, 15 Jul 2021 21:32:27 GMT" + "Fri, 01 Apr 2022 18:57:14 GMT" ], "Content-Length": [ - "476" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-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 \"useFromLocation\": \"default\",\r\n \"description\": \"ps4058\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4997\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\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=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8504\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\",\r\n \"useFromLocation\": \"default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4958\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\",\r\n \"useFromLocation\": \"default\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "db9c77ab-c19a-4363-99f0-604afab790f9" + "8c51bb00-47f0-4b8c-92e6-3d4d578c7e7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAsA=\"" + "\"AAAAAAAACwY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,25 +168,25 @@ "nosniff" ], "x-ms-request-id": [ - "574d5e23-e07c-45ee-9385-423416740bc6" + "4b395808-c338-4f8c-beca-93cb51ec7dc3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "ef31cae5-9edf-45cd-a3ee-24b87e8cc645" + "4b395808-c338-4f8c-beca-93cb51ec7dc3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213226Z:ef31cae5-9edf-45cd-a3ee-24b87e8cc645" + "WESTCENTRALUS:20220401T185712Z:4b395808-c338-4f8c-beca-93cb51ec7dc3" ], "Date": [ - "Thu, 15 Jul 2021 21:32:26 GMT" + "Fri, 01 Apr 2022 18:57:12 GMT" ], "Content-Length": [ - "396" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-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 \"useFromLocation\": \"default\",\r\n \"description\": \"ps8504\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4958\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "422e0b22-7f65-4da8-a032-bd2fb792bedb" + "8d9b9132-4c66-4743-9e17-fdec3c51537d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAsA=\"" + "\"AAAAAAAACwY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "x-ms-request-id": [ - "159ad87a-4264-46f5-ba4a-583bd5bc10c1" + "d510a6a5-830b-4e49-b5e2-9114799707df" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "d6c3a5e0-2f08-477c-ae06-a62a3c1b68a3" + "d510a6a5-830b-4e49-b5e2-9114799707df" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213226Z:d6c3a5e0-2f08-477c-ae06-a62a3c1b68a3" + "WESTCENTRALUS:20220401T185713Z:d510a6a5-830b-4e49-b5e2-9114799707df" ], "Date": [ - "Thu, 15 Jul 2021 21:32:26 GMT" + "Fri, 01 Apr 2022 18:57:12 GMT" ], "Content-Length": [ - "396" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +261,26 @@ "-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 \"useFromLocation\": \"default\",\r\n \"description\": \"ps8504\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4958\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4127f2a3-3e55-433a-8bab-399f228726e7" + "ff539665-3daa-48a1-b462-ad66ce07af60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAsA=\"" + "\"AAAAAAAACwY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,7 +300,7 @@ "nosniff" ], "x-ms-request-id": [ - "f2529738-9f37-4702-ad11-9f53d9226792" + "5823220d-61b0-4275-8dfd-6c1366853e9e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "66f657e9-3602-4630-bb58-93ce3c86534b" + "5823220d-61b0-4275-8dfd-6c1366853e9e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213226Z:66f657e9-3602-4630-bb58-93ce3c86534b" + "WESTCENTRALUS:20220401T185713Z:5823220d-61b0-4275-8dfd-6c1366853e9e" ], "Date": [ - "Thu, 15 Jul 2021 21:32:26 GMT" + "Fri, 01 Apr 2022 18:57:12 GMT" ], "Content-Length": [ - "396" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,26 +327,26 @@ "-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 \"useFromLocation\": \"default\",\r\n \"description\": \"ps8504\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4958\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdc3eeb3-1a99-405c-a7df-67eaf92bc095" + "da76f34d-5679-4433-a951-2479df68de27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -357,7 +357,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAsQ=\"" + "\"AAAAAAAACwo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,7 +366,7 @@ "nosniff" ], "x-ms-request-id": [ - "7ade4642-d9b8-4ca9-85d7-8cdbafab895d" + "6702061f-90a9-4a4e-9c3c-96328327ad9f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,16 +375,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "915a0613-be78-48e3-8478-0a212542ab65" + "6702061f-90a9-4a4e-9c3c-96328327ad9f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213227Z:915a0613-be78-48e3-8478-0a212542ab65" + "WESTCENTRALUS:20220401T185714Z:6702061f-90a9-4a4e-9c3c-96328327ad9f" ], "Date": [ - "Thu, 15 Jul 2021 21:32:27 GMT" + "Fri, 01 Apr 2022 18:57:13 GMT" ], "Content-Length": [ - "396" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,26 +393,26 @@ "-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 \"useFromLocation\": \"default\",\r\n \"description\": \"ps4058\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4997\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dfc3ae3-5e19-453a-bb0e-9029c4fa49f7" + "f9ccc52b-a1e9-4c93-b18e-fabe72d76b8f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -429,7 +429,7 @@ "nosniff" ], "x-ms-request-id": [ - "574fc167-a882-44b5-9e00-dcdd51285ddf" + "9d1756ed-36c1-441a-9346-a8e0780a0f29" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,13 +438,13 @@ "11994" ], "x-ms-correlation-request-id": [ - "2d868a91-c999-4612-b17c-83a532f796e7" + "9d1756ed-36c1-441a-9346-a8e0780a0f29" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213227Z:2d868a91-c999-4612-b17c-83a532f796e7" + "WESTCENTRALUS:20220401T185715Z:9d1756ed-36c1-441a-9346-a8e0780a0f29" ], "Date": [ - "Thu, 15 Jul 2021 21:32:27 GMT" + "Fri, 01 Apr 2022 18:57:14 GMT" ], "Content-Length": [ "81" @@ -460,13 +460,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4058\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\",\r\n \"useFromLocation\": \"default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4997\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\",\r\n \"useFromLocation\": \"default\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bdc3eeb3-1a99-405c-a7df-67eaf92bc095" + "da76f34d-5679-4433-a951-2479df68de27" ], "If-Match": [ "*" @@ -475,10 +475,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,7 +495,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAsQ=\"" + "\"AAAAAAAACwo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,25 +504,25 @@ "nosniff" ], "x-ms-request-id": [ - "c857fa6d-dac2-47e6-a680-fdef3653760d" + "be6b4ed5-7316-4aca-ba60-0193fa047b6a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "afaf7a17-6fea-4086-8dc2-1ce22ff74041" + "be6b4ed5-7316-4aca-ba60-0193fa047b6a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213226Z:afaf7a17-6fea-4086-8dc2-1ce22ff74041" + "WESTCENTRALUS:20220401T185714Z:be6b4ed5-7316-4aca-ba60-0193fa047b6a" ], "Date": [ - "Thu, 15 Jul 2021 21:32:26 GMT" + "Fri, 01 Apr 2022 18:57:13 GMT" ], "Content-Length": [ - "396" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,17 +531,17 @@ "-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 \"useFromLocation\": \"default\",\r\n \"description\": \"ps4058\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4997\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ecfcb64-c202-42d3-818e-2f5bd22b0db0" + "442f1e5f-f99b-422e-9f58-9f21a71dc026" ], "If-Match": [ "*" @@ -550,10 +550,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -570,7 +570,7 @@ "nosniff" ], "x-ms-request-id": [ - "408ddc8e-0535-4112-a4b3-3b6fe7eef0dc" + "6414b0bc-0ac6-4cd3-8e09-f33fd930f9f0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -579,13 +579,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "7d61a6a5-27fe-4291-9f12-b690f7e19764" + "6414b0bc-0ac6-4cd3-8e09-f33fd930f9f0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213227Z:7d61a6a5-27fe-4291-9f12-b690f7e19764" + "WESTCENTRALUS:20220401T185715Z:6414b0bc-0ac6-4cd3-8e09-f33fd930f9f0" ], "Date": [ - "Thu, 15 Jul 2021 21:32:27 GMT" + "Fri, 01 Apr 2022 18:57:14 GMT" ], "Expires": [ "-1" @@ -598,22 +598,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8ad0136-d128-4b98-851b-186194b97275" + "329a1ab2-6c9f-4b01-bf82-e556b77cce15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -630,7 +630,7 @@ "nosniff" ], "x-ms-request-id": [ - "063f9a3f-265d-43ad-8005-a6dc6b2fc3ef" + "21d2fecb-b393-4ec4-a73e-1c31272167f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -639,16 +639,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "3d750f37-9310-4e5f-9cb0-c945cfa912a9" + "21d2fecb-b393-4ec4-a73e-1c31272167f4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213227Z:3d750f37-9310-4e5f-9cb0-c945cfa912a9" + "WESTCENTRALUS:20220401T185715Z:21d2fecb-b393-4ec4-a73e-1c31272167f4" ], "Date": [ - "Thu, 15 Jul 2021 21:32:27 GMT" + "Fri, 01 Apr 2022 18:57:15 GMT" ], "Content-Length": [ - "511" + "521" ], "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/namedValues/60f0a96aa2ca601290f0cc5f\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"60f0a96aa2ca601290f0cc5f\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-60f0a96aa2ca601290f0cc60\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/62474b08217d200d902d7dbe\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"62474b08217d200d902d7dbe\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-62474b08217d200d902d7dbf\",\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/60f0a96aa2ca601290f0cc5f?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzYwZjBhOTZhYTJjYTYwMTI5MGYwY2M1Zj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/62474b08217d200d902d7dbe?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy82MjQ3NGIwODIxN2QyMDBkOTAyZDdkYmU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2e2170d-b05f-4a6c-a89b-94495f0bc4de" + "ccb64310-7edd-4023-b3b1-6423a2495348" ], "If-Match": [ "*" @@ -676,10 +676,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -696,7 +696,7 @@ "nosniff" ], "x-ms-request-id": [ - "8a5d1595-0835-4b95-9012-58c390fa66fd" + "b3becfb4-8f22-4dea-afb2-ac3fd18870ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -705,13 +705,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "beba4596-eb94-4fb7-b5e4-7f2d68de7464" + "b3becfb4-8f22-4dea-afb2-ac3fd18870ab" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T213228Z:beba4596-eb94-4fb7-b5e4-7f2d68de7464" + "WESTCENTRALUS:20220401T185718Z:b3becfb4-8f22-4dea-afb2-ac3fd18870ab" ], "Date": [ - "Thu, 15 Jul 2021 21:32:27 GMT" + "Fri, 01 Apr 2022 18:57:17 GMT" ], "Expires": [ "-1" @@ -726,11 +726,11 @@ ], "Names": { "": [ - "ps8504", - "ps4058" + "ps4958", + "ps4997" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 62c63825c55f..843493b03676 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b51c01e0-8a9c-4e35-85e2-f0d31061073f" + "df490d76-f055-4c7d-8127-8f78ebc15ad5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "9de07bcc-4c79-4b8d-80ec-7d483a5c377b" + "50cc40f7-3676-4443-861f-e84a8766bddd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,13 +42,13 @@ "11999" ], "x-ms-correlation-request-id": [ - "6e248edb-9600-481a-aa42-f89d3ee08d01" + "50cc40f7-3676-4443-861f-e84a8766bddd" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183514Z:6e248edb-9600-481a-aa42-f89d3ee08d01" + "WESTUS:20220401T214947Z:50cc40f7-3676-4443-861f-e84a8766bddd" ], "Date": [ - "Wed, 28 Jul 2021 18:35:14 GMT" + "Fri, 01 Apr 2022 21:49:47 GMT" ], "Content-Length": [ "34" @@ -64,22 +64,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9519c7c7-6ea4-439c-85da-a7fef6d12ac0" + "5c2214d6-f2a3-438d-9c3c-9fe3ffdb3d49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -96,7 +96,7 @@ "nosniff" ], "x-ms-request-id": [ - "25fb10e9-9fdd-4dc8-ad20-b5bef9907650" + "6f99d4d8-ed73-4c19-8c9f-0b8bf6c83f17" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "433e44a2-893b-46df-a005-df07dab00331" + "6f99d4d8-ed73-4c19-8c9f-0b8bf6c83f17" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183518Z:433e44a2-893b-46df-a005-df07dab00331" + "WESTUS:20220401T215008Z:6f99d4d8-ed73-4c19-8c9f-0b8bf6c83f17" ], "Date": [ - "Wed, 28 Jul 2021 18:35:18 GMT" + "Fri, 01 Apr 2022 21:50:07 GMT" ], "Content-Length": [ - "1350" + "1369" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:15.7518822Z\"\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/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:50:01.740896Z\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": 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/certificates/cert1234?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2c85f219-00dc-4acf-88c1-891ad818436d" + "af3c2a26-5400-424c-adc7-42ae69605469" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiI=\"" + "\"AAAAAAAADfk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "8d467489-a53b-4f42-bcac-58bb6945f40d" + "2e3fcb6c-f467-43d8-910b-3c19705e0472" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "224b91a8-01d6-4e64-8f17-a4693ad9d146" + "2e3fcb6c-f467-43d8-910b-3c19705e0472" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183515Z:224b91a8-01d6-4e64-8f17-a4693ad9d146" + "WESTUS:20220401T215000Z:2e3fcb6c-f467-43d8-910b-3c19705e0472" ], "Date": [ - "Wed, 28 Jul 2021 18:35:15 GMT" + "Fri, 01 Apr 2022 21:49:59 GMT" ], "Content-Length": [ - "726" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:14.4481249Z\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:49:49.8302462Z\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c85f219-00dc-4acf-88c1-891ad818436d" + "af3c2a26-5400-424c-adc7-42ae69605469" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiI=\"" + "\"AAAAAAAADfk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "x-ms-request-id": [ - "11ca7d1e-c172-445f-8259-0eea7e8272c9" + "64227301-b478-4a96-8d89-0ffa5583a87e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "b93ff64f-05f3-44fd-8037-033d953fb17d" + "64227301-b478-4a96-8d89-0ffa5583a87e" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183515Z:b93ff64f-05f3-44fd-8037-033d953fb17d" + "WESTUS:20220401T215000Z:64227301-b478-4a96-8d89-0ffa5583a87e" ], "Date": [ - "Wed, 28 Jul 2021 18:35:15 GMT" + "Fri, 01 Apr 2022 21:49:59 GMT" ], "Content-Length": [ - "726" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:14.4481249Z\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:49:49.8302462Z\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57cf7d89-40b6-482d-9328-77ebc4f9547f" + "031b86f1-17f7-40f9-ab81-1797ce21e0e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiI=\"" + "\"AAAAAAAADfk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,7 +300,7 @@ "nosniff" ], "x-ms-request-id": [ - "582b564b-cc45-4025-85c0-594f6f77639b" + "c6fce5f0-29c9-4b06-b1e2-e2df0bb5068a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "193315ce-2c68-4b5f-9c95-1fd92de4b684" + "c6fce5f0-29c9-4b06-b1e2-e2df0bb5068a" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183515Z:193315ce-2c68-4b5f-9c95-1fd92de4b684" + "WESTUS:20220401T215001Z:c6fce5f0-29c9-4b06-b1e2-e2df0bb5068a" ], "Date": [ - "Wed, 28 Jul 2021 18:35:15 GMT" + "Fri, 01 Apr 2022 21:50:00 GMT" ], "Content-Length": [ - "726" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,26 +327,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:14.4481249Z\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:49:49.8302462Z\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57cf7d89-40b6-482d-9328-77ebc4f9547f" + "031b86f1-17f7-40f9-ab81-1797ce21e0e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -357,7 +357,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiU=\"" + "\"AAAAAAAADfw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,7 +366,7 @@ "nosniff" ], "x-ms-request-id": [ - "7f12495a-ed63-4a21-a17b-cf397c4107ae" + "397ef56b-a348-4906-8db4-32d64838bf67" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,16 +375,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "dd635754-97fa-4166-9c43-040b21dcb545" + "397ef56b-a348-4906-8db4-32d64838bf67" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183516Z:dd635754-97fa-4166-9c43-040b21dcb545" + "WESTUS:20220401T215004Z:397ef56b-a348-4906-8db4-32d64838bf67" ], "Date": [ - "Wed, 28 Jul 2021 18:35:16 GMT" + "Fri, 01 Apr 2022 21:50:03 GMT" ], "Content-Length": [ - "726" + "735" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,26 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:15.7518822Z\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:50:01.740896Z\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8330a4a-992b-4a2d-a130-77820404002a" + "957b6409-4795-4e76-ada3-f7f680528c84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -429,7 +429,7 @@ "nosniff" ], "x-ms-request-id": [ - "07c1eef5-4559-4e46-b837-949e17678cb4" + "833d43c5-1b2c-4187-80d2-b6293985f6ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,13 +438,13 @@ "11989" ], "x-ms-correlation-request-id": [ - "f6c4f250-533d-4c32-8970-f7576aeefceb" + "833d43c5-1b2c-4187-80d2-b6293985f6ce" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183519Z:f6c4f250-533d-4c32-8970-f7576aeefceb" + "WESTUS:20220401T215016Z:833d43c5-1b2c-4187-80d2-b6293985f6ce" ], "Date": [ - "Wed, 28 Jul 2021 18:35:19 GMT" + "Fri, 01 Apr 2022 21:50:15 GMT" ], "Content-Length": [ "87" @@ -460,22 +460,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234/refreshSecret?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzNC9yZWZyZXNoU2VjcmV0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234/refreshSecret?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQvcmVmcmVzaFNlY3JldD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57cf7d89-40b6-482d-9328-77ebc4f9547f" + "031b86f1-17f7-40f9-ab81-1797ce21e0e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -486,7 +486,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiU=\"" + "\"AAAAAAAADfw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -495,7 +495,7 @@ "nosniff" ], "x-ms-request-id": [ - "94bb7bf5-74a0-46a9-830a-da6badb7b20e" + "93d6b51e-ea8e-4cc9-9a61-88f2b0a66806" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,16 +504,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "b35a76ff-a4f3-4552-b957-7b67b03f24c4" + "93d6b51e-ea8e-4cc9-9a61-88f2b0a66806" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183516Z:b35a76ff-a4f3-4552-b957-7b67b03f24c4" + "WESTUS:20220401T215003Z:93d6b51e-ea8e-4cc9-9a61-88f2b0a66806" ], "Date": [ - "Wed, 28 Jul 2021 18:35:16 GMT" + "Fri, 01 Apr 2022 21:50:03 GMT" ], "Content-Length": [ - "371" + "370" ], "Content-Type": [ "application/json; charset=utf-8" @@ -522,26 +522,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/certificates/cert1234\",\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:15.7518822Z\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/certificates/cert1234\",\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:50:01.740896Z\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", "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": [ - "e785b165-602d-4498-a5e8-38c53b491051" + "ea63b2f6-121f-4cc6-8440-3b994a96a5c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,7 +558,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACio=\"" + "\"AAAAAAAADgI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,7 +567,7 @@ "nosniff" ], "x-ms-request-id": [ - "c42e662c-5de6-4c76-a071-24dc8cc7f404" + "cb9d8176-543a-4976-b4a0-64ba1f6db1d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -576,16 +576,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "7d3ae266-4614-4a5e-b0d5-e4f2bc12ae71" + "cb9d8176-543a-4976-b4a0-64ba1f6db1d2" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183517Z:7d3ae266-4614-4a5e-b0d5-e4f2bc12ae71" + "WESTUS:20220401T215004Z:cb9d8176-543a-4976-b4a0-64ba1f6db1d2" ], "Date": [ - "Wed, 28 Jul 2021 18:35:17 GMT" + "Fri, 01 Apr 2022 21:50:04 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -594,17 +594,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", "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": [ - "2b70c32e-51a9-487d-aba8-5b72fe91f002" + "294d1b93-d92c-4a30-a04e-99b006c0bb97" ], "If-Match": [ "*" @@ -613,10 +613,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,7 +633,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACi0=\"" + "\"AAAAAAAADgU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,7 +642,7 @@ "nosniff" ], "x-ms-request-id": [ - "ce8218fd-2104-489c-89ac-64c97f9117d2" + "f32e0bf2-ecff-4fc2-96a7-3512ed2d2fa9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -651,16 +651,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "9de86699-2c0f-4265-a98c-47eb6c7ba923" + "f32e0bf2-ecff-4fc2-96a7-3512ed2d2fa9" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183518Z:9de86699-2c0f-4265-a98c-47eb6c7ba923" + "WESTUS:20220401T215007Z:f32e0bf2-ecff-4fc2-96a7-3512ed2d2fa9" ], "Date": [ - "Wed, 28 Jul 2021 18:35:18 GMT" + "Fri, 01 Apr 2022 21:50:06 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -669,26 +669,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e785b165-602d-4498-a5e8-38c53b491051" + "ea63b2f6-121f-4cc6-8440-3b994a96a5c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -699,7 +699,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACio=\"" + "\"AAAAAAAADgI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,7 +708,7 @@ "nosniff" ], "x-ms-request-id": [ - "13712fd1-a67d-451c-959f-8d933d343b75" + "55bdc5a1-7cb7-408e-a30a-730c8708ca8f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -717,16 +717,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "7b63d1b3-2cf5-46fb-89a0-43be89b99d25" + "55bdc5a1-7cb7-408e-a30a-730c8708ca8f" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183517Z:7b63d1b3-2cf5-46fb-89a0-43be89b99d25" + "WESTUS:20220401T215005Z:55bdc5a1-7cb7-408e-a30a-730c8708ca8f" ], "Date": [ - "Wed, 28 Jul 2021 18:35:17 GMT" + "Fri, 01 Apr 2022 21:50:04 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -735,26 +735,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "609f52a9-7747-4b83-9853-ebb1d5827375" + "c36e9a04-8b46-4ff2-8ffb-19faed8aa015" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -765,7 +765,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACio=\"" + "\"AAAAAAAADgI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -774,7 +774,7 @@ "nosniff" ], "x-ms-request-id": [ - "2385daa7-29cd-47a5-9317-20904a83af14" + "f1bbd8f7-a381-4596-9c6b-ea6472ab58b1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -783,16 +783,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "a04ac5fb-e307-4ed0-86b5-97eb429a5174" + "f1bbd8f7-a381-4596-9c6b-ea6472ab58b1" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183517Z:a04ac5fb-e307-4ed0-86b5-97eb429a5174" + "WESTUS:20220401T215005Z:f1bbd8f7-a381-4596-9c6b-ea6472ab58b1" ], "Date": [ - "Wed, 28 Jul 2021 18:35:17 GMT" + "Fri, 01 Apr 2022 21:50:04 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,26 +801,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9460e9c-bcd9-4158-bcfe-6a7fb936e614" + "368023be-0e5c-468a-b4e2-3d73daae7201" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -831,7 +831,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACio=\"" + "\"AAAAAAAADgI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,7 +840,7 @@ "nosniff" ], "x-ms-request-id": [ - "26639af2-9d06-4be5-b60d-aeb5a149fcf9" + "cda4fd5d-b289-4e87-880d-43a853b8c2d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -849,16 +849,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "87c513fa-c797-4fae-ada9-0bfb5cce17ef" + "cda4fd5d-b289-4e87-880d-43a853b8c2d1" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183517Z:87c513fa-c797-4fae-ada9-0bfb5cce17ef" + "WESTUS:20220401T215005Z:cda4fd5d-b289-4e87-880d-43a853b8c2d1" ], "Date": [ - "Wed, 28 Jul 2021 18:35:17 GMT" + "Fri, 01 Apr 2022 21:50:05 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -867,26 +867,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b70c32e-51a9-487d-aba8-5b72fe91f002" + "294d1b93-d92c-4a30-a04e-99b006c0bb97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -897,7 +897,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACi0=\"" + "\"AAAAAAAADgU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "nosniff" ], "x-ms-request-id": [ - "1bf85ea5-86d9-49d0-a6bd-9925b220c56c" + "46b21745-63aa-4963-bffb-1ffb395f684b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -915,16 +915,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "820c9c3b-5b48-4d7e-a376-40a278afe8a6" + "46b21745-63aa-4963-bffb-1ffb395f684b" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183518Z:820c9c3b-5b48-4d7e-a376-40a278afe8a6" + "WESTUS:20220401T215007Z:46b21745-63aa-4963-bffb-1ffb395f684b" ], "Date": [ - "Wed, 28 Jul 2021 18:35:18 GMT" + "Fri, 01 Apr 2022 21:50:06 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -933,26 +933,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b29c9961-b5d6-4998-9888-178961afa9ce" + "8c784432-05bb-4216-98a1-4345c58e47d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -969,7 +969,7 @@ "nosniff" ], "x-ms-request-id": [ - "c1825104-dcf6-4622-9344-5815a8859b7d" + "2ec2c2dc-a080-4f45-a8f8-f8b36f6df31a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -978,13 +978,13 @@ "11990" ], "x-ms-correlation-request-id": [ - "c66ba0bd-cea3-4072-9229-98a3bd8a06dc" + "2ec2c2dc-a080-4f45-a8f8-f8b36f6df31a" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183519Z:c66ba0bd-cea3-4072-9229-98a3bd8a06dc" + "WESTUS:20220401T215016Z:2ec2c2dc-a080-4f45-a8f8-f8b36f6df31a" ], "Date": [ - "Wed, 28 Jul 2021 18:35:19 GMT" + "Fri, 01 Apr 2022 21:50:15 GMT" ], "Content-Length": [ "87" @@ -1000,13 +1000,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5755fea9-9f94-4ad6-8642-4415b471177b" + "b1808a4a-14a3-470b-9ef2-21562b11b703" ], "If-Match": [ "*" @@ -1015,10 +1015,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1035,7 +1035,7 @@ "nosniff" ], "x-ms-request-id": [ - "16df70b8-2acf-4f9e-acf1-4b436150186c" + "356a45dc-02c0-420d-8981-9dc73e338919" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1044,13 +1044,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "fc89cf46-6d7f-40db-9fbb-c992da84b9d7" + "356a45dc-02c0-420d-8981-9dc73e338919" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183519Z:fc89cf46-6d7f-40db-9fbb-c992da84b9d7" + "WESTUS:20220401T215012Z:356a45dc-02c0-420d-8981-9dc73e338919" ], "Date": [ - "Wed, 28 Jul 2021 18:35:19 GMT" + "Fri, 01 Apr 2022 21:50:11 GMT" ], "Expires": [ "-1" @@ -1063,13 +1063,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d939a3f4-8cc3-4f32-935b-25a4693fe186" + "55ee63f8-469d-4e8c-ac48-a335b936b430" ], "If-Match": [ "*" @@ -1078,10 +1078,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1098,7 +1098,7 @@ "nosniff" ], "x-ms-request-id": [ - "3a98ebd3-a1e4-4c04-a6e0-c69f8bf1ed7f" + "7a6f0703-f794-48f2-9f4c-e2b7cc1a9f0e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1107,13 +1107,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "4687a2bb-43d8-4ea1-af86-d20076d45f8f" + "7a6f0703-f794-48f2-9f4c-e2b7cc1a9f0e" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183519Z:4687a2bb-43d8-4ea1-af86-d20076d45f8f" + "WESTUS:20220401T215015Z:7a6f0703-f794-48f2-9f4c-e2b7cc1a9f0e" ], "Date": [ - "Wed, 28 Jul 2021 18:35:19 GMT" + "Fri, 01 Apr 2022 21:50:14 GMT" ], "Expires": [ "-1" @@ -1128,10 +1128,10 @@ ], "Names": { "": [ - "ps9003" + "ps1172" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 d43c39afa746..d17ca6e13ece 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60d8b4ff-dcc9-4474-a1a8-550819dee198" + "bf39fa82-6773-4700-9a04-1c10bb3564c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,22 +33,22 @@ "nosniff" ], "x-ms-request-id": [ - "67bd054d-5bc4-49b6-9b08-5d035209e48d" + "b72ec87a-b44b-41e0-89c9-83acffb4c056" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "2bd698c6-c10f-4b74-97f5-7a892febd197" + "b72ec87a-b44b-41e0-89c9-83acffb4c056" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001205Z:2bd698c6-c10f-4b74-97f5-7a892febd197" + "WESTCENTRALUS:20220401T185850Z:b72ec87a-b44b-41e0-89c9-83acffb4c056" ], "Date": [ - "Tue, 13 Jul 2021 00:12:04 GMT" + "Fri, 01 Apr 2022 18:58:50 GMT" ], "Content-Length": [ "34" @@ -64,22 +64,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37818d38-da77-49bd-b254-441d405100c5" + "9c3990f6-ee3a-4e17-9121-a332d9f91420" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -96,22 +96,22 @@ "nosniff" ], "x-ms-request-id": [ - "5e704c1a-8a50-43a7-93ea-371c1d03eb6b" + "77178ade-1a0e-4593-8e42-76823106392d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "00e3b8c0-08f5-4e9f-9b4d-3a78cdfbdc32" + "77178ade-1a0e-4593-8e42-76823106392d" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001211Z:00e3b8c0-08f5-4e9f-9b4d-3a78cdfbdc32" + "WESTCENTRALUS:20220401T185858Z:77178ade-1a0e-4593-8e42-76823106392d" ], "Date": [ - "Tue, 13 Jul 2021 00:12:11 GMT" + "Fri, 01 Apr 2022 18:58:58 GMT" ], "Content-Length": [ "34" @@ -127,22 +127,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTUzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzOTUzNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9216\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"3172327e-babe-4fef-8c75-a122e19bd0f4\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps6174\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"474edd50-b07f-48ea-b472-f1ec6a3ef92d\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "71513fa4-3d61-4e99-9131-0c7c77cccade" + "034facc6-c71a-4d60-b4d2-4d0e36d2c9f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/9c=\"" + "\"AAAAAAAAC5g=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,25 +168,25 @@ "nosniff" ], "x-ms-request-id": [ - "e94553aa-8fd4-4df6-b6f6-0a3b7264f698" + "2e5a98bb-e296-48c6-9dfe-98749175599e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "3787e93d-4ef0-45fc-84d1-223370713c9a" + "2e5a98bb-e296-48c6-9dfe-98749175599e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001209Z:3787e93d-4ef0-45fc-84d1-223370713c9a" + "WESTCENTRALUS:20220401T185854Z:2e5a98bb-e296-48c6-9dfe-98749175599e" ], "Date": [ - "Tue, 13 Jul 2021 00:12:08 GMT" + "Fri, 01 Apr 2022 18:58:54 GMT" ], "Content-Length": [ - "506" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps1953\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9216\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--60ecda58a2ca601290f0cb60}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps9535\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps6174\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--62474b6d217d200d902d7de2}}\"\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=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps1953\",\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/ps9535\",\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": [ - "ecea08fe-ddd2-4f8a-8dfd-e9404bb1d661" + "23e6adee-f34e-468e-b866-b7f483d7384d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,7 +231,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/9o=\"" + "\"AAAAAAAAC5s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,25 +240,25 @@ "nosniff" ], "x-ms-request-id": [ - "9219dbe4-0d91-4cf8-8e4d-1c35690a80bc" + "d575e8ce-f177-4b7f-8567-c33e02184614" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "a6834425-1a94-4418-ae61-a2e48a50339b" + "d575e8ce-f177-4b7f-8567-c33e02184614" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001210Z:a6834425-1a94-4418-ae61-a2e48a50339b" + "WESTCENTRALUS:20220401T185856Z:d575e8ce-f177-4b7f-8567-c33e02184614" ], "Date": [ - "Tue, 13 Jul 2021 00:12:10 GMT" + "Fri, 01 Apr 2022 18:58:56 GMT" ], "Content-Length": [ - "1398" + "1418" ], "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/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/ps1953\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\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=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps1953\",\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/ps9535\",\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": [ - "acafbca4-7760-4fdc-80eb-68eab857e4ee" + "3aa7fbbb-4ffa-4ba2-8025-05d56c5ab4f0" ], "If-Match": [ "*" @@ -286,10 +286,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,7 +306,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/94=\"" + "\"AAAAAAAAC58=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,25 +315,25 @@ "nosniff" ], "x-ms-request-id": [ - "0f876b4b-e14c-4301-93fb-39f35e6dcdec" + "6d972d95-e1a8-4d7c-ba05-81082e71eed7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "591ef022-53a4-4bae-b917-1a85d4d385ee" + "6d972d95-e1a8-4d7c-ba05-81082e71eed7" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001211Z:591ef022-53a4-4bae-b917-1a85d4d385ee" + "WESTCENTRALUS:20220401T185857Z:6d972d95-e1a8-4d7c-ba05-81082e71eed7" ], "Date": [ - "Tue, 13 Jul 2021 00:12:10 GMT" + "Fri, 01 Apr 2022 18:58:57 GMT" ], "Content-Length": [ - "1057" + "1077" ], "Content-Type": [ "application/json; charset=utf-8" @@ -342,26 +342,26 @@ "-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/ps1953\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2746f65d-871e-4a14-8b4f-e17b4a025485" + "d4084eb4-b685-49a4-928d-a339062af781" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -372,7 +372,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/94=\"" + "\"AAAAAAAAC58=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -381,25 +381,25 @@ "nosniff" ], "x-ms-request-id": [ - "5278c207-3ba5-4915-9235-c12456de5193" + "4532636c-c88b-4593-8f71-1c6a72331127" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "251c9fb9-2532-4b0d-b928-a65dfeea181d" + "4532636c-c88b-4593-8f71-1c6a72331127" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001211Z:251c9fb9-2532-4b0d-b928-a65dfeea181d" + "WESTCENTRALUS:20220401T185858Z:4532636c-c88b-4593-8f71-1c6a72331127" ], "Date": [ - "Tue, 13 Jul 2021 00:12:10 GMT" + "Fri, 01 Apr 2022 18:58:57 GMT" ], "Content-Length": [ - "1057" + "1077" ], "Content-Type": [ "application/json; charset=utf-8" @@ -408,26 +408,26 @@ "-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/ps1953\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f14b08fc-771e-47fa-bbbf-0b8c3f0e555e" + "186b49a1-b805-4841-8be5-772224efd96d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -438,7 +438,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/94=\"" + "\"AAAAAAAAC58=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -447,25 +447,25 @@ "nosniff" ], "x-ms-request-id": [ - "278036f0-557a-4144-ae76-031a2757adf2" + "e645fca1-889b-44ee-91ec-26b2c1beab93" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "232bd8c8-493c-450d-9bd8-66f92585e787" + "e645fca1-889b-44ee-91ec-26b2c1beab93" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001211Z:232bd8c8-493c-450d-9bd8-66f92585e787" + "WESTCENTRALUS:20220401T185858Z:e645fca1-889b-44ee-91ec-26b2c1beab93" ], "Date": [ - "Tue, 13 Jul 2021 00:12:11 GMT" + "Fri, 01 Apr 2022 18:58:58 GMT" ], "Content-Length": [ - "1057" + "1077" ], "Content-Type": [ "application/json; charset=utf-8" @@ -474,17 +474,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/ps1953\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3196dd68-d5e2-4cf2-a53b-3031d97fe759" + "baa1cb03-74b6-45a9-a8e8-73eb86371bbd" ], "If-Match": [ "*" @@ -493,10 +493,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -513,7 +513,7 @@ "nosniff" ], "x-ms-request-id": [ - "60eda374-6173-4410-b53a-f7a9b0c6265f" + "dd8d1498-ac44-4c3d-980c-84c7d3610f94" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -522,13 +522,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "265848a9-c2f7-402b-bd25-bef1c86b4cc5" + "dd8d1498-ac44-4c3d-980c-84c7d3610f94" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001211Z:265848a9-c2f7-402b-bd25-bef1c86b4cc5" + "WESTCENTRALUS:20220401T185858Z:dd8d1498-ac44-4c3d-980c-84c7d3610f94" ], "Date": [ - "Tue, 13 Jul 2021 00:12:11 GMT" + "Fri, 01 Apr 2022 18:58:58 GMT" ], "Expires": [ "-1" @@ -541,13 +541,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93987d7a-a298-4375-a288-b842c462ddbf" + "f0c3161e-b574-411c-9527-9eac98a04d52" ], "If-Match": [ "*" @@ -556,10 +556,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -576,22 +576,22 @@ "nosniff" ], "x-ms-request-id": [ - "22128ab5-e175-4113-9082-46758f01ae97" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "68e15843-92e9-45df-8377-e5e90cf95955" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "eb84a2d8-0aff-4dc5-9f4c-e09779d8c0d2" + "68e15843-92e9-45df-8377-e5e90cf95955" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001212Z:eb84a2d8-0aff-4dc5-9f4c-e09779d8c0d2" + "WESTCENTRALUS:20220401T185859Z:68e15843-92e9-45df-8377-e5e90cf95955" ], "Date": [ - "Tue, 13 Jul 2021 00:12:11 GMT" + "Fri, 01 Apr 2022 18:58:58 GMT" ], "Expires": [ "-1" @@ -601,13 +601,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTUzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzOTUzNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24bc1783-1aa3-4b41-9039-5a41167bfed4" + "80ae0c6c-57f2-4eb0-abc8-e5ffed0fd875" ], "If-Match": [ "*" @@ -616,10 +616,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -636,7 +636,7 @@ "nosniff" ], "x-ms-request-id": [ - "fbc5604b-5477-4934-87a1-8c3185291379" + "93a0eb47-c449-47b4-b991-2c9e8567574e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -645,13 +645,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "13c06e8b-5f6a-4fb7-89bc-947ee2db51e8" + "93a0eb47-c449-47b4-b991-2c9e8567574e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001212Z:13c06e8b-5f6a-4fb7-89bc-947ee2db51e8" + "WESTCENTRALUS:20220401T185900Z:93a0eb47-c449-47b4-b991-2c9e8567574e" ], "Date": [ - "Tue, 13 Jul 2021 00:12:12 GMT" + "Fri, 01 Apr 2022 18:58:59 GMT" ], "Expires": [ "-1" @@ -664,22 +664,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36418727-24a9-4d08-88f4-b3588850c075" + "1c4f021e-6c33-462f-a0df-d7cfd036d14f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -696,22 +696,22 @@ "nosniff" ], "x-ms-request-id": [ - "f1c999b1-7919-4cdc-aa9c-01e1182532d1" + "db0b79b0-4a14-4f0a-a19d-1b5c3aabb1c3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "c3c1af8e-33cb-40a5-bd58-26e3e91656da" + "db0b79b0-4a14-4f0a-a19d-1b5c3aabb1c3" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001213Z:c3c1af8e-33cb-40a5-bd58-26e3e91656da" + "WESTCENTRALUS:20220401T185900Z:db0b79b0-4a14-4f0a-a19d-1b5c3aabb1c3" ], "Date": [ - "Tue, 13 Jul 2021 00:12:12 GMT" + "Fri, 01 Apr 2022 18:58:59 GMT" ], "Content-Length": [ "34" @@ -729,11 +729,11 @@ ], "Names": { "": [ - "ps1953", - "ps9216" + "ps9535", + "ps6174" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 index cfbcd7a19972..40305d7e49be 100644 --- 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5b9a52f-797e-4e36-ab0f-4a837a75313e" + "a40e9f6f-e9ef-472b-97eb-537208b57a8b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,22 +33,22 @@ "nosniff" ], "x-ms-request-id": [ - "34ddd902-6076-493e-9e11-515f39b6462c" + "14cf8b9f-e7dc-489d-8b55-58fd99f2a6a6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "8f38ec17-a4f4-41fe-b5db-0d0847ae9eb6" + "14cf8b9f-e7dc-489d-8b55-58fd99f2a6a6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205433Z:8f38ec17-a4f4-41fe-b5db-0d0847ae9eb6" + "WESTUS:20220401T190034Z:14cf8b9f-e7dc-489d-8b55-58fd99f2a6a6" ], "Date": [ - "Tue, 20 Jul 2021 20:54:32 GMT" + "Fri, 01 Apr 2022 19:00:33 GMT" ], "Content-Length": [ "34" @@ -64,22 +64,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1785bd37-3fd6-4686-b1a2-d321b8c8fedf" + "a63a32db-3bd4-4e70-840e-1f8f5a78cbe0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -96,25 +96,25 @@ "nosniff" ], "x-ms-request-id": [ - "de45988e-0490-443b-bd96-812c02661dac" + "2759b538-1138-4b8e-9580-2c49555e58ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "3d4b72ad-9533-4bbf-9b57-dc46c788954e" + "2759b538-1138-4b8e-9580-2c49555e58ff" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205435Z:3d4b72ad-9533-4bbf-9b57-dc46c788954e" + "WESTUS:20220401T190035Z:2759b538-1138-4b8e-9580-2c49555e58ff" ], "Date": [ - "Tue, 20 Jul 2021 20:54:34 GMT" + "Fri, 01 Apr 2022 19:00:35 GMT" ], "Content-Length": [ - "572" + "583" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,32 +123,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\",\r\n \"heartbeat\": []\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\",\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/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "95594398-9352-4f97-b424-6799d75da724" + "f5b9cb9b-4309-4273-b8f2-2762c26b298c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "201" + "202" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"uQUBAAAAAAA=\"" + "\"LwwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "2fff2d2e-fcbb-4f91-9ae3-818f1fc79066" + "6ee44145-873e-40c8-b7a7-bf7784620002" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "c981b47b-a008-46ea-ba11-38d214610afc" + "6ee44145-873e-40c8-b7a7-bf7784620002" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205434Z:c981b47b-a008-46ea-ba11-38d214610afc" + "WESTUS:20220401T190035Z:6ee44145-873e-40c8-b7a7-bf7784620002" ], "Date": [ - "Tue, 20 Jul 2021 20:54:33 GMT" + "Fri, 01 Apr 2022 19:00:35 GMT" ], "Content-Length": [ - "474" + "485" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\",\r\n \"heartbeat\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\",\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/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd77463d-72f4-4e29-b6bb-a2808e62cbb4" + "2e4471b9-844f-4384-80be-ccd7cc5914dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "no-cache" ], "ETag": [ - "\"uQUBAAAAAAA=\"" + "\"LwwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,25 +234,25 @@ "nosniff" ], "x-ms-request-id": [ - "91fc94c8-0b24-4cc1-a99e-306e0dca3d1c" + "9b25189b-35ae-49ad-a68b-68cf3c014d1d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-correlation-request-id": [ - "1aa68c6a-29c7-4c05-8a71-3a555f32ac46" + "9b25189b-35ae-49ad-a68b-68cf3c014d1d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205435Z:1aa68c6a-29c7-4c05-8a71-3a555f32ac46" + "WESTUS:20220401T190036Z:9b25189b-35ae-49ad-a68b-68cf3c014d1d" ], "Date": [ - "Tue, 20 Jul 2021 20:54:34 GMT" + "Fri, 01 Apr 2022 19:00:36 GMT" ], "Content-Length": [ - "472" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\",\r\n \"heartbeat\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\",\r\n \"heartbeat\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf0d537d-f6d8-4650-a915-1393c0b291f0" + "f193a721-82c6-4bff-98d0-96afa0d51e25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "no-cache" ], "ETag": [ - "\"uQUBAAAAAAA=\"" + "\"LwwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,25 +300,25 @@ "nosniff" ], "x-ms-request-id": [ - "6dcbf57d-7be6-4a9a-81da-fd346460d63d" + "1fc9fc74-3ce6-471e-a63d-080f1795c63d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "6d3816f4-b7c2-4a88-a17e-981bf9305cf4" + "1fc9fc74-3ce6-471e-a63d-080f1795c63d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205435Z:6d3816f4-b7c2-4a88-a17e-981bf9305cf4" + "WESTUS:20220401T190036Z:1fc9fc74-3ce6-471e-a63d-080f1795c63d" ], "Date": [ - "Tue, 20 Jul 2021 20:54:34 GMT" + "Fri, 01 Apr 2022 19:00:36 GMT" ], "Content-Length": [ - "472" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,26 +327,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\",\r\n \"heartbeat\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\",\r\n \"heartbeat\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf0d537d-f6d8-4650-a915-1393c0b291f0" + "f193a721-82c6-4bff-98d0-96afa0d51e25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -357,7 +357,7 @@ "no-cache" ], "ETag": [ - "\"ugUBAAAAAAA=\"" + "\"MAwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,25 +366,25 @@ "nosniff" ], "x-ms-request-id": [ - "53263619-6b61-49bc-b3e6-318cc81ae3cb" + "169afcd1-54d9-40f1-8a29-5114e325248a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-correlation-request-id": [ - "8ef45afe-d09d-4eb7-84ab-da75ce30e16f" + "169afcd1-54d9-40f1-8a29-5114e325248a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205436Z:8ef45afe-d09d-4eb7-84ab-da75ce30e16f" + "WESTUS:20220401T190037Z:169afcd1-54d9-40f1-8a29-5114e325248a" ], "Date": [ - "Tue, 20 Jul 2021 20:54:35 GMT" + "Fri, 01 Apr 2022 19:00:37 GMT" ], "Content-Length": [ - "472" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,26 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps3175\",\r\n \"heartbeat\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps4901\",\r\n \"heartbeat\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "166bf726-e2a0-49ae-afae-d0e50f0cce36" + "5b5972b8-268e-46dd-8ed2-e4d88e5735c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -423,7 +423,7 @@ "no-cache" ], "ETag": [ - "\"uwUBAAAAAAA=\"" + "\"MQwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,25 +432,25 @@ "nosniff" ], "x-ms-request-id": [ - "045bce67-2455-4a3a-ae28-26a65a6ddc94" + "c4f7d27b-f219-4af5-9c96-d8e3c2901440" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-correlation-request-id": [ - "bb2456c1-d5b7-4242-a88a-7027d3328681" + "c4f7d27b-f219-4af5-9c96-d8e3c2901440" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205436Z:bb2456c1-d5b7-4242-a88a-7027d3328681" + "WESTUS:20220401T190037Z:c4f7d27b-f219-4af5-9c96-d8e3c2901440" ], "Date": [ - "Tue, 20 Jul 2021 20:54:35 GMT" + "Fri, 01 Apr 2022 19:00:37 GMT" ], "Content-Length": [ - "472" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,26 +459,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps8393\",\r\n \"heartbeat\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps7703\",\r\n \"heartbeat\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d382569f-9601-4876-bf3b-f4f3571c4716" + "85ed997b-1f36-4536-904c-b0750e3d3139" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -489,7 +489,7 @@ "no-cache" ], "ETag": [ - "\"vAUBAAAAAAA=\"" + "\"MgwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,25 +498,25 @@ "nosniff" ], "x-ms-request-id": [ - "6e398545-5e4d-4b6a-bad5-d420e07dc88f" + "ae936a4d-944f-426e-8c85-cdddfaec72fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-correlation-request-id": [ - "7334462f-7a36-4a3a-a67d-a5eeb6f699cf" + "ae936a4d-944f-426e-8c85-cdddfaec72fd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205436Z:7334462f-7a36-4a3a-a67d-a5eeb6f699cf" + "WESTUS:20220401T190037Z:ae936a4d-944f-426e-8c85-cdddfaec72fd" ], "Date": [ - "Tue, 20 Jul 2021 20:54:35 GMT" + "Fri, 01 Apr 2022 19:00:37 GMT" ], "Content-Length": [ - "465" + "475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,26 +525,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps5629\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps8393\",\r\n \"heartbeat\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps6202\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps7703\",\r\n \"heartbeat\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "204c7d06-0814-4dae-ab84-a14a992a55e2" + "c97e0f33-b48c-4481-b367-503cdc04125e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -561,22 +561,22 @@ "nosniff" ], "x-ms-request-id": [ - "32ecc554-b6d7-4c99-ba23-6bea2ecd6b3a" + "b0f92c9b-b2a7-4a39-a5c7-62e8704b3c51" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11983" ], "x-ms-correlation-request-id": [ - "bde77773-570f-49db-91ac-2743dedae014" + "b0f92c9b-b2a7-4a39-a5c7-62e8704b3c51" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205446Z:bde77773-570f-49db-91ac-2743dedae014" + "WESTUS:20220401T190046Z:b0f92c9b-b2a7-4a39-a5c7-62e8704b3c51" ], "Date": [ - "Tue, 20 Jul 2021 20:54:46 GMT" + "Fri, 01 Apr 2022 19:00:45 GMT" ], "Content-Length": [ "83" @@ -592,13 +592,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps3175\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps4901\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cf0d537d-f6d8-4650-a915-1393c0b291f0" + "f193a721-82c6-4bff-98d0-96afa0d51e25" ], "If-Match": [ "*" @@ -607,16 +607,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "201" + "202" ] }, "ResponseHeaders": { @@ -627,7 +627,7 @@ "no-cache" ], "ETag": [ - "\"ugUBAAAAAAA=\"" + "\"MAwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -636,7 +636,7 @@ "nosniff" ], "x-ms-request-id": [ - "e1e5fd78-0a19-4bf2-8355-fc4853764d2b" + "0984a786-928f-4079-a4bd-47b8966c942a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -645,16 +645,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "43dc96ad-1526-4c54-8c39-467a4300f608" + "0984a786-928f-4079-a4bd-47b8966c942a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205435Z:43dc96ad-1526-4c54-8c39-467a4300f608" + "WESTUS:20220401T190037Z:0984a786-928f-4079-a4bd-47b8966c942a" ], "Date": [ - "Tue, 20 Jul 2021 20:54:34 GMT" + "Fri, 01 Apr 2022 19:00:36 GMT" ], "Content-Length": [ - "474" + "485" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,17 +663,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps3175\",\r\n \"heartbeat\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps4901\",\r\n \"heartbeat\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8393\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7703\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "166bf726-e2a0-49ae-afae-d0e50f0cce36" + "5b5972b8-268e-46dd-8ed2-e4d88e5735c8" ], "If-Match": [ "*" @@ -682,10 +682,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -702,7 +702,7 @@ "no-cache" ], "ETag": [ - "\"uwUBAAAAAAA=\"" + "\"MQwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,7 +711,7 @@ "nosniff" ], "x-ms-request-id": [ - "31cb413b-bd29-469b-9db1-18ceb6621a96" + "a7d0cec1-687a-472e-982f-217beb0eee35" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,16 +720,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "b45e264f-f26b-4e67-ab0b-17a2939571d5" + "a7d0cec1-687a-472e-982f-217beb0eee35" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205436Z:b45e264f-f26b-4e67-ab0b-17a2939571d5" + "WESTUS:20220401T190037Z:a7d0cec1-687a-472e-982f-217beb0eee35" ], "Date": [ - "Tue, 20 Jul 2021 20:54:35 GMT" + "Fri, 01 Apr 2022 19:00:37 GMT" ], "Content-Length": [ - "474" + "485" ], "Content-Type": [ "application/json; charset=utf-8" @@ -738,17 +738,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps8393\",\r\n \"heartbeat\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps7703\",\r\n \"heartbeat\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps5629\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps6202\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d382569f-9601-4876-bf3b-f4f3571c4716" + "85ed997b-1f36-4536-904c-b0750e3d3139" ], "If-Match": [ "*" @@ -757,10 +757,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -777,7 +777,7 @@ "no-cache" ], "ETag": [ - "\"vAUBAAAAAAA=\"" + "\"MgwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -786,7 +786,7 @@ "nosniff" ], "x-ms-request-id": [ - "ae22e374-7491-4c5a-ad94-8e6cc0be9093" + "379cc203-0fb2-481a-aa54-f0c0255e35ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -795,16 +795,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "28f70e46-c465-44d3-b8f8-84fc5f3359a7" + "379cc203-0fb2-481a-aa54-f0c0255e35ae" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205436Z:28f70e46-c465-44d3-b8f8-84fc5f3359a7" + "WESTUS:20220401T190037Z:379cc203-0fb2-481a-aa54-f0c0255e35ae" ], "Date": [ - "Tue, 20 Jul 2021 20:54:35 GMT" + "Fri, 01 Apr 2022 19:00:37 GMT" ], "Content-Length": [ - "467" + "477" ], "Content-Type": [ "application/json; charset=utf-8" @@ -813,26 +813,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps5629\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps8393\",\r\n \"heartbeat\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps6202\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps7703\",\r\n \"heartbeat\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/listKeys?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/listKeys?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d0d7d6c-9033-4b62-aeee-8baed9b61fab" + "0444347f-7aea-47fb-b40e-2962b10f5363" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -843,7 +843,7 @@ "no-cache" ], "ETag": [ - "\"vAUBAAAAAAA=\"" + "\"MgwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +852,7 @@ "nosniff" ], "x-ms-request-id": [ - "6a3a9d7d-6f2f-413e-ae04-553f32b41d00" + "f426f2d3-822a-4cab-b8b9-c0807e614179" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -861,13 +861,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "d021e7fa-8eeb-42a7-9b92-af5d82dd8c23" + "f426f2d3-822a-4cab-b8b9-c0807e614179" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205436Z:d021e7fa-8eeb-42a7-9b92-af5d82dd8c23" + "WESTUS:20220401T190038Z:f426f2d3-822a-4cab-b8b9-c0807e614179" ], "Date": [ - "Tue, 20 Jul 2021 20:54:35 GMT" + "Fri, 01 Apr 2022 19:00:37 GMT" ], "Content-Length": [ "205" @@ -879,26 +879,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primary\": \"93P88yPROrv+1nQXdLrwmB8G0BWGV4HV9Y7wyFHPVaKMnZAdy+9d0jh+cKD4pijWy4xNkjhO3o0eUKaPPn2DJA==\",\r\n \"secondary\": \"7RToBk46s24JMbzqBzodqSj/jipEaX1zqyjg5zBvGxcf12Ysoqhz/BM4IMgQIYDJNnucGo3/YKCUjrrQDZQGpw==\"\r\n}", + "ResponseBody": "{\r\n \"primary\": \"bipCgNeeoGdbrfieL5Z/E3qO1eIpAjKpK0aJUf56/2RCP/SxKUfJQuM4TEnR6xFemwi7i1OdS/Br3pdi6xv8hQ==\",\r\n \"secondary\": \"QQXrbM3+b7v/X6dBLSr+tMFM9eHvyBrN9DlPzcIyo36vUk9S0Z72ToO04lyNlDLynb9PwEKaFz+4CjlqXr1OWQ==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "640ff3e4-90a1-431b-aa23-d49663a82be4" + "ca0dbb69-b972-436b-a7b2-a2011e5cbdde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -915,25 +915,25 @@ "nosniff" ], "x-ms-request-id": [ - "b1f09a6b-838c-4c6e-a464-68a4a42979cb" + "6f4ee0dd-2869-4d08-875b-1399909df2b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11989" ], "x-ms-correlation-request-id": [ - "8c4ef7ae-a9c1-4d16-9dff-80e672960122" + "6f4ee0dd-2869-4d08-875b-1399909df2b7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205437Z:8c4ef7ae-a9c1-4d16-9dff-80e672960122" + "WESTUS:20220401T190038Z:6f4ee0dd-2869-4d08-875b-1399909df2b7" ], "Date": [ - "Tue, 20 Jul 2021 20:54:37 GMT" + "Fri, 01 Apr 2022 19:00:38 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -942,26 +942,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/ps2435/apis/echo-api?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis/echo-api?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "153a511f-d9e0-4c1f-9bdb-b0db925bf04f" + "a690199a-c1d3-45a2-a997-5e099e5a340c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -972,7 +972,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/5E=\"" + "\"AAAAAAAAC04=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,7 +981,7 @@ "nosniff" ], "x-ms-request-id": [ - "39e2afe6-fbfc-4b08-8e01-b084cb64b234" + "7b39802d-ca44-420c-956d-0bd75682b63e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -990,16 +990,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "64d7f8aa-3520-4ec0-9924-f1a04296218f" + "7b39802d-ca44-420c-956d-0bd75682b63e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205437Z:64d7f8aa-3520-4ec0-9924-f1a04296218f" + "WESTUS:20220401T190038Z:7b39802d-ca44-420c-956d-0bd75682b63e" ], "Date": [ - "Tue, 20 Jul 2021 20:54:37 GMT" + "Fri, 01 Apr 2022 19:00:38 GMT" ], "Content-Length": [ - "619" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1008,26 +1008,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/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/ps2435/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d8ae6d4-8872-426b-a426-5df02e2dec86" + "69171f45-5148-476f-9bef-facdde8214ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1044,25 +1044,25 @@ "nosniff" ], "x-ms-request-id": [ - "e5f940a7-b7cc-4e3d-95ce-52c6b8b48d08" + "d8539f28-c114-4f19-a0d6-bc9514456ae2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11988" ], "x-ms-correlation-request-id": [ - "f315ae16-3de9-49a5-a902-585544baf3e8" + "d8539f28-c114-4f19-a0d6-bc9514456ae2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205438Z:f315ae16-3de9-49a5-a902-585544baf3e8" + "WESTUS:20220401T190040Z:d8539f28-c114-4f19-a0d6-bc9514456ae2" ], "Date": [ - "Tue, 20 Jul 2021 20:54:38 GMT" + "Fri, 01 Apr 2022 19:00:40 GMT" ], "Content-Length": [ - "754" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1071,26 +1071,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/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/ps2435/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb5846ac-a062-41f4-9985-e27294119272" + "73804d80-886d-4edc-9804-b606e1380df4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1107,22 +1107,22 @@ "nosniff" ], "x-ms-request-id": [ - "8294a078-5aa2-402d-b9ec-f395d96efa22" + "8d7ced70-d34d-42f7-89ee-dd2c7e564c1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11987" ], "x-ms-correlation-request-id": [ - "ce77701d-316e-4bab-81cf-f1182a0212a1" + "8d7ced70-d34d-42f7-89ee-dd2c7e564c1c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205439Z:ce77701d-316e-4bab-81cf-f1182a0212a1" + "WESTUS:20220401T190040Z:8d7ced70-d34d-42f7-89ee-dd2c7e564c1c" ], "Date": [ - "Tue, 20 Jul 2021 20:54:39 GMT" + "Fri, 01 Apr 2022 19:00:40 GMT" ], "Content-Length": [ "34" @@ -1138,22 +1138,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/apis/echo-api?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis/echo-api?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5493c3c1-9369-4f6b-af79-3496886d5b52" + "98314cd1-0608-4eda-b70b-c70e5cdf3f41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1170,7 +1170,7 @@ "nosniff" ], "x-ms-request-id": [ - "d5df05c8-5ce6-43d0-91dc-adfc39f09b54" + "d08d6ba5-5317-4169-bf73-b4974e28abe4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1179,13 +1179,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "587c483a-edae-4f75-ad1b-f407d7278285" + "d08d6ba5-5317-4169-bf73-b4974e28abe4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205439Z:587c483a-edae-4f75-ad1b-f407d7278285" + "WESTUS:20220401T190040Z:d08d6ba5-5317-4169-bf73-b4974e28abe4" ], "Date": [ - "Tue, 20 Jul 2021 20:54:39 GMT" + "Fri, 01 Apr 2022 19:00:40 GMT" ], "Expires": [ "-1" @@ -1198,22 +1198,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczY4MzQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMyMTQ1P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", "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": [ - "709e3dea-67b9-4a76-ac5f-c932e55ef21a" + "bba8b410-862b-4759-91e5-265320b4d9ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1230,7 +1230,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABBdI=\"" + "\"AAAAAAAADEg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,7 +1239,7 @@ "nosniff" ], "x-ms-request-id": [ - "5b2cc432-46fc-4427-bedc-ca9024d813c4" + "8b98a6d9-0008-4fc3-88ad-593ebdd97afb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1248,16 +1248,16 @@ "1194" ], "x-ms-correlation-request-id": [ - "e9a46296-81ee-4fb9-bbef-b1e88f9e9033" + "8b98a6d9-0008-4fc3-88ad-593ebdd97afb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205440Z:e9a46296-81ee-4fb9-bbef-b1e88f9e9033" + "WESTUS:20220401T190041Z:8b98a6d9-0008-4fc3-88ad-593ebdd97afb" ], "Date": [ - "Tue, 20 Jul 2021 20:54:40 GMT" + "Fri, 01 Apr 2022 19:00:41 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,26 +1266,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps6834\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps2145\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczY4MzQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMyMTQ1P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "709e3dea-67b9-4a76-ac5f-c932e55ef21a" + "bba8b410-862b-4759-91e5-265320b4d9ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1296,7 +1296,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABBdI=\"" + "\"AAAAAAAADEg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1305,25 +1305,25 @@ "nosniff" ], "x-ms-request-id": [ - "d4d8a385-dcf3-4bec-85fc-4358253cd59f" + "c3c6757b-a276-46a8-bacb-0336c7025aea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11986" ], "x-ms-correlation-request-id": [ - "f9ae17c5-3ecb-4692-ba0b-aa13f9d59c13" + "c3c6757b-a276-46a8-bacb-0336c7025aea" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205441Z:f9ae17c5-3ecb-4692-ba0b-aa13f9d59c13" + "WESTUS:20220401T190041Z:c3c6757b-a276-46a8-bacb-0336c7025aea" ], "Date": [ - "Tue, 20 Jul 2021 20:54:41 GMT" + "Fri, 01 Apr 2022 19:00:41 GMT" ], "Content-Length": [ - "461" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1332,32 +1332,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps6834\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps2145\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzODY5OD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvaG9zdG5hbWVDb25maWd1cmF0aW9ucy9wczgyODU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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/ps6834\",\r\n \"negotiateClientCertificate\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\r\n \"negotiateClientCertificate\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4f71e2fd-84d6-4064-ac44-7e650879e36c" + "3c122451-21d2-4c50-86b3-bbb091639acf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "291" + "301" ] }, "ResponseHeaders": { @@ -1368,7 +1368,7 @@ "no-cache" ], "ETag": [ - "\"1QUBAAAAAAA=\"" + "\"SwwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,7 +1377,7 @@ "nosniff" ], "x-ms-request-id": [ - "87953ab7-f418-4fbd-9eb6-8e55875b7be6" + "e8399148-652a-4d9c-818a-644a2424345f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1386,16 +1386,16 @@ "1193" ], "x-ms-correlation-request-id": [ - "baaab43f-15ab-4a6d-98c1-192f4c62f9b4" + "e8399148-652a-4d9c-818a-644a2424345f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205442Z:baaab43f-15ab-4a6d-98c1-192f4c62f9b4" + "WESTUS:20220401T190042Z:e8399148-652a-4d9c-818a-644a2424345f" ], "Date": [ - "Tue, 20 Jul 2021 20:54:42 GMT" + "Fri, 01 Apr 2022 19:00:42 GMT" ], "Content-Length": [ - "676" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1404,26 +1404,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8698\",\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/ps6834\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8285\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\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/ps2435/hostnameConfigurations/ps8698?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzODY5OD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvaG9zdG5hbWVDb25maWd1cmF0aW9ucy9wczgyODU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "331d5020-9ecf-42a7-9dd1-9573fb70bf25" + "b3d98bd6-fb42-4936-a55f-6f6615b7191d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1434,7 +1434,7 @@ "no-cache" ], "ETag": [ - "\"1QUBAAAAAAA=\"" + "\"SwwAAAAAAAA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1443,25 +1443,25 @@ "nosniff" ], "x-ms-request-id": [ - "a432bbac-b9e2-4d9d-9074-fa0092fb20f8" + "db97e570-45eb-4595-a323-236155e84ef5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11985" ], "x-ms-correlation-request-id": [ - "3a1a0355-dd20-4123-bcf3-916a605b6333" + "db97e570-45eb-4595-a323-236155e84ef5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205442Z:3a1a0355-dd20-4123-bcf3-916a605b6333" + "WESTUS:20220401T190043Z:db97e570-45eb-4595-a323-236155e84ef5" ], "Date": [ - "Tue, 20 Jul 2021 20:54:42 GMT" + "Fri, 01 Apr 2022 19:00:43 GMT" ], "Content-Length": [ - "676" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1470,26 +1470,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8698\",\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/ps6834\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8285\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\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/ps2435/hostnameConfigurations?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvaG9zdG5hbWVDb25maWd1cmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4698e04d-3669-4bb8-a649-23a87e031ed9" + "6fc871f7-2408-4a52-8cff-5a6a65a523bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1506,25 +1506,25 @@ "nosniff" ], "x-ms-request-id": [ - "5e89645f-4298-47a5-b84e-5d5b4ade0364" + "af04cf75-60b5-4864-bd43-85108cf99c25" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11984" ], "x-ms-correlation-request-id": [ - "661c63af-94a3-4207-86d2-2a95521ea6af" + "af04cf75-60b5-4864-bd43-85108cf99c25" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205443Z:661c63af-94a3-4207-86d2-2a95521ea6af" + "WESTUS:20220401T190044Z:af04cf75-60b5-4864-bd43-85108cf99c25" ], "Date": [ - "Tue, 20 Jul 2021 20:54:43 GMT" + "Fri, 01 Apr 2022 19:00:43 GMT" ], "Content-Length": [ - "768" + "788" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,17 +1533,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8698\",\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/ps6834\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8285\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\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/ps2435/hostnameConfigurations/ps8698?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzODY5OD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvaG9zdG5hbWVDb25maWd1cmF0aW9ucy9wczgyODU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7015c463-e47b-4db2-ab0e-ad0ecef04864" + "575d3b84-6941-4a6f-8841-a9e736fd9fa6" ], "If-Match": [ "*" @@ -1552,10 +1552,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1572,7 +1572,7 @@ "nosniff" ], "x-ms-request-id": [ - "74080233-913b-40ce-a73d-ee61d3925d95" + "6ddf741c-6ff6-45ec-8320-31425eb89fd3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1581,13 +1581,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "1abeca0a-e74d-4489-92d3-8a78c10129e5" + "6ddf741c-6ff6-45ec-8320-31425eb89fd3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205443Z:1abeca0a-e74d-4489-92d3-8a78c10129e5" + "WESTUS:20220401T190044Z:6ddf741c-6ff6-45ec-8320-31425eb89fd3" ], "Date": [ - "Tue, 20 Jul 2021 20:54:43 GMT" + "Fri, 01 Apr 2022 19:00:44 GMT" ], "Expires": [ "-1" @@ -1600,13 +1600,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczY4MzQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMyMTQ1P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66bdb152-21a5-4a6e-8c93-ae265f43741e" + "c4928276-f2aa-41eb-8ec7-32c469739d4a" ], "If-Match": [ "*" @@ -1615,10 +1615,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1635,7 +1635,7 @@ "nosniff" ], "x-ms-request-id": [ - "81b64ca9-2c5c-482c-8bbc-073e02813c9a" + "9b885a38-6405-417c-b869-4727679d95a7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1644,13 +1644,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "0096cf47-78d0-40e1-974a-c7a4ea29e359" + "9b885a38-6405-417c-b869-4727679d95a7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205445Z:0096cf47-78d0-40e1-974a-c7a4ea29e359" + "WESTUS:20220401T190045Z:9b885a38-6405-417c-b869-4727679d95a7" ], "Date": [ - "Tue, 20 Jul 2021 20:54:45 GMT" + "Fri, 01 Apr 2022 19:00:45 GMT" ], "Expires": [ "-1" @@ -1663,13 +1663,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7671b02a-bd52-4ad9-8dbd-923e7e2faf30" + "dd8ac737-e4ba-4bd2-b61e-2d8765b2ada3" ], "If-Match": [ "*" @@ -1678,10 +1678,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1698,7 +1698,7 @@ "nosniff" ], "x-ms-request-id": [ - "b3321450-05bc-4127-a3fd-472a74737e06" + "19222f96-585f-4247-8272-2db260dc0903" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1707,13 +1707,13 @@ "14996" ], "x-ms-correlation-request-id": [ - "a56287cc-ba42-4eb0-809d-23a88ec45141" + "19222f96-585f-4247-8272-2db260dc0903" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210720T205446Z:a56287cc-ba42-4eb0-809d-23a88ec45141" + "WESTUS:20220401T190046Z:19222f96-585f-4247-8272-2db260dc0903" ], "Date": [ - "Tue, 20 Jul 2021 20:54:46 GMT" + "Fri, 01 Apr 2022 19:00:45 GMT" ], "Expires": [ "-1" @@ -1728,20 +1728,20 @@ ], "Names": { "": [ - "ps2435", - "ps8698", - "ps6834", - "ps9171", - "ps3451", - "ps1616", - "ps2977", - "ps488", - "ps3175", - "ps8393", - "ps5629" + "ps1372", + "ps8285", + "ps2145", + "ps6546", + "ps3234", + "ps9013", + "ps4364", + "ps9941", + "ps4901", + "ps7703", + "ps6202" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ 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 9cdf273ac79c..bbcfc4c35197 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5a0805d-0185-458b-adb9-c9c2476e8435" + "992b4733-ba9d-4c43-87f5-993072758165" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "889712e2-e485-41cd-9d5a-657acd72f79d" + "4f17f68a-2cea-4634-8c62-8bbaeeb3ef58" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "23918c29-0a31-4467-8623-85929fa728e7" + "4f17f68a-2cea-4634-8c62-8bbaeeb3ef58" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001236Z:23918c29-0a31-4467-8623-85929fa728e7" + "WESTUS:20220401T185922Z:4f17f68a-2cea-4634-8c62-8bbaeeb3ef58" ], "Date": [ - "Tue, 13 Jul 2021 00:12:36 GMT" + "Fri, 01 Apr 2022 18:59:21 GMT" ], "Content-Length": [ - "1808" + "1838" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/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/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/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/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/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 \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/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 \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9hZG1pbmlzdHJhdG9ycz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/administrators?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvYWRtaW5pc3RyYXRvcnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cedae6c5-b60a-4ba0-99e0-a3169ee59ec6" + "cd40462b-5767-4154-9ac3-dda880ffdcb5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACIE=\"" + "\"AAAAAAAACIY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -99,7 +99,7 @@ "nosniff" ], "x-ms-request-id": [ - "ba5d77db-fd13-4413-88ff-cde3a318f3a4" + "e40bd71a-d926-4967-b5a1-b94127423e0f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -108,16 +108,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "71b359d4-c8f0-4807-9ab4-33cad9b164fb" + "e40bd71a-d926-4967-b5a1-b94127423e0f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001237Z:71b359d4-c8f0-4807-9ab4-33cad9b164fb" + "WESTUS:20220401T185922Z:e40bd71a-d926-4967-b5a1-b94127423e0f" ], "Date": [ - "Tue, 13 Jul 2021 00:12:36 GMT" + "Fri, 01 Apr 2022 18:59:21 GMT" ], "Content-Length": [ - "562" + "572" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,26 +126,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9kZXZlbG9wZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/developers?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvZGV2ZWxvcGVycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9cbbc9a-52b0-446a-9660-a36a5a44d5bc" + "f69a7449-4e09-42bc-bd7e-ba6cdf78ee49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -156,7 +156,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACII=\"" + "\"AAAAAAAACIc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -165,7 +165,7 @@ "nosniff" ], "x-ms-request-id": [ - "0ab10d17-b8b7-4520-9262-30251b45b084" + "c2b2cc55-820d-4040-85a2-a99a4d25e76b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -174,16 +174,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "540f9440-d592-4f49-9354-0eae83a020a9" + "c2b2cc55-820d-4040-85a2-a99a4d25e76b" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001237Z:540f9440-d592-4f49-9354-0eae83a020a9" + "WESTUS:20220401T185922Z:c2b2cc55-820d-4040-85a2-a99a4d25e76b" ], "Date": [ - "Tue, 13 Jul 2021 00:12:36 GMT" + "Fri, 01 Apr 2022 18:59:21 GMT" ], "Content-Length": [ - "518" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -192,26 +192,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/guests?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/guests?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvZ3Vlc3RzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74a45251-4471-41db-867c-ec6734f4b467" + "0f425362-4a95-4780-b083-e17e52c8d706" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -222,7 +222,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACIM=\"" + "\"AAAAAAAACIg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "x-ms-request-id": [ - "9387159b-51e3-42aa-9adf-4ccbe7902441" + "2a38ebc9-39b6-4ef4-b4a2-e2456cd5dbaf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,16 +240,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "13c8a2e1-e026-453b-97f9-857fb597dca7" + "2a38ebc9-39b6-4ef4-b4a2-e2456cd5dbaf" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001237Z:13c8a2e1-e026-453b-97f9-857fb597dca7" + "WESTUS:20220401T185922Z:2a38ebc9-39b6-4ef4-b4a2-e2456cd5dbaf" ], "Date": [ - "Tue, 13 Jul 2021 00:12:36 GMT" + "Fri, 01 Apr 2022 18:59:21 GMT" ], "Content-Length": [ - "538" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,26 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps3090\",\r\n \"description\": \"ps6658\",\r\n \"type\": \"custom\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps8746\",\r\n \"description\": \"ps6259\",\r\n \"type\": \"custom\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6386b48f-0a05-41a1-9af9-bafea5fe7d09" + "97fdf6a7-33a9-4f8a-91e8-601fb2c4a934" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,7 +294,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+w=\"" + "\"AAAAAAAAC64=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "x-ms-request-id": [ - "d46ba41a-4349-4ed4-83ba-47b3d83a9b5d" + "710c8a0e-48dc-4c69-93e3-194dad4dd4ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,16 +312,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "5dee3764-62c5-4c5e-8a0b-75982022575e" + "710c8a0e-48dc-4c69-93e3-194dad4dd4ae" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001238Z:5dee3764-62c5-4c5e-8a0b-75982022575e" + "WESTUS:20220401T185923Z:710c8a0e-48dc-4c69-93e3-194dad4dd4ae" ], "Date": [ - "Tue, 13 Jul 2021 00:12:38 GMT" + "Fri, 01 Apr 2022 18:59:22 GMT" ], "Content-Length": [ - "401" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,26 +330,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps3090\",\r\n \"description\": \"ps6658\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps8746\",\r\n \"description\": \"ps6259\",\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/ps350?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6386b48f-0a05-41a1-9af9-bafea5fe7d09" + "97fdf6a7-33a9-4f8a-91e8-601fb2c4a934" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -360,7 +360,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+w=\"" + "\"AAAAAAAAC64=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "x-ms-request-id": [ - "5a3062b5-3bb9-4114-a11a-2b03ae555d88" + "b2a0f12a-db0a-4e41-935b-92b002373f7f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -378,16 +378,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "bba40a43-41d7-43d4-8ec4-a4d4d525abee" + "b2a0f12a-db0a-4e41-935b-92b002373f7f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001238Z:bba40a43-41d7-43d4-8ec4-a4d4d525abee" + "WESTUS:20220401T185923Z:b2a0f12a-db0a-4e41-935b-92b002373f7f" ], "Date": [ - "Tue, 13 Jul 2021 00:12:38 GMT" + "Fri, 01 Apr 2022 18:59:23 GMT" ], "Content-Length": [ - "401" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -396,26 +396,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps3090\",\r\n \"description\": \"ps6658\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps8746\",\r\n \"description\": \"ps6259\",\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/ps350?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91c222cb-3718-4efb-8682-c2c1fd4b501c" + "8b702e9c-d4eb-45a3-af0f-59818152c134" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -426,7 +426,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+8=\"" + "\"AAAAAAAAC7E=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,7 +435,7 @@ "nosniff" ], "x-ms-request-id": [ - "7fa67086-1198-4ba0-81a4-612ffa93ded4" + "47ef2bb0-3b1d-410c-b1b2-ccef49da4bba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,16 +444,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "6dc55796-2dd6-4705-9ddc-55ff85ce10fb" + "47ef2bb0-3b1d-410c-b1b2-ccef49da4bba" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001239Z:6dc55796-2dd6-4705-9ddc-55ff85ce10fb" + "WESTUS:20220401T185924Z:47ef2bb0-3b1d-410c-b1b2-ccef49da4bba" ], "Date": [ - "Tue, 13 Jul 2021 00:12:38 GMT" + "Fri, 01 Apr 2022 18:59:23 GMT" ], "Content-Length": [ - "400" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,26 +462,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\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/ps350?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "006f738f-efb0-41e7-b9ab-162f5d1ddb76" + "f7cc5a75-2055-486d-96c9-268cb826b6a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -498,7 +498,7 @@ "nosniff" ], "x-ms-request-id": [ - "df6b2155-41a1-4368-8b84-877300fab53e" + "b22f0888-c5d0-4bd4-9449-f023958fb53d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -507,13 +507,13 @@ "11986" ], "x-ms-correlation-request-id": [ - "ed4910cf-42a0-4e52-9c97-921394884faa" + "b22f0888-c5d0-4bd4-9449-f023958fb53d" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001244Z:ed4910cf-42a0-4e52-9c97-921394884faa" + "WESTUS:20220401T185926Z:b22f0888-c5d0-4bd4-9449-f023958fb53d" ], "Date": [ - "Tue, 13 Jul 2021 00:12:43 GMT" + "Fri, 01 Apr 2022 18:59:25 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/ps350?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "91c222cb-3718-4efb-8682-c2c1fd4b501c" + "8b702e9c-d4eb-45a3-af0f-59818152c134" ], "If-Match": [ "*" @@ -544,16 +544,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "86" + "87" ] }, "ResponseHeaders": { @@ -564,7 +564,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+8=\"" + "\"AAAAAAAAC7E=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,7 +573,7 @@ "nosniff" ], "x-ms-request-id": [ - "dd313866-1ca6-4d9a-838b-5381fd915d9b" + "a6c6c9eb-546f-4a34-8c6d-4e3dd68fb77e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -582,16 +582,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "7d6ef448-82b0-4dc8-ab2a-ae1bdfcc33b0" + "a6c6c9eb-546f-4a34-8c6d-4e3dd68fb77e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001239Z:7d6ef448-82b0-4dc8-ab2a-ae1bdfcc33b0" + "WESTUS:20220401T185924Z:a6c6c9eb-546f-4a34-8c6d-4e3dd68fb77e" ], "Date": [ - "Tue, 13 Jul 2021 00:12:38 GMT" + "Fri, 01 Apr 2022 18:59:23 GMT" ], "Content-Length": [ - "400" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,26 +600,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\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/products?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "249b0be6-580f-470c-98a8-7553715858d4" + "0984963d-012d-4b85-951a-b5f6d6d8bd27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -636,7 +636,7 @@ "nosniff" ], "x-ms-request-id": [ - "28d2d38e-0013-4851-bb0e-23b0c6317ba9" + "49ea62e8-fb82-40bf-88e2-d033ac5e8a9a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -645,16 +645,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "d7c8fd1d-fbf0-4fa5-b403-6535d1c5207a" + "49ea62e8-fb82-40bf-88e2-d033ac5e8a9a" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001239Z:d7c8fd1d-fbf0-4fa5-b403-6535d1c5207a" + "WESTUS:20220401T185924Z:49ea62e8-fb82-40bf-88e2-d033ac5e8a9a" ], "Date": [ - "Tue, 13 Jul 2021 00:12:38 GMT" + "Fri, 01 Apr 2022 18:59:23 GMT" ], "Content-Length": [ - "1287" + "1305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,26 +663,26 @@ "-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\": 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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/ps350?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzMzUwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/ps1481?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9wczE0ODE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29836173-f9fb-4589-9806-0ca7c9243f10" + "9c682489-6486-4f1b-a8a0-a5be6c2b5af8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -693,7 +693,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+8=\"" + "\"AAAAAAAAC7E=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -702,7 +702,7 @@ "nosniff" ], "x-ms-request-id": [ - "fcf0d88b-b57b-4d69-baaf-6dbe3fff0a5b" + "7efdacdb-e729-4a39-a5ce-36c10dc8c4c6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -711,16 +711,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "c7729575-5dc4-4e96-bcbd-7c17941a4471" + "7efdacdb-e729-4a39-a5ce-36c10dc8c4c6" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001239Z:c7729575-5dc4-4e96-bcbd-7c17941a4471" + "WESTUS:20220401T185924Z:7efdacdb-e729-4a39-a5ce-36c10dc8c4c6" ], "Date": [ - "Tue, 13 Jul 2021 00:12:39 GMT" + "Fri, 01 Apr 2022 18:59:23 GMT" ], "Content-Length": [ - "426" + "439" ], "Content-Type": [ "application/json; charset=utf-8" @@ -729,26 +729,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\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/products/starter/groups?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4a8f62f-8d0f-437f-9d15-4b5630a4d7e6" + "45d91dd8-4231-436b-9e06-b051bf37572a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -765,7 +765,7 @@ "nosniff" ], "x-ms-request-id": [ - "2bc124a5-2e7a-4d1e-9edf-d06940fc1eff" + "59873581-f6e9-4b46-b9cd-cdfd4e817e88" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -774,16 +774,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "bc21b2a8-717c-4fc8-bd8c-9aace352db80" + "59873581-f6e9-4b46-b9cd-cdfd4e817e88" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001240Z:bc21b2a8-717c-4fc8-bd8c-9aace352db80" + "WESTUS:20220401T185924Z:59873581-f6e9-4b46-b9cd-cdfd4e817e88" ], "Date": [ - "Tue, 13 Jul 2021 00:12:39 GMT" + "Fri, 01 Apr 2022 18:59:23 GMT" ], "Content-Length": [ - "2363" + "2406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,26 +792,26 @@ "-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/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52998508-11ea-4850-8502-5b9e1fd99076" + "3fe18696-2586-4a41-a4d7-7740657e4802" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -828,7 +828,7 @@ "nosniff" ], "x-ms-request-id": [ - "b6322dc1-6e7d-4b45-a58b-2277a86360c6" + "55d71f82-9a00-43ee-bb7b-e59ce61ad17f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -837,16 +837,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "eb92a59e-8a8e-4d02-b62f-2852b7f451cc" + "55d71f82-9a00-43ee-bb7b-e59ce61ad17f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001240Z:eb92a59e-8a8e-4d02-b62f-2852b7f451cc" + "WESTUS:20220401T185924Z:55d71f82-9a00-43ee-bb7b-e59ce61ad17f" ], "Date": [ - "Tue, 13 Jul 2021 00:12:40 GMT" + "Fri, 01 Apr 2022 18:59:24 GMT" ], "Content-Length": [ - "1886" + "1916" ], "Content-Type": [ "application/json; charset=utf-8" @@ -855,26 +855,26 @@ "-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 \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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 \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps350?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzMzUwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/ps1481?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9wczE0ODE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa963712-622d-43f2-8b3d-6047cdf5d614" + "b6756128-a510-4a89-a39c-bf544329d52a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -891,7 +891,7 @@ "nosniff" ], "x-ms-request-id": [ - "557da25a-a38e-44eb-9935-ede10310e16c" + "4e2a5335-028f-4e17-b4f4-291d079b2064" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -900,13 +900,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "cdc21493-434b-4dbc-9f84-60f6ef2d6b18" + "4e2a5335-028f-4e17-b4f4-291d079b2064" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001240Z:cdc21493-434b-4dbc-9f84-60f6ef2d6b18" + "WESTUS:20220401T185924Z:4e2a5335-028f-4e17-b4f4-291d079b2064" ], "Date": [ - "Tue, 13 Jul 2021 00:12:40 GMT" + "Fri, 01 Apr 2022 18:59:24 GMT" ], "Expires": [ "-1" @@ -919,22 +919,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a639a03-119f-4c61-94ad-2af0c72ee0de" + "bf0c2584-7df2-4c78-a380-67b02757421d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -951,7 +951,7 @@ "nosniff" ], "x-ms-request-id": [ - "7de8b4e7-14cf-4bcc-9f19-65462b867167" + "5e7ee135-4e62-4cf2-9f7d-84129e9c8abc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -960,16 +960,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "31707ca7-d147-41b8-98fe-02179ae49f3c" + "5e7ee135-4e62-4cf2-9f7d-84129e9c8abc" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001240Z:31707ca7-d147-41b8-98fe-02179ae49f3c" + "WESTUS:20220401T185925Z:5e7ee135-4e62-4cf2-9f7d-84129e9c8abc" ], "Date": [ - "Tue, 13 Jul 2021 00:12:40 GMT" + "Fri, 01 Apr 2022 18:59:24 GMT" ], "Content-Length": [ - "664" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -978,26 +978,26 @@ "-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\",\r\n \"type\": \"Microsoft.ApiManagement/service/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 \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/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\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.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/groups/ps350/users/1?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MC91c2Vycy8xP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481/users/1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxL3VzZXJzLzE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4e2af03-e52d-4906-8915-2970e261b11b" + "22de021d-3377-413e-8b40-74278ab6c7eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1008,7 +1008,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA//s=\"" + "\"AAAAAAAAC70=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1017,7 +1017,7 @@ "nosniff" ], "x-ms-request-id": [ - "39072f9f-feb3-456e-b51d-543c47f44d79" + "4120a762-d908-4673-8343-9696f51af698" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1026,16 +1026,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "5d5bcb03-5847-4059-927f-e73e67073f5f" + "4120a762-d908-4673-8343-9696f51af698" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001241Z:5d5bcb03-5847-4059-927f-e73e67073f5f" + "WESTUS:20220401T185925Z:4120a762-d908-4673-8343-9696f51af698" ], "Date": [ - "Tue, 13 Jul 2021 00:12:41 GMT" + "Fri, 01 Apr 2022 18:59:24 GMT" ], "Content-Length": [ - "503" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,26 +1044,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481/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\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy8xL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96ee60d9-caf8-4a45-aa7a-446e9be5599b" + "1f93f32b-5328-41a4-8daf-2d8fc239843e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1080,7 +1080,7 @@ "nosniff" ], "x-ms-request-id": [ - "9d9f3508-3656-4ffe-a96f-f7d1b7d99102" + "51c615bc-c201-4dc6-aeeb-2d8a8bec4d06" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1089,16 +1089,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "82e69446-6924-4279-8774-e58fc11e79b4" + "51c615bc-c201-4dc6-aeeb-2d8a8bec4d06" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001242Z:82e69446-6924-4279-8774-e58fc11e79b4" + "WESTUS:20220401T185925Z:51c615bc-c201-4dc6-aeeb-2d8a8bec4d06" ], "Date": [ - "Tue, 13 Jul 2021 00:12:42 GMT" + "Fri, 01 Apr 2022 18:59:24 GMT" ], "Content-Length": [ - "1712" + "1745" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1107,26 +1107,26 @@ "-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/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy8xL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04446eb0-3df8-4081-9214-84c0e7c4ae79" + "adcc1528-c662-4e07-b12f-7a167b8e65e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1143,7 +1143,7 @@ "nosniff" ], "x-ms-request-id": [ - "6e55f260-6dc0-4af0-8eae-e2448c8755b4" + "9c07bac2-3d75-4eee-a9a6-d536f50bd046" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1152,16 +1152,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "be1fab11-dc31-41c4-8552-25b70989a35e" + "9c07bac2-3d75-4eee-a9a6-d536f50bd046" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001243Z:be1fab11-dc31-41c4-8552-25b70989a35e" + "WESTUS:20220401T185925Z:9c07bac2-3d75-4eee-a9a6-d536f50bd046" ], "Date": [ - "Tue, 13 Jul 2021 00:12:42 GMT" + "Fri, 01 Apr 2022 18:59:25 GMT" ], "Content-Length": [ - "1247" + "1267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1170,26 +1170,26 @@ "-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 \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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 \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350/users/1?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MC91c2Vycy8xP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481/users/1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxL3VzZXJzLzE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be4f5b63-37a2-46ef-8bc0-8148e42e9710" + "032d6525-6ae6-4bc9-9578-264ecb5e6a13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1206,7 +1206,7 @@ "nosniff" ], "x-ms-request-id": [ - "8d2a1b67-c687-4a2f-b6db-20ead0b38f12" + "ce9e853e-8543-4a14-aa09-06f67ab00fee" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1215,13 +1215,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "fbd2715c-03d7-41a6-90a9-c683ce00c247" + "ce9e853e-8543-4a14-aa09-06f67ab00fee" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001243Z:fbd2715c-03d7-41a6-90a9-c683ce00c247" + "WESTUS:20220401T185925Z:ce9e853e-8543-4a14-aa09-06f67ab00fee" ], "Date": [ - "Tue, 13 Jul 2021 00:12:42 GMT" + "Fri, 01 Apr 2022 18:59:24 GMT" ], "Expires": [ "-1" @@ -1234,22 +1234,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxMzY2P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps6613\",\r\n \"description\": \"ps5121\",\r\n \"type\": \"external\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps7498\",\r\n \"description\": \"ps1129\",\r\n \"type\": \"external\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a5897445-b3af-4f5b-8005-00b47f906c60" + "6958c243-2924-402e-835a-fb74ccc303dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,7 +1266,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAAU=\"" + "\"AAAAAAAAC8c=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,7 +1275,7 @@ "nosniff" ], "x-ms-request-id": [ - "020a5dac-8395-4408-a062-ab0b220d4305" + "20033543-6993-4455-9689-2e0b00b7f15f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1284,16 +1284,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "338878cb-e32c-4a45-8c3c-fe7c3b35e43d" + "20033543-6993-4455-9689-2e0b00b7f15f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001243Z:338878cb-e32c-4a45-8c3c-fe7c3b35e43d" + "WESTUS:20220401T185926Z:20033543-6993-4455-9689-2e0b00b7f15f" ], "Date": [ - "Tue, 13 Jul 2021 00:12:43 GMT" + "Fri, 01 Apr 2022 18:59:25 GMT" ], "Content-Length": [ - "415" + "427" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1302,26 +1302,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps323\",\r\n \"properties\": {\r\n \"displayName\": \"ps6613\",\r\n \"description\": \"ps5121\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": \"aad:///groups/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1366\",\r\n \"properties\": {\r\n \"displayName\": \"ps7498\",\r\n \"description\": \"ps1129\",\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/ps323?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxMzY2P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5897445-b3af-4f5b-8005-00b47f906c60" + "6958c243-2924-402e-835a-fb74ccc303dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1332,7 +1332,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAAU=\"" + "\"AAAAAAAAC8c=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1341,7 @@ "nosniff" ], "x-ms-request-id": [ - "a60b2962-d3c7-494e-911c-25b565c53211" + "f14f40e7-260c-4529-b98d-02b5bbdf1739" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1350,16 +1350,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "3d286974-8dc2-4ed2-91c9-b42d5fcad137" + "f14f40e7-260c-4529-b98d-02b5bbdf1739" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001243Z:3d286974-8dc2-4ed2-91c9-b42d5fcad137" + "WESTUS:20220401T185926Z:f14f40e7-260c-4529-b98d-02b5bbdf1739" ], "Date": [ - "Tue, 13 Jul 2021 00:12:43 GMT" + "Fri, 01 Apr 2022 18:59:25 GMT" ], "Content-Length": [ - "403" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1368,26 +1368,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps323\",\r\n \"properties\": {\r\n \"displayName\": \"ps6613\",\r\n \"description\": \"ps5121\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1366\",\r\n \"properties\": {\r\n \"displayName\": \"ps7498\",\r\n \"description\": \"ps1129\",\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/ps323?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxMzY2P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4de88b8-0597-48de-a79d-d67ea20a6d38" + "7fd70f9c-0378-4f6c-a80e-c9731f5269fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1404,7 +1404,7 @@ "nosniff" ], "x-ms-request-id": [ - "e3dbac89-dc7f-4bb7-bf82-d5a8d39ca6fd" + "65bf052b-54ea-4562-a1c9-6fb4fe53feee" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1413,13 +1413,13 @@ "11985" ], "x-ms-correlation-request-id": [ - "c7529941-221a-4ae3-a7f3-426c6d420f63" + "65bf052b-54ea-4562-a1c9-6fb4fe53feee" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001244Z:c7529941-221a-4ae3-a7f3-426c6d420f63" + "WESTUS:20220401T185926Z:65bf052b-54ea-4562-a1c9-6fb4fe53feee" ], "Date": [ - "Tue, 13 Jul 2021 00:12:44 GMT" + "Fri, 01 Apr 2022 18:59:25 GMT" ], "Content-Length": [ "81" @@ -1435,13 +1435,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "479e03ad-f46b-463e-8a2f-9e00ec47bf5c" + "0bf21ff1-c77a-4623-beed-6848fd253bf7" ], "If-Match": [ "*" @@ -1450,10 +1450,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1470,7 +1470,7 @@ "nosniff" ], "x-ms-request-id": [ - "78731f69-7bf9-458c-9a4d-279a596e68c5" + "5c019c3f-62f1-487a-b379-9b6ff459948b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1479,13 +1479,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "ecc7de7f-486d-4299-9492-eb964b68f508" + "5c019c3f-62f1-487a-b379-9b6ff459948b" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001244Z:ecc7de7f-486d-4299-9492-eb964b68f508" + "WESTUS:20220401T185926Z:5c019c3f-62f1-487a-b379-9b6ff459948b" ], "Date": [ - "Tue, 13 Jul 2021 00:12:43 GMT" + "Fri, 01 Apr 2022 18:59:25 GMT" ], "Expires": [ "-1" @@ -1498,13 +1498,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxMzY2P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95e4e37b-5c66-46d9-ae41-f96c5a98c3dc" + "26f32dc4-cdd0-41a9-86ed-e25d9b4f3f9c" ], "If-Match": [ "*" @@ -1513,10 +1513,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1533,7 +1533,7 @@ "nosniff" ], "x-ms-request-id": [ - "9469d9b4-0872-4797-a29b-2ef05f4ffc37" + "54f2b806-9449-4a1c-b6a2-4841eb722cfa" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1542,13 +1542,13 @@ "14996" ], "x-ms-correlation-request-id": [ - "fd9a7fc0-07b0-4986-9467-fe690e0b3bc0" + "54f2b806-9449-4a1c-b6a2-4841eb722cfa" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001244Z:fd9a7fc0-07b0-4986-9467-fe690e0b3bc0" + "WESTUS:20220401T185926Z:54f2b806-9449-4a1c-b6a2-4841eb722cfa" ], "Date": [ - "Tue, 13 Jul 2021 00:12:43 GMT" + "Fri, 01 Apr 2022 18:59:25 GMT" ], "Expires": [ "-1" @@ -1563,17 +1563,17 @@ ], "Names": { "": [ - "ps350", - "ps323", - "ps3090", - "ps6658", - "ps816", - "ps9328", - "ps6613", - "ps5121" + "ps1481", + "ps1366", + "ps8746", + "ps6259", + "ps7389", + "ps9627", + "ps7498", + "ps1129" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 eba5620ce6e1..4282240fd944 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"ps4174\",\r\n \"clientSecret\": \"ps7883\"\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\": \"ps6293\",\r\n \"clientSecret\": \"ps1407\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b6b2fbba-be1f-4eaf-ad47-3f608ed4c878" + "073c289e-0bfa-4374-910c-5dc65a6aff86" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+k=\"" + "\"AAAAAAAAC6s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "73122825-eaa4-42bf-95bd-4fc4d5ccca45" + "63755eb6-2fb8-438c-a640-79e802744b88" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,16 +51,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "71619b19-e7a7-46a1-a686-8592cbd6d1f0" + "63755eb6-2fb8-438c-a640-79e802744b88" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001228Z:71619b19-e7a7-46a1-a686-8592cbd6d1f0" + "WESTUS:20220401T185916Z:63755eb6-2fb8-438c-a640-79e802744b88" ], "Date": [ - "Tue, 13 Jul 2021 00:12:27 GMT" + "Fri, 01 Apr 2022 18:59:16 GMT" ], "Content-Length": [ - "583" + "593" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,26 +69,26 @@ "-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\": \"ps4174\",\r\n \"clientSecret\": \"ps7883\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\r\n \"clientSecret\": \"ps1407\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1f9674d-2c85-4287-8775-4a9766a85d45" + "495f26a3-383e-4c47-8d75-3d585972e4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -99,7 +99,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+k=\"" + "\"AAAAAAAAC6s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "x-ms-request-id": [ - "37b6844e-543c-4a09-a64f-4b942875e136" + "cf6bf056-c8f4-4bf6-88c6-ac4090539877" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,16 +117,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "08c6d569-9c31-4b13-85e2-6449eade8e5b" + "cf6bf056-c8f4-4bf6-88c6-ac4090539877" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001228Z:08c6d569-9c31-4b13-85e2-6449eade8e5b" + "WESTUS:20220401T185916Z:cf6bf056-c8f4-4bf6-88c6-ac4090539877" ], "Date": [ - "Tue, 13 Jul 2021 00:12:27 GMT" + "Fri, 01 Apr 2022 18:59:16 GMT" ], "Content-Length": [ - "552" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -135,26 +135,26 @@ "-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\": \"ps4174\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6185062b-fd29-42b5-a310-ac77eb884a97" + "5dac3850-a42a-4ab4-a5dc-66ca6cd7926f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -165,7 +165,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+o=\"" + "\"AAAAAAAAC6w=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "x-ms-request-id": [ - "794479aa-09dc-4bff-a899-7dd331bcba0a" + "9af4eaa9-e243-4b99-87ee-29ce6fcc4656" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -183,16 +183,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "f0c82139-c02a-4988-a56b-535579f57452" + "9af4eaa9-e243-4b99-87ee-29ce6fcc4656" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001230Z:f0c82139-c02a-4988-a56b-535579f57452" + "WESTUS:20220401T185917Z:9af4eaa9-e243-4b99-87ee-29ce6fcc4656" ], "Date": [ - "Tue, 13 Jul 2021 00:12:29 GMT" + "Fri, 01 Apr 2022 18:59:17 GMT" ], "Content-Length": [ - "609" + "619" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,26 +201,26 @@ "-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\": \"ps4174\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e7dc37b-e51c-44ee-9881-6e73b8338b5d" + "f8c92b6f-856d-4334-b394-4ee16a703dbe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -237,7 +237,7 @@ "nosniff" ], "x-ms-request-id": [ - "2e5560ed-a84f-4d6e-a30e-8ad051627e6d" + "61853753-27bb-4535-bab2-784fe8eccb95" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -246,13 +246,13 @@ "11996" ], "x-ms-correlation-request-id": [ - "789b34aa-de29-42c9-9fda-131e34206b8e" + "61853753-27bb-4535-bab2-784fe8eccb95" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001230Z:789b34aa-de29-42c9-9fda-131e34206b8e" + "WESTUS:20220401T185918Z:61853753-27bb-4535-bab2-784fe8eccb95" ], "Date": [ - "Tue, 13 Jul 2021 00:12:29 GMT" + "Fri, 01 Apr 2022 18:59:18 GMT" ], "Content-Length": [ "92" @@ -268,22 +268,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63112a38-6c1d-4ed6-8c91-bfda26cb0f52" + "8bfd01c9-2900-468b-b62b-19b7e739249d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -300,7 +300,7 @@ "nosniff" ], "x-ms-request-id": [ - "2cc58cc5-07db-44e5-b612-d8dd4bdf4480" + "bddfe20c-8122-44fd-958b-f64fa9291b3c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,13 +309,13 @@ "11995" ], "x-ms-correlation-request-id": [ - "26e30d3a-f9d1-4735-940b-b37dc1814a7a" + "bddfe20c-8122-44fd-958b-f64fa9291b3c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001230Z:26e30d3a-f9d1-4735-940b-b37dc1814a7a" + "WESTUS:20220401T185918Z:bddfe20c-8122-44fd-958b-f64fa9291b3c" ], "Date": [ - "Tue, 13 Jul 2021 00:12:29 GMT" + "Fri, 01 Apr 2022 18:59:18 GMT" ], "Content-Length": [ "92" @@ -331,22 +331,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQy9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkMvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84b4f2b1-1737-4bc6-b4c4-807d9b9260df" + "7ce27be8-61e8-4bd3-aa47-803455e03caa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -357,7 +357,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+k=\"" + "\"AAAAAAAAC6s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,7 +366,7 @@ "nosniff" ], "x-ms-request-id": [ - "a3c4ef51-5a5d-4390-be78-02870e6cc415" + "b511a7ae-2bbd-44de-bdff-7e600d9381b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,13 +375,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "a9492a7b-f016-4e0d-94e6-6af9e90e9536" + "b511a7ae-2bbd-44de-bdff-7e600d9381b5" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001229Z:a9492a7b-f016-4e0d-94e6-6af9e90e9536" + "WESTUS:20220401T185916Z:b511a7ae-2bbd-44de-bdff-7e600d9381b5" ], "Date": [ - "Tue, 13 Jul 2021 00:12:28 GMT" + "Fri, 01 Apr 2022 18:59:16 GMT" ], "Content-Length": [ "25" @@ -393,26 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps7883\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps1407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQy9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkMvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96029c0c-7f21-42fa-8d12-9087afd95bbb" + "c2a13265-b43e-4108-be46-825879076479" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -423,7 +423,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+o=\"" + "\"AAAAAAAAC6w=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +432,7 @@ "nosniff" ], "x-ms-request-id": [ - "163870f0-33eb-43e9-ab28-56a305c1c5d9" + "e78f0c3a-362a-4246-a86a-69ddc2657a4b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,13 +441,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "6267de33-9fe5-49c4-93f1-d910bb4b933a" + "e78f0c3a-362a-4246-a86a-69ddc2657a4b" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001230Z:6267de33-9fe5-49c4-93f1-d910bb4b933a" + "WESTUS:20220401T185918Z:e78f0c3a-362a-4246-a86a-69ddc2657a4b" ], "Date": [ - "Tue, 13 Jul 2021 00:12:29 GMT" + "Fri, 01 Apr 2022 18:59:18 GMT" ], "Content-Length": [ "25" @@ -459,26 +459,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps7883\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps1407\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07656e7d-7169-41fb-b48a-e8c47b193a71" + "cb9e1e3b-24fb-41e6-963c-f08a0b03005a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -495,7 +495,7 @@ "nosniff" ], "x-ms-request-id": [ - "05fef648-278d-4f9e-9125-9658c6b57744" + "0cd15215-5f33-4aab-9f2c-dbd740d7cd81" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,16 +504,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "d948596b-7314-4abc-8337-087533332076" + "0cd15215-5f33-4aab-9f2c-dbd740d7cd81" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001229Z:d948596b-7314-4abc-8337-087533332076" + "WESTUS:20220401T185917Z:0cd15215-5f33-4aab-9f2c-dbd740d7cd81" ], "Date": [ - "Tue, 13 Jul 2021 00:12:28 GMT" + "Fri, 01 Apr 2022 18:59:16 GMT" ], "Content-Length": [ - "652" + "662" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps4174\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6185062b-fd29-42b5-a310-ac77eb884a97" + "5dac3850-a42a-4ab4-a5dc-66ca6cd7926f" ], "If-Match": [ "*" @@ -541,10 +541,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -561,7 +561,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/+o=\"" + "\"AAAAAAAAC6w=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "nosniff" ], "x-ms-request-id": [ - "8ae76ca9-4f6f-4f0f-9e3f-af5b30f03960" + "f9c7235c-69db-4b81-9e8a-46a41a60a307" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -579,16 +579,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "bc3ba7aa-e8ec-48fb-821e-330c7ca3ea17" + "f9c7235c-69db-4b81-9e8a-46a41a60a307" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001230Z:bc3ba7aa-e8ec-48fb-821e-330c7ca3ea17" + "WESTUS:20220401T185917Z:f9c7235c-69db-4b81-9e8a-46a41a60a307" ], "Date": [ - "Tue, 13 Jul 2021 00:12:29 GMT" + "Fri, 01 Apr 2022 18:59:17 GMT" ], "Content-Length": [ - "640" + "650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -597,17 +597,17 @@ "-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\": \"ps4174\",\r\n \"clientSecret\": \"ps7883\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\r\n \"clientSecret\": \"ps1407\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d306423-22c0-4fd0-b143-6b32f5595fb1" + "ffb30a2f-9e25-4bf9-82ff-0c6c0d9db8aa" ], "If-Match": [ "*" @@ -616,10 +616,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -636,7 +636,7 @@ "nosniff" ], "x-ms-request-id": [ - "fc306e3b-e6d4-40d5-a3ae-26c7697a4cb1" + "4b5ea905-7453-41df-9e1a-c023519a7c35" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -645,13 +645,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "1a31171b-773b-4d99-96b3-7aceba37180e" + "4b5ea905-7453-41df-9e1a-c023519a7c35" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001230Z:1a31171b-773b-4d99-96b3-7aceba37180e" + "WESTUS:20220401T185918Z:4b5ea905-7453-41df-9e1a-c023519a7c35" ], "Date": [ - "Tue, 13 Jul 2021 00:12:29 GMT" + "Fri, 01 Apr 2022 18:59:18 GMT" ], "Expires": [ "-1" @@ -664,13 +664,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b32f77e8-5532-4cf0-b21f-a2ae30b7038d" + "1d52ec86-1674-4698-87b7-9fa425726cc7" ], "If-Match": [ "*" @@ -679,10 +679,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -699,7 +699,7 @@ "nosniff" ], "x-ms-request-id": [ - "0494f74e-6579-49e8-ad45-14c20b208141" + "91bbfbe0-cf84-48a1-97f6-f85f8a77c6f8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -708,13 +708,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "ebfa5d4c-92ba-49a6-8b12-f0eac0d0ea9e" + "91bbfbe0-cf84-48a1-97f6-f85f8a77c6f8" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001230Z:ebfa5d4c-92ba-49a6-8b12-f0eac0d0ea9e" + "WESTUS:20220401T185918Z:91bbfbe0-cf84-48a1-97f6-f85f8a77c6f8" ], "Date": [ - "Tue, 13 Jul 2021 00:12:29 GMT" + "Fri, 01 Apr 2022 18:59:18 GMT" ], "Expires": [ "-1" @@ -726,11 +726,11 @@ ], "Names": { "": [ - "ps4174", - "ps7883" + "ps6293", + "ps1407" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 ea13a54e33b1..b9a44fa73607 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps6025\",\r\n \"clientSecret\": \"ps8940\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"clientSecret\": \"ps2009\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "477ecaae-6598-442f-82b8-569f2d4c2831" + "28bc0549-9fa5-49b7-a1ae-869fffbb1717" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/1Q=\"" + "\"AAAAAAAACwM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "617cc2b8-bbc9-4b85-a332-8d62080c2e74" + "834dba69-a536-40f9-8cc4-9fb390ab471f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,16 +51,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "b5e64e18-8dd7-4107-963d-7d7f4bf15039" + "834dba69-a536-40f9-8cc4-9fb390ab471f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000823Z:b5e64e18-8dd7-4107-963d-7d7f4bf15039" + "WESTCENTRALUS:20220401T185700Z:834dba69-a536-40f9-8cc4-9fb390ab471f" ], "Date": [ - "Tue, 13 Jul 2021 00:08:22 GMT" + "Fri, 01 Apr 2022 18:56:59 GMT" ], "Content-Length": [ - "381" + "391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,26 +69,26 @@ "-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\": \"ps6025\",\r\n \"clientSecret\": \"ps8940\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"clientSecret\": \"ps2009\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8dbff30a-9c08-4518-876d-d6017f7477e0" + "7a2a052b-e32c-4b0f-8e5b-df65898bc690" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -99,7 +99,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/1Q=\"" + "\"AAAAAAAACwM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "x-ms-request-id": [ - "c60b22bf-7518-4c6d-bb65-393b250add72" + "73ae2dde-60d1-4828-8a05-80c783bc668e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,16 +117,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "f5dc3d09-2d21-4bef-8537-76634d284ba8" + "73ae2dde-60d1-4828-8a05-80c783bc668e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000824Z:f5dc3d09-2d21-4bef-8537-76634d284ba8" + "WESTCENTRALUS:20220401T185700Z:73ae2dde-60d1-4828-8a05-80c783bc668e" ], "Date": [ - "Tue, 13 Jul 2021 00:08:23 GMT" + "Fri, 01 Apr 2022 18:56:59 GMT" ], "Content-Length": [ - "350" + "360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -135,26 +135,26 @@ "-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\": \"ps6025\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "157592ff-c8e5-4f54-8c4a-ac9161593336" + "1d183bb8-c4f1-4d30-ba08-e69c4a18b93e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -165,7 +165,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/1U=\"" + "\"AAAAAAAACwQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "x-ms-request-id": [ - "d43a383d-735b-4c30-8e84-7b024641863d" + "57559292-660a-4bba-9dd1-04205cb77682" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -183,16 +183,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "5d4a7548-2a13-4bc9-9cfd-dbbc24424b8e" + "57559292-660a-4bba-9dd1-04205cb77682" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000824Z:5d4a7548-2a13-4bc9-9cfd-dbbc24424b8e" + "WESTCENTRALUS:20220401T185701Z:57559292-660a-4bba-9dd1-04205cb77682" ], "Date": [ - "Tue, 13 Jul 2021 00:08:23 GMT" + "Fri, 01 Apr 2022 18:57:00 GMT" ], "Content-Length": [ - "350" + "360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,26 +201,26 @@ "-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\": \"ps6025\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bb31a8c-917d-49d8-9820-ec4e8c7482b7" + "ab23cacf-5406-4df7-9bce-b7cf568665d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -237,7 +237,7 @@ "nosniff" ], "x-ms-request-id": [ - "52804492-25dc-452a-831c-f28aa20ea6ab" + "0834cd02-6b02-4f07-ab5f-8543c476d1ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -246,13 +246,13 @@ "11996" ], "x-ms-correlation-request-id": [ - "1531c853-ebd4-42f4-9867-abba732b331b" + "0834cd02-6b02-4f07-ab5f-8543c476d1ab" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000825Z:1531c853-ebd4-42f4-9867-abba732b331b" + "WESTCENTRALUS:20220401T185701Z:0834cd02-6b02-4f07-ab5f-8543c476d1ab" ], "Date": [ - "Tue, 13 Jul 2021 00:08:24 GMT" + "Fri, 01 Apr 2022 18:57:00 GMT" ], "Content-Length": [ "92" @@ -268,22 +268,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93a8f91b-13c2-4eec-8a8d-bfb2bfaa3140" + "d0299fed-fd60-4462-afc4-57e5140b3d29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -300,7 +300,7 @@ "nosniff" ], "x-ms-request-id": [ - "c747b4ec-19c6-47ac-a299-b490398f59e1" + "03f88e15-c782-45ad-b4b7-25f84e21570a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,13 +309,13 @@ "11995" ], "x-ms-correlation-request-id": [ - "6d76f45d-9ed4-4d2a-8abd-a94e2603425d" + "03f88e15-c782-45ad-b4b7-25f84e21570a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000825Z:6d76f45d-9ed4-4d2a-8abd-a94e2603425d" + "WESTCENTRALUS:20220401T185702Z:03f88e15-c782-45ad-b4b7-25f84e21570a" ], "Date": [ - "Tue, 13 Jul 2021 00:08:24 GMT" + "Fri, 01 Apr 2022 18:57:01 GMT" ], "Content-Length": [ "92" @@ -331,22 +331,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vay9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9a05685-ebba-4e42-9595-f0ca93409448" + "0515b1ed-b748-495d-8530-c4a53dd3c860" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -357,7 +357,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/1Q=\"" + "\"AAAAAAAACwM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,7 +366,7 @@ "nosniff" ], "x-ms-request-id": [ - "86e557ec-0b62-4d63-a5bf-16a07b9a6f54" + "2fd45c00-a5ca-4c9e-92e5-aa4c9c4ffdbd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,13 +375,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "ab373017-342a-44e6-b950-d8b77a46488e" + "2fd45c00-a5ca-4c9e-92e5-aa4c9c4ffdbd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000824Z:ab373017-342a-44e6-b950-d8b77a46488e" + "WESTCENTRALUS:20220401T185700Z:2fd45c00-a5ca-4c9e-92e5-aa4c9c4ffdbd" ], "Date": [ - "Tue, 13 Jul 2021 00:08:23 GMT" + "Fri, 01 Apr 2022 18:56:59 GMT" ], "Content-Length": [ "25" @@ -393,26 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps8940\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps2009\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vay9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b42f8c7-1e6b-4645-8328-263ce14834bd" + "60e5778a-3f89-41bf-a081-ab2d42db228a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -423,7 +423,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/1U=\"" + "\"AAAAAAAACwQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +432,7 @@ "nosniff" ], "x-ms-request-id": [ - "812b6d5a-d9ab-4e74-ac43-915b35d2097d" + "6fcfc14e-8dd5-42be-a607-7dfa128c203e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,13 +441,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "dd04b33a-0710-4164-a09c-78b2187b0de1" + "6fcfc14e-8dd5-42be-a607-7dfa128c203e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000824Z:dd04b33a-0710-4164-a09c-78b2187b0de1" + "WESTCENTRALUS:20220401T185701Z:6fcfc14e-8dd5-42be-a607-7dfa128c203e" ], "Date": [ - "Tue, 13 Jul 2021 00:08:23 GMT" + "Fri, 01 Apr 2022 18:57:00 GMT" ], "Content-Length": [ "25" @@ -459,26 +459,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps2743\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps6087\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15107153-3373-419f-b8ba-86f5874ce76c" + "8d737503-ce81-4a88-9f64-4b35cc2c7bd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -495,7 +495,7 @@ "nosniff" ], "x-ms-request-id": [ - "bcc423d0-1b51-483c-98ba-41206413b169" + "3c6b0c9a-a1c9-4482-9be8-b93bce035525" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,16 +504,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "2694906c-0872-49cd-961e-4ccc702e0525" + "3c6b0c9a-a1c9-4482-9be8-b93bce035525" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000824Z:2694906c-0872-49cd-961e-4ccc702e0525" + "WESTCENTRALUS:20220401T185700Z:3c6b0c9a-a1c9-4482-9be8-b93bce035525" ], "Date": [ - "Tue, 13 Jul 2021 00:08:23 GMT" + "Fri, 01 Apr 2022 18:56:59 GMT" ], "Content-Length": [ - "426" + "436" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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\": \"ps6025\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\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=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps2743\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps6087\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "157592ff-c8e5-4f54-8c4a-ac9161593336" + "1d183bb8-c4f1-4d30-ba08-e69c4a18b93e" ], "If-Match": [ "*" @@ -541,10 +541,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -561,7 +561,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/1U=\"" + "\"AAAAAAAACwQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "nosniff" ], "x-ms-request-id": [ - "02a2db8d-4407-40bd-85d1-6b61d11b6a73" + "8cbbef85-4df7-4b30-b33d-5be4502103c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -579,16 +579,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "eae6d7da-dce5-42b3-94e0-c26424ee2a98" + "8cbbef85-4df7-4b30-b33d-5be4502103c9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000824Z:eae6d7da-dce5-42b3-94e0-c26424ee2a98" + "WESTCENTRALUS:20220401T185701Z:8cbbef85-4df7-4b30-b33d-5be4502103c9" ], "Date": [ - "Tue, 13 Jul 2021 00:08:23 GMT" + "Fri, 01 Apr 2022 18:57:00 GMT" ], "Content-Length": [ - "381" + "391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -597,17 +597,17 @@ "-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\": \"ps6025\",\r\n \"clientSecret\": \"ps2743\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"clientSecret\": \"ps6087\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12ec994a-12da-4b61-a22d-41bb60754678" + "becbda77-a420-4c46-bcdb-d5ee81c08671" ], "If-Match": [ "*" @@ -616,10 +616,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -636,7 +636,7 @@ "nosniff" ], "x-ms-request-id": [ - "0fad45c0-3cc1-4912-bc19-159cc427508d" + "2d96fe40-9bcc-404e-8847-6b4fd5e01fcc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -645,13 +645,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "74bcebd8-68cf-4b16-a768-3a0fc587841d" + "2d96fe40-9bcc-404e-8847-6b4fd5e01fcc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000825Z:74bcebd8-68cf-4b16-a768-3a0fc587841d" + "WESTCENTRALUS:20220401T185701Z:2d96fe40-9bcc-404e-8847-6b4fd5e01fcc" ], "Date": [ - "Tue, 13 Jul 2021 00:08:24 GMT" + "Fri, 01 Apr 2022 18:57:00 GMT" ], "Expires": [ "-1" @@ -664,13 +664,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de588e49-f698-4ea7-ae24-ea0f03f877b8" + "42bd69fc-e4f8-4804-85af-2ec5369bab31" ], "If-Match": [ "*" @@ -679,10 +679,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -699,7 +699,7 @@ "nosniff" ], "x-ms-request-id": [ - "61c9edd6-3832-43ef-9415-23f990297f94" + "cfa3a800-885d-4fea-974e-44e8af0016a5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -708,13 +708,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "56fdf13f-e44e-43ab-8218-f9e2d8154da9" + "cfa3a800-885d-4fea-974e-44e8af0016a5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T000825Z:56fdf13f-e44e-43ab-8218-f9e2d8154da9" + "WESTCENTRALUS:20220401T185702Z:cfa3a800-885d-4fea-974e-44e8af0016a5" ], "Date": [ - "Tue, 13 Jul 2021 00:08:24 GMT" + "Fri, 01 Apr 2022 18:57:01 GMT" ], "Expires": [ "-1" @@ -726,12 +726,12 @@ ], "Names": { "": [ - "ps6025", - "ps8940", - "ps2743" + "ps1177", + "ps2009", + "ps6087" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 6b978bda2ef0..a144681cb206 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,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps9214\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Endpoint=sb://sdkeventhub.servicebus.windows.net/;SharedAccessKeyName=send;SharedAccessKey=GUjgwMQ25fgHXE4ShYesdTHGEafE1hYQ4fOqFqH6HqI=;EntityPath=powershell\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps1839\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Endpoint=sb://sdkeventhub.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=JAjWJTI8CDJaPz0so9U5OqmtW3qFdkA/BGtbxsa4YeI=\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bd761470-846d-4b6f-93f9-8255745107e0" + "dc66f02c-0745-4993-ba49-9618174cffbe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "364" + "363" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAnQ=\"" + "\"AAAAAAAADr0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "ab1f9490-841b-4bea-b9b9-70db2a7cec1f" + "3a2b5648-bbd5-4025-8949-6b467b328d34" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,16 +51,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "e3fe7424-7a74-4615-9363-3d3856515b5d" + "3a2b5648-bbd5-4025-8949-6b467b328d34" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004228Z:e3fe7424-7a74-4615-9363-3d3856515b5d" + "WESTUS:20220406T001347Z:3a2b5648-bbd5-4025-8949-6b467b328d34" ], "Date": [ - "Wed, 14 Jul 2021 00:42:28 GMT" + "Wed, 06 Apr 2022 00:13:47 GMT" ], "Content-Length": [ - "527" + "537" ], "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/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps9214\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps1839\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\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/ps7695?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"isBuffered\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"isBuffered\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "595b7b1c-aed1-4560-be10-1cd19c71f179" + "77996e53-1870-419e-afd7-8e52bada692a" ], "If-Match": [ "*" @@ -88,16 +88,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "119" + "118" ] }, "ResponseHeaders": { @@ -108,7 +108,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAnc=\"" + "\"AAAAAAAADsA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "x-ms-request-id": [ - "ac943eb2-b25b-49f0-a5c8-b11be7e7fd51" + "c724cd6a-58c7-4dd7-bdd5-a5d9b548e77b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -126,16 +126,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "1646fd98-a3eb-49c1-93f9-bbc2396e22b7" + "c724cd6a-58c7-4dd7-bdd5-a5d9b548e77b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004229Z:1646fd98-a3eb-49c1-93f9-bbc2396e22b7" + "WESTUS:20220406T001349Z:c724cd6a-58c7-4dd7-bdd5-a5d9b548e77b" ], "Date": [ - "Wed, 14 Jul 2021 00:42:29 GMT" + "Wed, 06 Apr 2022 00:13:48 GMT" ], "Content-Length": [ - "528" + "537" ], "Content-Type": [ "application/json; charset=utf-8" @@ -144,26 +144,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\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/ps7695?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "595b7b1c-aed1-4560-be10-1cd19c71f179" + "77996e53-1870-419e-afd7-8e52bada692a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -174,7 +174,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAnc=\"" + "\"AAAAAAAADsA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,25 +183,25 @@ "nosniff" ], "x-ms-request-id": [ - "f71e06c3-6dd9-4c89-ade6-a8c52f8770ec" + "a2d51543-603d-43d5-bcb7-750aac81b1ac" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "219fe671-b4b9-4094-8deb-6c98aead66e9" + "a2d51543-603d-43d5-bcb7-750aac81b1ac" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004229Z:219fe671-b4b9-4094-8deb-6c98aead66e9" + "WESTUS:20220406T001349Z:a2d51543-603d-43d5-bcb7-750aac81b1ac" ], "Date": [ - "Wed, 14 Jul 2021 00:42:29 GMT" + "Wed, 06 Apr 2022 00:13:48 GMT" ], "Content-Length": [ - "528" + "537" ], "Content-Type": [ "application/json; charset=utf-8" @@ -210,26 +210,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\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/ps7695?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58172da0-49bd-45dc-b1b1-533f67d7e772" + "d0816007-cd69-4655-9aed-ef1569154574" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -240,7 +240,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAnc=\"" + "\"AAAAAAAADsA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,25 +249,25 @@ "nosniff" ], "x-ms-request-id": [ - "889cc710-001e-460f-9a71-ec3c2bc95934" + "90132a46-62c9-46a8-b8de-37879441c6e1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11997" ], "x-ms-correlation-request-id": [ - "d3268c8c-c9ca-47a1-b017-f0deeaf9ad6d" + "90132a46-62c9-46a8-b8de-37879441c6e1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004230Z:d3268c8c-c9ca-47a1-b017-f0deeaf9ad6d" + "WESTUS:20220406T001351Z:90132a46-62c9-46a8-b8de-37879441c6e1" ], "Date": [ - "Wed, 14 Jul 2021 00:42:30 GMT" + "Wed, 06 Apr 2022 00:13:50 GMT" ], "Content-Length": [ - "528" + "537" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,26 +276,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\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/ps7695?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cb7e9cd-c618-4d93-a1e4-1dad00e18f65" + "f373fa19-9ba7-4dbe-8fd0-25c81f108c97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -312,22 +312,22 @@ "nosniff" ], "x-ms-request-id": [ - "46e5a76f-5664-4581-8708-95b3866a51a0" + "b68f1c6a-927f-4503-9cf6-c398b642035d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11996" ], "x-ms-correlation-request-id": [ - "ca13838a-dd6a-41fc-bc24-8363da8933fe" + "b68f1c6a-927f-4503-9cf6-c398b642035d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004234Z:ca13838a-dd6a-41fc-bc24-8363da8933fe" + "WESTUS:20220406T001355Z:b68f1c6a-927f-4503-9cf6-c398b642035d" ], "Date": [ - "Wed, 14 Jul 2021 00:42:34 GMT" + "Wed, 06 Apr 2022 00:13:54 GMT" ], "Content-Length": [ "82" @@ -343,22 +343,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac554f8c-6b7f-4acb-8183-a01ca156dd27" + "8bd9c137-e24c-4ec0-900c-9b05427bfcaf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -375,25 +375,25 @@ "nosniff" ], "x-ms-request-id": [ - "7c4e4e1c-2058-4a66-9256-fdb77eec418f" + "a3f504ef-ae36-4850-a3df-d6ff1eeae557" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "e629daf0-1793-4ca5-a830-f932f9443fea" + "a3f504ef-ae36-4850-a3df-d6ff1eeae557" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004230Z:e629daf0-1793-4ca5-a830-f932f9443fea" + "WESTUS:20220406T001350Z:a3f504ef-ae36-4850-a3df-d6ff1eeae557" ], "Date": [ - "Wed, 14 Jul 2021 00:42:30 GMT" + "Wed, 06 Apr 2022 00:13:50 GMT" ], "Content-Length": [ - "628" + "637" ], "Content-Type": [ "application/json; charset=utf-8" @@ -402,26 +402,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\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/ps1995?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5265?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTI2NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9115\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"c290e57f-fb18-403c-97af-86fb58f6e612\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9812\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"a4144606-1fdb-4dec-ac82-368cc2746044\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1d51beb8-af72-4100-b846-00e52d775094" + "5fe9102f-22be-4e02-a9db-4a225c091cf1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,7 +438,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAn0=\"" + "\"AAAAAAAADsY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -447,7 +447,7 @@ "nosniff" ], "x-ms-request-id": [ - "176d8772-313c-4c27-9f6b-b5b7baf115f5" + "f6983e27-53a1-4632-968a-27bf03bad47c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,16 +456,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "8625fd64-75f2-406d-94ef-2946782633a1" + "f6983e27-53a1-4632-968a-27bf03bad47c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004233Z:8625fd64-75f2-406d-94ef-2946782633a1" + "WESTUS:20220406T001354Z:f6983e27-53a1-4632-968a-27bf03bad47c" ], "Date": [ - "Wed, 14 Jul 2021 00:42:33 GMT" + "Wed, 06 Apr 2022 00:13:53 GMT" ], "Content-Length": [ - "506" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -474,17 +474,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps1995\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9115\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--60ee32f9a2ca601290f0cc33}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5265\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5265\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9812\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--624cdb4201234e10f00b7b7a}}\"\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/ps7695?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c90ad9db-2542-4ab5-b571-887dd1e07bc8" + "017238d8-fe60-45a8-ab01-07cdf2fbfc76" ], "If-Match": [ "*" @@ -493,10 +493,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -513,7 +513,7 @@ "nosniff" ], "x-ms-request-id": [ - "a138696a-9aec-4af6-b45f-a6b8848762da" + "6990dcbc-1fee-4096-a344-d54a8e53696e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -522,13 +522,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "d096a8eb-839b-44ad-aa9b-17a5beb59b70" + "6990dcbc-1fee-4096-a344-d54a8e53696e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004234Z:d096a8eb-839b-44ad-aa9b-17a5beb59b70" + "WESTUS:20220406T001355Z:6990dcbc-1fee-4096-a344-d54a8e53696e" ], "Date": [ - "Wed, 14 Jul 2021 00:42:34 GMT" + "Wed, 06 Apr 2022 00:13:54 GMT" ], "Expires": [ "-1" @@ -541,13 +541,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5265?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTI2NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82a73cc7-9b24-4491-9741-6b407457b528" + "41e421e2-3964-422f-a203-686db090009b" ], "If-Match": [ "*" @@ -556,10 +556,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -576,7 +576,7 @@ "nosniff" ], "x-ms-request-id": [ - "ff3a1210-5c25-453a-8dc3-5f66993afefd" + "d6232d08-00f1-4261-a5e0-5d59988068cb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -585,13 +585,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "62987fbc-36c0-46db-9e37-2bc8c037a900" + "d6232d08-00f1-4261-a5e0-5d59988068cb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004235Z:62987fbc-36c0-46db-9e37-2bc8c037a900" + "WESTUS:20220406T001359Z:d6232d08-00f1-4261-a5e0-5d59988068cb" ], "Date": [ - "Wed, 14 Jul 2021 00:42:35 GMT" + "Wed, 06 Apr 2022 00:13:59 GMT" ], "Expires": [ "-1" @@ -604,22 +604,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5265?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTI2NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86b4ce2e-9b33-4efc-8a51-947027548372" + "924247c1-7358-4089-85a3-feb9e426fb2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -636,22 +636,22 @@ "nosniff" ], "x-ms-request-id": [ - "be64b200-51f3-48ff-bfec-3960a1efce0a" + "ed8a0a1f-7bd9-4be1-8501-a0e429e010c7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11995" ], "x-ms-correlation-request-id": [ - "7e337b95-bd6e-4af2-ba00-9656407f8bee" + "ed8a0a1f-7bd9-4be1-8501-a0e429e010c7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004235Z:7e337b95-bd6e-4af2-ba00-9656407f8bee" + "WESTUS:20220406T001359Z:ed8a0a1f-7bd9-4be1-8501-a0e429e010c7" ], "Date": [ - "Wed, 14 Jul 2021 00:42:35 GMT" + "Wed, 06 Apr 2022 00:13:59 GMT" ], "Content-Length": [ "82" @@ -667,22 +667,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "089371bb-7dd3-47d3-84ff-73abc02a4f9b" + "cbc34f5e-ccc6-43e8-9171-58b5cfc965f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -699,25 +699,25 @@ "nosniff" ], "x-ms-request-id": [ - "752df368-d48a-45dd-a2bf-7077d8304fbb" + "962e2c2a-90e0-40e2-b242-fda42ecdb39d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11994" ], "x-ms-correlation-request-id": [ - "c74a6dd0-ee91-4c8b-b8ee-77d05919cd1f" + "962e2c2a-90e0-40e2-b242-fda42ecdb39d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004235Z:c74a6dd0-ee91-4c8b-b8ee-77d05919cd1f" + "WESTUS:20220406T001359Z:962e2c2a-90e0-40e2-b242-fda42ecdb39d" ], "Date": [ - "Wed, 14 Jul 2021 00:42:35 GMT" + "Wed, 06 Apr 2022 00:13:59 GMT" ], "Content-Length": [ - "506" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -726,17 +726,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/60ee32f4a2ca601290f0cc2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"60ee32f4a2ca601290f0cc2e\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials--60ee32f4a2ca601290f0cc2f\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/624cdb3a01234e10f00b7b75\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"624cdb3a01234e10f00b7b75\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials--624cdb3a01234e10f00b7b76\",\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/60ee32f4a2ca601290f0cc2e?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzYwZWUzMmY0YTJjYTYwMTI5MGYwY2MyZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/624cdb3a01234e10f00b7b75?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy82MjRjZGIzYTAxMjM0ZTEwZjAwYjdiNzU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39e66576-c04f-4c44-914d-f36b3c640955" + "b467d4eb-60a3-4793-aea7-4ba3a2d8cac7" ], "If-Match": [ "*" @@ -745,10 +745,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -765,7 +765,7 @@ "nosniff" ], "x-ms-request-id": [ - "276cf182-1c13-4efa-939c-010ee96ee874" + "ad2bae0a-c75e-4cef-8609-233c0d94a2fb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -774,13 +774,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "8d2ffa3d-982b-48b4-b279-fb3bcf4c7a40" + "ad2bae0a-c75e-4cef-8609-233c0d94a2fb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210714T004235Z:8d2ffa3d-982b-48b4-b279-fb3bcf4c7a40" + "WESTUS:20220406T001359Z:ad2bae0a-c75e-4cef-8609-233c0d94a2fb" ], "Date": [ - "Wed, 14 Jul 2021 00:42:35 GMT" + "Wed, 06 Apr 2022 00:13:59 GMT" ], "Expires": [ "-1" @@ -795,14 +795,14 @@ ], "Names": { "": [ - "ps7695", - "ps1995", - "ps9214", - "ps4560", - "ps9115" + "ps8876", + "ps5265", + "ps1839", + "ps554", + "ps9812" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 197dff7385b9..5f839fc13756 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4a779ca3-3491-4f69-b3ee-4a8b5275446f" + "bed78c40-82d0-4786-a7b0-710f0d358ef3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAgg=\"" + "\"AAAAAAAADcs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,25 +42,25 @@ "nosniff" ], "x-ms-request-id": [ - "8fc7b9f4-a8b3-48e8-b0ac-1d5666ce57a0" + "d6bcf068-1ed1-49ec-bc0f-869530940c6a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "acacaef8-5b73-49f5-9dd5-f37b48ce9a44" + "d6bcf068-1ed1-49ec-bc0f-869530940c6a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001941Z:acacaef8-5b73-49f5-9dd5-f37b48ce9a44" + "WESTUS:20220401T190605Z:d6bcf068-1ed1-49ec-bc0f-869530940c6a" ], "Date": [ - "Tue, 13 Jul 2021 00:19:40 GMT" + "Fri, 01 Apr 2022 19:06:05 GMT" ], "Content-Length": [ - "513" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,26 +69,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a779ca3-3491-4f69-b3ee-4a8b5275446f" + "bed78c40-82d0-4786-a7b0-710f0d358ef3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -99,7 +99,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAgg=\"" + "\"AAAAAAAADcs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,25 +108,25 @@ "nosniff" ], "x-ms-request-id": [ - "d6a26ac0-4afd-4acc-929e-02b7b4327ed5" + "5355ab1f-8cf8-48e8-baa7-fa9c00eac43d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "db3c6835-5eb1-4ca7-93ae-c63ac89c40f6" + "5355ab1f-8cf8-48e8-baa7-fa9c00eac43d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001941Z:db3c6835-5eb1-4ca7-93ae-c63ac89c40f6" + "WESTUS:20220401T190606Z:5355ab1f-8cf8-48e8-baa7-fa9c00eac43d" ], "Date": [ - "Tue, 13 Jul 2021 00:19:40 GMT" + "Fri, 01 Apr 2022 19:06:05 GMT" ], "Content-Length": [ - "513" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -135,26 +135,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df94e2a7-4b77-43d1-9160-da7c3e5da960" + "2aa5109d-8428-4402-ab84-cf44170eb6ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -165,7 +165,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAgg=\"" + "\"AAAAAAAADcs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,25 +174,25 @@ "nosniff" ], "x-ms-request-id": [ - "da32f50a-e79d-4c3a-8eec-9692f7f28105" + "e49fc430-a54a-41ff-926f-a9592c7e55c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-correlation-request-id": [ - "9640000f-c127-43e0-8c6e-26d00e55fc45" + "e49fc430-a54a-41ff-926f-a9592c7e55c8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001942Z:9640000f-c127-43e0-8c6e-26d00e55fc45" + "WESTUS:20220401T190607Z:e49fc430-a54a-41ff-926f-a9592c7e55c8" ], "Date": [ - "Tue, 13 Jul 2021 00:19:41 GMT" + "Fri, 01 Apr 2022 19:06:07 GMT" ], "Content-Length": [ - "513" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,26 +201,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4634f2c0-a9bf-4d23-a464-292d9d8de763" + "038becd3-b819-4bf9-82e2-2615267aad90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAiU=\"" + "\"AAAAAAAADeg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,25 +240,25 @@ "nosniff" ], "x-ms-request-id": [ - "5f645339-c6f6-4c48-ac98-62f2656cf53a" + "77e3beab-577a-495a-ae26-3fd8b9a97bfe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-correlation-request-id": [ - "a4b90315-58fa-4e97-afff-85b1f2f112a1" + "77e3beab-577a-495a-ae26-3fd8b9a97bfe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002016Z:a4b90315-58fa-4e97-afff-85b1f2f112a1" + "WESTUS:20220401T190639Z:77e3beab-577a-495a-ae26-3fd8b9a97bfe" ], "Date": [ - "Tue, 13 Jul 2021 00:20:15 GMT" + "Fri, 01 Apr 2022 19:06:38 GMT" ], "Content-Length": [ - "513" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,26 +267,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32cb10de-938c-4f75-b0cc-61d82676149e" + "6fef40ed-7155-433f-8f2e-f81e0b466ce4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -297,7 +297,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAiU=\"" + "\"AAAAAAAADeg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,25 +306,25 @@ "nosniff" ], "x-ms-request-id": [ - "0315244f-b0ae-4cda-9633-16ea30d952e9" + "999ed139-0593-4dbd-b3d5-4f682fcf93d8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-correlation-request-id": [ - "34cfcf5e-af5a-4d01-89a4-1d5e131d535f" + "999ed139-0593-4dbd-b3d5-4f682fcf93d8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002016Z:34cfcf5e-af5a-4d01-89a4-1d5e131d535f" + "WESTUS:20220401T190639Z:999ed139-0593-4dbd-b3d5-4f682fcf93d8" ], "Date": [ - "Tue, 13 Jul 2021 00:20:15 GMT" + "Fri, 01 Apr 2022 19:06:39 GMT" ], "Content-Length": [ - "513" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -333,26 +333,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "011ffed4-f915-4af3-a363-9807327ca9a0" + "eb87d130-0930-42c6-89c9-056bdd646090" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -369,22 +369,22 @@ "nosniff" ], "x-ms-request-id": [ - "7681799b-8795-4c4f-a731-629b6e2b54ee" + "aaae66ba-d56d-4715-89d2-8be2e65efe03" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11991" ], "x-ms-correlation-request-id": [ - "8d80200d-ca50-432f-a8a1-abd9a40a09b1" + "aaae66ba-d56d-4715-89d2-8be2e65efe03" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002017Z:8d80200d-ca50-432f-a8a1-abd9a40a09b1" + "WESTUS:20220401T190640Z:aaae66ba-d56d-4715-89d2-8be2e65efe03" ], "Date": [ - "Tue, 13 Jul 2021 00:20:16 GMT" + "Fri, 01 Apr 2022 19:06:39 GMT" ], "Content-Length": [ "97" @@ -400,22 +400,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae6c2769-1423-44c7-a1ab-0ff5fad8c110" + "d8695175-7ce8-4aad-b713-cc82d4bf4f7f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -432,22 +432,22 @@ "nosniff" ], "x-ms-request-id": [ - "9834367f-76ba-4e8c-812e-8aa020758c3c" + "71d71111-ffe6-40f7-8452-b8cfb450f728" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11990" ], "x-ms-correlation-request-id": [ - "b220a65e-b541-46b0-97d5-2cce63e29379" + "71d71111-ffe6-40f7-8452-b8cfb450f728" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002017Z:b220a65e-b541-46b0-97d5-2cce63e29379" + "WESTUS:20220401T190641Z:71d71111-ffe6-40f7-8452-b8cfb450f728" ], "Date": [ - "Tue, 13 Jul 2021 00:20:16 GMT" + "Fri, 01 Apr 2022 19:06:40 GMT" ], "Content-Length": [ "97" @@ -463,22 +463,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?$filter=substringof('ps8650',properties/displayName)&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JGZpbHRlcj1zdWJzdHJpbmdvZigncHM4NjUwJyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders?$filter=substringof('ps6639',properties/displayName)&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzPyRmaWx0ZXI9c3Vic3RyaW5nb2YoJ3BzNjYzOScscHJvcGVydGllcy9kaXNwbGF5TmFtZSkmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a62906ab-16fc-4d12-ad96-76e2f2820c27" + "95f4b889-c815-4276-a3e5-d04c9f39886b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -495,25 +495,25 @@ "nosniff" ], "x-ms-request-id": [ - "1ed11667-2e36-4282-8ddf-754c89de1a5f" + "6684432e-ddca-4771-905d-4da4e0154f5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-correlation-request-id": [ - "8710c062-4b66-4bf2-8a40-7a7875e8f278" + "6684432e-ddca-4771-905d-4da4e0154f5c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001941Z:8710c062-4b66-4bf2-8a40-7a7875e8f278" + "WESTUS:20220401T190607Z:6684432e-ddca-4771-905d-4da4e0154f5c" ], "Date": [ - "Tue, 13 Jul 2021 00:19:41 GMT" + "Fri, 01 Apr 2022 19:06:07 GMT" ], "Content-Length": [ - "597" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -522,26 +522,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\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?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70faf1c7-2e10-44eb-a01b-0fce27e74b3c" + "69123b7a-7f43-4d5e-8933-6e6369b1787f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -558,25 +558,25 @@ "nosniff" ], "x-ms-request-id": [ - "17eb1707-ae35-493e-810c-cd6b77d7072b" + "671f7afd-b1b6-4737-98da-1b8d42d6bf64" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-correlation-request-id": [ - "1106b8cc-eba5-4062-bf70-df178643cc32" + "671f7afd-b1b6-4737-98da-1b8d42d6bf64" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001942Z:1106b8cc-eba5-4062-bf70-df178643cc32" + "WESTUS:20220401T190607Z:671f7afd-b1b6-4737-98da-1b8d42d6bf64" ], "Date": [ - "Tue, 13 Jul 2021 00:19:41 GMT" + "Fri, 01 Apr 2022 19:06:07 GMT" ], "Content-Length": [ - "597" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585,26 +585,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\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/ps380/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODAvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OS9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f21bd14-f744-4749-a5bb-685a079c7ca6" + "e67c0cef-b226-4d3d-8e9e-b69e2b923bae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -615,7 +615,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAgg=\"" + "\"AAAAAAAADcs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,7 +624,7 @@ "nosniff" ], "x-ms-request-id": [ - "8c391d76-cb95-4e79-839d-64c864b7dd51" + "aca1aace-5d71-42d7-a970-e9ba853f11ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,13 +633,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "a9901627-9a81-4ba3-99a7-45dae91f5feb" + "aca1aace-5d71-42d7-a970-e9ba853f11ab" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001942Z:a9901627-9a81-4ba3-99a7-45dae91f5feb" + "WESTUS:20220401T190608Z:aca1aace-5d71-42d7-a970-e9ba853f11ab" ], "Date": [ - "Tue, 13 Jul 2021 00:19:41 GMT" + "Fri, 01 Apr 2022 19:06:07 GMT" ], "Content-Length": [ "21" @@ -655,22 +655,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODAvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OS9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0cab0267-5c23-45ab-b470-f7bb8c32f3c1" + "85cd772b-5669-4145-aed5-9ec2abe852e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -681,7 +681,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAiU=\"" + "\"AAAAAAAADeg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -690,7 +690,7 @@ "nosniff" ], "x-ms-request-id": [ - "91dfa8d8-58ce-47ba-a558-09eaf3b1c41f" + "115b3366-fcb8-47e4-bb85-c9430af8fa5d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -699,16 +699,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "15254abf-5830-4583-8b08-4736ab7343d7" + "115b3366-fcb8-47e4-bb85-c9430af8fa5d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002016Z:15254abf-5830-4583-8b08-4736ab7343d7" + "WESTUS:20220401T190640Z:115b3366-fcb8-47e4-bb85-c9430af8fa5d" ], "Date": [ - "Tue, 13 Jul 2021 00:20:16 GMT" + "Fri, 01 Apr 2022 19:06:39 GMT" ], "Content-Length": [ - "25" + "24" ], "Content-Type": [ "application/json; charset=utf-8" @@ -717,26 +717,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps5908\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps723\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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": [ - "814a8b2a-0dbb-428c-ad13-779864401219" + "458eeaf6-50f8-479a-8ed8-f9c607b3e958" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,7 +753,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?api-version=2020-12-01&asyncId=60ecdc1ea2ca601290f0cbde&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?api-version=2021-08-01&asyncId=62474d20217d200d902d7e62&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,22 +762,22 @@ "nosniff" ], "x-ms-request-id": [ - "d4e1acf1-b507-4f51-a8c0-e880ff763f77" + "206e5f13-0135-48d9-8d4d-092153c2adb1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "adaf2e2d-231c-4dc8-a9b9-93e0be1d32ba" + "206e5f13-0135-48d9-8d4d-092153c2adb1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001942Z:adaf2e2d-231c-4dc8-a9b9-93e0be1d32ba" + "WESTUS:20220401T190608Z:206e5f13-0135-48d9-8d4d-092153c2adb1" ], "Date": [ - "Tue, 13 Jul 2021 00:19:41 GMT" + "Fri, 01 Apr 2022 19:06:07 GMT" ], "Expires": [ "-1" @@ -790,19 +790,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?api-version=2020-12-01&asyncId=60ecdc1ea2ca601290f0cbde&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGMxZWEyY2E2MDEyOTBmMGNiZGUmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?api-version=2021-08-01&asyncId=62474d20217d200d902d7e62&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRkMjAyMTdkMjAwZDkwMmQ3ZTYyJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "814a8b2a-0dbb-428c-ad13-779864401219" + "458eeaf6-50f8-479a-8ed8-f9c607b3e958" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -813,7 +813,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAgk=\"" + "\"AAAAAAAADcw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,25 +822,25 @@ "nosniff" ], "x-ms-request-id": [ - "2f8de94d-2b44-4eb0-865a-e14b59949249" + "3e79e509-9698-48f7-93cf-21f97a04d2de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-correlation-request-id": [ - "41b770f7-209c-4bf7-b112-1554ed0b0673" + "3e79e509-9698-48f7-93cf-21f97a04d2de" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002012Z:41b770f7-209c-4bf7-b112-1554ed0b0673" + "WESTUS:20220401T190638Z:3e79e509-9698-48f7-93cf-21f97a04d2de" ], "Date": [ - "Tue, 13 Jul 2021 00:20:11 GMT" + "Fri, 01 Apr 2022 19:06:37 GMT" ], "Content-Length": [ - "1381" + "1536" ], "Content-Type": [ "application/json; charset=utf-8" @@ -849,26 +849,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6947\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1771\",\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 \"contact\": {\r\n \"name\": \"Open Data Portal\",\r\n \"url\": \"https://developer.uspto.gov/\",\r\n \"email\": \"developer@uspto.gov\"\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/ps6947?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "814a8b2a-0dbb-428c-ad13-779864401219" + "458eeaf6-50f8-479a-8ed8-f9c607b3e958" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -879,7 +879,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAgk=\"" + "\"AAAAAAAADcw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -888,25 +888,25 @@ "nosniff" ], "x-ms-request-id": [ - "3135e419-34f3-43d2-92cb-01343c2f5d1e" + "0e141031-7ab9-46fb-8f66-7c1c676ecd26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-correlation-request-id": [ - "f6580773-7021-4e7f-b3ae-0eabce3e149b" + "0e141031-7ab9-46fb-8f66-7c1c676ecd26" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002012Z:f6580773-7021-4e7f-b3ae-0eabce3e149b" + "WESTUS:20220401T190638Z:0e141031-7ab9-46fb-8f66-7c1c676ecd26" ], "Date": [ - "Tue, 13 Jul 2021 00:20:11 GMT" + "Fri, 01 Apr 2022 19:06:37 GMT" ], "Content-Length": [ - "1381" + "1536" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,17 +915,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6947\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1771\",\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 \"contact\": {\r\n \"name\": \"Open Data Portal\",\r\n \"url\": \"https://developer.uspto.gov/\",\r\n \"email\": \"developer@uspto.gov\"\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/ps6947%3Brev%3D1?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771%3Brev%3D1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MSUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"ps380\",\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\": \"ps6699\",\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": [ - "45b02ac4-9058-442b-bc19-67d3f747eb34" + "1170b65b-b610-45b5-9527-bb626c3baefe" ], "If-Match": [ "*" @@ -934,16 +934,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1275" + "1276" ] }, "ResponseHeaders": { @@ -954,7 +954,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAiA=\"" + "\"AAAAAAAADeM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -963,25 +963,25 @@ "nosniff" ], "x-ms-request-id": [ - "3d57d2b1-73dd-4318-8a85-312d5f56f4af" + "65d15393-bf1f-40c5-80ef-d2f586645723" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "6733c043-4381-4aeb-ad10-75e7e9284742" + "65d15393-bf1f-40c5-80ef-d2f586645723" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002016Z:6733c043-4381-4aeb-ad10-75e7e9284742" + "WESTUS:20220401T190639Z:65d15393-bf1f-40c5-80ef-d2f586645723" ], "Date": [ - "Tue, 13 Jul 2021 00:20:15 GMT" + "Fri, 01 Apr 2022 19:06:38 GMT" ], "Content-Length": [ - "1518" + "1529" ], "Content-Type": [ "application/json; charset=utf-8" @@ -990,17 +990,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6947\",\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\": \"ps380\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1771\",\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\": \"ps6699\",\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/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps5908\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps723\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4634f2c0-a9bf-4d23-a464-292d9d8de763" + "038becd3-b819-4bf9-82e2-2615267aad90" ], "If-Match": [ "*" @@ -1009,16 +1009,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "58" + "57" ] }, "ResponseHeaders": { @@ -1029,7 +1029,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAiU=\"" + "\"AAAAAAAADeg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,25 +1038,25 @@ "nosniff" ], "x-ms-request-id": [ - "50dedf92-13e8-46f6-9828-df07244b025a" + "88f73d4b-c9ff-44ee-9411-f93ab40ca620" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "ea7f2ad8-259e-487e-a169-f2a6321f5696" + "88f73d4b-c9ff-44ee-9411-f93ab40ca620" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002016Z:ea7f2ad8-259e-487e-a169-f2a6321f5696" + "WESTUS:20220401T190639Z:88f73d4b-c9ff-44ee-9411-f93ab40ca620" ], "Date": [ - "Tue, 13 Jul 2021 00:20:15 GMT" + "Fri, 01 Apr 2022 19:06:38 GMT" ], "Content-Length": [ - "544" + "555" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1065,17 +1065,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\",\r\n \"clientSecret\": \"ps5908\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\",\r\n \"clientSecret\": \"ps723\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea687715-314e-43f8-9cc5-b084520b3cd6" + "a22d0544-4f32-49cc-8e03-7715d277f6b0" ], "If-Match": [ "*" @@ -1084,10 +1084,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1104,7 +1104,7 @@ "nosniff" ], "x-ms-request-id": [ - "226a405e-d1c6-45ce-879f-f8242fffb9ec" + "67133dc2-5665-4ceb-b7ba-07540959ce27" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1113,13 +1113,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "63854f4b-29be-40fe-80e3-de8f117a9bfd" + "67133dc2-5665-4ceb-b7ba-07540959ce27" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002017Z:63854f4b-29be-40fe-80e3-de8f117a9bfd" + "WESTUS:20220401T190640Z:67133dc2-5665-4ceb-b7ba-07540959ce27" ], "Date": [ - "Tue, 13 Jul 2021 00:20:16 GMT" + "Fri, 01 Apr 2022 19:06:39 GMT" ], "Expires": [ "-1" @@ -1132,13 +1132,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?deleteRevisions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?deleteRevisions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5819bf13-7829-4abb-8478-67ff816fa046" + "9030cf51-1b23-48bb-90d7-8ce5408b4a89" ], "If-Match": [ "*" @@ -1147,10 +1147,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1167,7 +1167,7 @@ "nosniff" ], "x-ms-request-id": [ - "d4e52a15-e420-4a0a-ab64-0c923080248b" + "76655d7f-39b6-4153-9042-fd9d77af6820" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1176,13 +1176,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "5fa5ba48-894a-4815-83c5-fbc02c70d29f" + "76655d7f-39b6-4153-9042-fd9d77af6820" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002017Z:5fa5ba48-894a-4815-83c5-fbc02c70d29f" + "WESTUS:20220401T190640Z:76655d7f-39b6-4153-9042-fd9d77af6820" ], "Date": [ - "Tue, 13 Jul 2021 00:20:16 GMT" + "Fri, 01 Apr 2022 19:06:40 GMT" ], "Expires": [ "-1" @@ -1192,13 +1192,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30779279-6c12-45b5-93e5-4e19d8d0b937" + "75ead7eb-c486-4b73-adf8-ced4e7a058c5" ], "If-Match": [ "*" @@ -1207,10 +1207,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1227,7 +1227,7 @@ "nosniff" ], "x-ms-request-id": [ - "c28fe76d-b8b1-45d7-afa1-1a324aa8c39c" + "a91ccacb-93ff-4999-90f4-00f760610362" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1236,13 +1236,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "4d02c4ee-3075-4665-9edc-565d8328c1ab" + "a91ccacb-93ff-4999-90f4-00f760610362" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002017Z:4d02c4ee-3075-4665-9edc-565d8328c1ab" + "WESTUS:20220401T190640Z:a91ccacb-93ff-4999-90f4-00f760610362" ], "Date": [ - "Tue, 13 Jul 2021 00:20:16 GMT" + "Fri, 01 Apr 2022 19:06:39 GMT" ], "Expires": [ "-1" @@ -1255,13 +1255,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66251535-36fe-423d-801f-af04eaece83f" + "8543642a-80bb-44f1-a36c-6d6bcdccb87c" ], "If-Match": [ "*" @@ -1270,10 +1270,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1290,7 +1290,7 @@ "nosniff" ], "x-ms-request-id": [ - "1e617ea9-7851-4d77-aa8c-40164da170bc" + "53e20865-1448-4d41-b8bc-435acbea0216" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1299,13 +1299,13 @@ "14996" ], "x-ms-correlation-request-id": [ - "c112413f-65b6-463b-9118-3dd7c2b71719" + "53e20865-1448-4d41-b8bc-435acbea0216" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T002017Z:c112413f-65b6-463b-9118-3dd7c2b71719" + "WESTUS:20220401T190641Z:53e20865-1448-4d41-b8bc-435acbea0216" ], "Date": [ - "Tue, 13 Jul 2021 00:20:16 GMT" + "Fri, 01 Apr 2022 19:06:40 GMT" ], "Expires": [ "-1" @@ -1317,15 +1317,15 @@ ], "Names": { "": [ - "ps380", - "ps6947", - "ps8650", - "ps9891", - "ps1765", - "ps5908" + "ps6699", + "ps1771", + "ps6639", + "ps8166", + "ps4660", + "ps723" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 05da3710a8b5..00171e0b2d8e 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?$filter=properties/displayName%20eq%20'Echo%20API'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/JGZpbHRlcj1wcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lJTIwZXElMjAnRWNobyUyMEFQSScmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?$filter=properties/displayName%20eq%20'Echo%20API'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ0VjaG8lMjBBUEknJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac5d5234-8085-4430-828f-2172c190c63e" + "ec33a44c-2360-440a-8878-05dbb469ec7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "137d70b9-51f8-4f9c-a68c-ae834a3a2111" + "c248158e-6c95-43e4-9988-4dee79529f37" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "51ef653a-2548-4bf2-9759-4c8925049ce9" + "c248158e-6c95-43e4-9988-4dee79529f37" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001409Z:51ef653a-2548-4bf2-9759-4c8925049ce9" + "WESTUS:20220406T000434Z:c248158e-6c95-43e4-9988-4dee79529f37" ], "Date": [ - "Tue, 13 Jul 2021 00:14:09 GMT" + "Wed, 06 Apr 2022 00:04:33 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis/echo-api/operations?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d4a3dbc-721a-4b75-963c-6a119731a979" + "515ce606-b628-4e2c-b16c-939a2da80fee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -96,7 +96,7 @@ "nosniff" ], "x-ms-request-id": [ - "21177d39-4262-4a40-8a35-2dc28d827d54" + "cf09701c-1843-4c31-b8f9-ff41fe518733" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "63e2dab1-5595-4819-bbb7-c51328157b38" + "cf09701c-1843-4c31-b8f9-ff41fe518733" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001409Z:63e2dab1-5595-4819-bbb7-c51328157b38" + "WESTUS:20220406T000434Z:cf09701c-1843-4c31-b8f9-ff41fe518733" ], "Date": [ - "Tue, 13 Jul 2021 00:14:09 GMT" + "Wed, 06 Apr 2022 00:04:34 GMT" ], "Content-Length": [ - "7816" + "7876" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-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/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/echo-api/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/echo-api/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/echo-api/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/echo-api/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/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/echo-api/operations/create-resource?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f590fca4-8632-48af-99f3-f1ece3d8d424" + "20fc1011-bad7-4378-8426-783480a21805" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -153,7 +153,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/5o=\"" + "\"AAAAAAAAC1c=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -162,7 +162,7 @@ "nosniff" ], "x-ms-request-id": [ - "aa405bf2-805e-4a93-b27a-8e95b396ca76" + "a72655e8-bb44-46ac-a1a6-63d1e1be9dca" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "27646565-8698-4731-a55a-8c0bc84f69de" + "a72655e8-bb44-46ac-a1a6-63d1e1be9dca" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001411Z:27646565-8698-4731-a55a-8c0bc84f69de" + "WESTUS:20220406T000435Z:a72655e8-bb44-46ac-a1a6-63d1e1be9dca" ], "Date": [ - "Tue, 13 Jul 2021 00:14:10 GMT" + "Wed, 06 Apr 2022 00:04:34 GMT" ], "Content-Length": [ - "1269" + "1648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/echo-api/operations/modify-resource?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9tb2RpZnktcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/modify-resource?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3b209b0-9726-476b-81e0-d4a0a7bdbbd3" + "650d4e98-a067-489d-93c4-5f3f683d27ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -219,7 +219,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjQ=\"" + "\"AAAAAAAACQU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,7 +228,7 @@ "nosniff" ], "x-ms-request-id": [ - "9c76b0bd-47f5-4d02-a4fd-0a9729fb7c7a" + "b4380000-92f1-4cd3-a681-ca697410dd70" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,16 +237,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "f69c1d71-885a-44d5-9388-1450f9b34baf" + "b4380000-92f1-4cd3-a681-ca697410dd70" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001411Z:f69c1d71-885a-44d5-9388-1450f9b34baf" + "WESTUS:20220406T000435Z:b4380000-92f1-4cd3-a681-ca697410dd70" ], "Date": [ - "Tue, 13 Jul 2021 00:14:11 GMT" + "Wed, 06 Apr 2022 00:04:34 GMT" ], "Content-Length": [ - "892" + "902" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,26 +255,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/echo-api/operations/remove-resource?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZW1vdmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/remove-resource?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmVtb3ZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76e26efc-8181-4c10-9681-08fb9623e4bb" + "3bc80a23-3b46-49ca-a6ef-e74ae881ed44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -285,7 +285,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjY=\"" + "\"AAAAAAAACQc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,7 +294,7 @@ "nosniff" ], "x-ms-request-id": [ - "bb8a0ab2-7392-4d01-86c7-e877257f9ddb" + "38cbe579-69bc-4e38-9004-578d30cb3a6a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -303,16 +303,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "11954b36-7065-4a7d-b288-2a4c303c14a7" + "38cbe579-69bc-4e38-9004-578d30cb3a6a" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001411Z:11954b36-7065-4a7d-b288-2a4c303c14a7" + "WESTUS:20220406T000435Z:38cbe579-69bc-4e38-9004-578d30cb3a6a" ], "Date": [ - "Tue, 13 Jul 2021 00:14:11 GMT" + "Wed, 06 Apr 2022 00:04:34 GMT" ], "Content-Length": [ - "902" + "912" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,26 +321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/echo-api/operations/retrieve-header-only?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1oZWFkZXItb25seT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-header-only?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d321d3c-39aa-4025-ad36-bc6bd0282791" + "cedf662b-8444-4928-a336-a5148436c66e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -351,7 +351,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjc=\"" + "\"AAAAAAAACQg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -360,7 +360,7 @@ "nosniff" ], "x-ms-request-id": [ - "93c7dae4-b07a-461d-9ea9-0e4cd3f194bb" + "eaf8c5e1-c5e7-4947-af68-94896f66d6fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,16 +369,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "5fd33ed2-fdb6-4291-a3b9-47e644f7af98" + "eaf8c5e1-c5e7-4947-af68-94896f66d6fe" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001411Z:5fd33ed2-fdb6-4291-a3b9-47e644f7af98" + "WESTUS:20220406T000435Z:eaf8c5e1-c5e7-4947-af68-94896f66d6fe" ], "Date": [ - "Tue, 13 Jul 2021 00:14:11 GMT" + "Wed, 06 Apr 2022 00:04:35 GMT" ], "Content-Length": [ - "897" + "907" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,26 +387,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/echo-api/operations/retrieve-resource?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1yZXNvdXJjZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c863a32b-ee25-42c4-ad93-9f63b188d7cf" + "92934c18-d72f-40d0-86b0-f87715d385c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -417,7 +417,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjI=\"" + "\"AAAAAAAACQM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +426,7 @@ "nosniff" ], "x-ms-request-id": [ - "ff2c9908-8e69-4828-a440-f17382d51fc3" + "1bde4907-face-400b-8fa5-cb5a47e7b0c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,16 +435,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "9ef70c6b-299c-4872-83b9-f6200c1875a4" + "1bde4907-face-400b-8fa5-cb5a47e7b0c9" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001411Z:9ef70c6b-299c-4872-83b9-f6200c1875a4" + "WESTUS:20220406T000435Z:1bde4907-face-400b-8fa5-cb5a47e7b0c9" ], "Date": [ - "Tue, 13 Jul 2021 00:14:11 GMT" + "Wed, 06 Apr 2022 00:04:35 GMT" ], "Content-Length": [ - "1476" + "1486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -453,26 +453,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/echo-api/operations/retrieve-resource-cached?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1yZXNvdXJjZS1jYWNoZWQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource-cached?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2UtY2FjaGVkP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e9be6dd-5c69-4cbe-b1e8-c7f8db967a8c" + "436bf81a-d231-44e8-91eb-959f542c66d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -483,7 +483,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjM=\"" + "\"AAAAAAAACQQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,7 +492,7 @@ "nosniff" ], "x-ms-request-id": [ - "bf1c4c9f-84bb-4f04-9d6e-d36a8a596753" + "4fbc91bd-abf5-4797-8bc3-6d3667961438" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -501,16 +501,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "65c0c33d-269f-46cd-a2a2-6af55506b4cc" + "4fbc91bd-abf5-4797-8bc3-6d3667961438" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001411Z:65c0c33d-269f-46cd-a2a2-6af55506b4cc" + "WESTUS:20220406T000436Z:4fbc91bd-abf5-4797-8bc3-6d3667961438" ], "Date": [ - "Tue, 13 Jul 2021 00:14:11 GMT" + "Wed, 06 Apr 2022 00:04:35 GMT" ], "Content-Length": [ - "1553" + "1563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,32 +519,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/echo-api/operations/ps8482?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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\": \"ps9983\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps5871\",\r\n \"description\": \"ps6468\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6459\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6459\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps1800\",\r\n \"description\": \"ps6152\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps2860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps2860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7318\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps1876\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps7306\",\r\n \"sample\": \"ps772\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps2163\",\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 \"examples\": {}\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 \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps2971\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps1358\",\r\n \"description\": \"ps9153\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1092\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1092\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps1256\",\r\n \"description\": \"ps5034\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps8090\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps8090\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"typeName\": \"the type name\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2440\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps9983\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps8496\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "803bdafe-7475-421b-b131-cd05358dfa1e" + "ac26fe05-56c9-4812-a3b4-d143bd97d365" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1565" + "2194" ] }, "ResponseHeaders": { @@ -555,7 +555,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAJ8=\"" + "\"AAAAAAAADrE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,7 +564,7 @@ "nosniff" ], "x-ms-request-id": [ - "5422f416-482c-4e37-91c4-f935e417d2f6" + "7e51e661-2145-45b0-8217-742965d68cd7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -573,16 +573,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "77ed6455-ed17-4b4a-a862-3518e1f03fcc" + "7e51e661-2145-45b0-8217-742965d68cd7" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001414Z:77ed6455-ed17-4b4a-a862-3518e1f03fcc" + "WESTUS:20220406T000437Z:7e51e661-2145-45b0-8217-742965d68cd7" ], "Date": [ - "Tue, 13 Jul 2021 00:14:14 GMT" + "Wed, 06 Apr 2022 00:04:36 GMT" ], "Content-Length": [ - "2120" + "2443" ], "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/ps8482\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps8482\",\r\n \"properties\": {\r\n \"displayName\": \"ps2163\",\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\": \"ps9983\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps5871\",\r\n \"description\": \"ps6468\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6459\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6459\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps1800\",\r\n \"description\": \"ps6152\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps2860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps2860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"ps7318\"\r\n }\r\n },\r\n \"generatedSample\": \"ps7318\",\r\n \"sample\": \"ps7318\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps1876\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps7306\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"ps772\"\r\n }\r\n },\r\n \"generatedSample\": \"ps772\",\r\n \"sample\": \"ps772\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps5110\",\r\n \"properties\": {\r\n \"displayName\": \"ps8496\",\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 \"examples\": {}\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"values\": [],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps2971\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps1358\",\r\n \"description\": \"ps9153\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1092\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1092\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps1256\",\r\n \"description\": \"ps5034\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps8090\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps8090\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n },\r\n \"typeName\": \"the type name\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2440\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps9983\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\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/ps8482?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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\": \"ps3806\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps8473\",\r\n \"description\": \"ps2672\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps5490\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps5490\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8687\",\r\n \"description\": \"ps361\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps9144\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps9144\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7650\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2400\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1198\",\r\n \"sample\": \"ps9589\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps6790\",\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 \"examples\": {}\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 \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps5684\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps4561\",\r\n \"description\": \"ps5466\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1233\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1233\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps6413\",\r\n \"description\": \"ps5409\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1566\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1566\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7051\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps889\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps5072\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d095914f-3977-4957-868b-f580e155fce5" + "5b4a5b3c-1078-4100-8f68-7850a5b22fe6" ], "If-Match": [ "*" @@ -610,16 +610,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1594" + "2182" ] }, "ResponseHeaders": { @@ -630,7 +630,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAKI=\"" + "\"AAAAAAAADrQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -639,7 +639,7 @@ "nosniff" ], "x-ms-request-id": [ - "eec083f7-6df6-417e-98c2-1a813a3f3d00" + "a66935f1-4608-48fd-a47b-0a3bf0e61ddb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -648,16 +648,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "4ef3391f-af27-40eb-9428-0c69879f9653" + "a66935f1-4608-48fd-a47b-0a3bf0e61ddb" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001415Z:4ef3391f-af27-40eb-9428-0c69879f9653" + "WESTUS:20220406T000437Z:a66935f1-4608-48fd-a47b-0a3bf0e61ddb" ], "Date": [ - "Tue, 13 Jul 2021 00:14:15 GMT" + "Wed, 06 Apr 2022 00:04:37 GMT" ], "Content-Length": [ - "2151" + "2431" ], "Content-Type": [ "application/json; charset=utf-8" @@ -666,26 +666,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps8482\",\r\n \"properties\": {\r\n \"displayName\": \"ps6790\",\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 \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps3806\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps8473\",\r\n \"description\": \"ps2672\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps5490\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps5490\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8687\",\r\n \"description\": \"ps361\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps9144\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps9144\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"ps7650\"\r\n }\r\n },\r\n \"generatedSample\": \"ps7650\",\r\n \"sample\": \"ps7650\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2400\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1198\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"ps9589\"\r\n }\r\n },\r\n \"generatedSample\": \"ps9589\",\r\n \"sample\": \"ps9589\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps5110\",\r\n \"properties\": {\r\n \"displayName\": \"ps5072\",\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 \"values\": [],\r\n \"examples\": {}\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"values\": [],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps5684\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps4561\",\r\n \"description\": \"ps5466\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1233\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1233\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps6413\",\r\n \"description\": \"ps5409\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1566\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1566\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7051\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps889\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\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/ps8482?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d095914f-3977-4957-868b-f580e155fce5" + "5b4a5b3c-1078-4100-8f68-7850a5b22fe6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -696,7 +696,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAKI=\"" + "\"AAAAAAAADrQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,7 +705,7 @@ "nosniff" ], "x-ms-request-id": [ - "4eca8998-1ffb-4b17-b56b-92d7a930746b" + "ad4b4d14-8084-427c-9fff-48a894ac5e53" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -714,16 +714,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "dd97b938-c059-4031-a070-4cd115e6f2b7" + "ad4b4d14-8084-427c-9fff-48a894ac5e53" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001415Z:dd97b938-c059-4031-a070-4cd115e6f2b7" + "WESTUS:20220406T000437Z:ad4b4d14-8084-427c-9fff-48a894ac5e53" ], "Date": [ - "Tue, 13 Jul 2021 00:14:15 GMT" + "Wed, 06 Apr 2022 00:04:37 GMT" ], "Content-Length": [ - "1887" + "2485" ], "Content-Type": [ "application/json; charset=utf-8" @@ -732,26 +732,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps8482\",\r\n \"properties\": {\r\n \"displayName\": \"ps6790\",\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\": \"ps3806\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps8473\",\r\n \"description\": \"ps2672\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps5490\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps5490\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8687\",\r\n \"description\": \"ps361\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps9144\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps9144\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7650\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2400\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1198\",\r\n \"sample\": \"ps9589\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps5110\",\r\n \"properties\": {\r\n \"displayName\": \"ps5072\",\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 \"examples\": {}\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 \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps5684\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps4561\",\r\n \"description\": \"ps5466\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1233\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1233\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps6413\",\r\n \"description\": \"ps5409\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1566\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1566\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7051\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps889\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\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/ps8482?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da23cae1-16c3-4a71-a989-205437aaee65" + "e620f0cf-e4e5-4b2e-977f-921361b957dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -768,7 +768,7 @@ "nosniff" ], "x-ms-request-id": [ - "bb75fd29-3764-4119-bfed-b37d7bead805" + "adc09c73-3d9a-4cd6-9f0b-f8e76f8e7165" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -777,13 +777,13 @@ "11990" ], "x-ms-correlation-request-id": [ - "38191adf-f31f-4b62-8bc1-4b85a725bb59" + "adc09c73-3d9a-4cd6-9f0b-f8e76f8e7165" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001416Z:38191adf-f31f-4b62-8bc1-4b85a725bb59" + "WESTUS:20220406T000438Z:adc09c73-3d9a-4cd6-9f0b-f8e76f8e7165" ], "Date": [ - "Tue, 13 Jul 2021 00:14:16 GMT" + "Wed, 06 Apr 2022 00:04:37 GMT" ], "Content-Length": [ "85" @@ -799,13 +799,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6426956f-38d9-49f6-bb70-6821f12d784c" + "df7d6d72-26a4-497f-a6d9-c22edb3a09ea" ], "If-Match": [ "*" @@ -814,10 +814,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -834,7 +834,7 @@ "nosniff" ], "x-ms-request-id": [ - "e908e1dc-5377-4b48-82cc-2aed28eaa69f" + "708bbc65-b54f-43da-be0e-e3c951297080" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -843,13 +843,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "0033455f-ebf3-40e5-9bce-fc8831226864" + "708bbc65-b54f-43da-be0e-e3c951297080" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001416Z:0033455f-ebf3-40e5-9bce-fc8831226864" + "WESTUS:20220406T000438Z:708bbc65-b54f-43da-be0e-e3c951297080" ], "Date": [ - "Tue, 13 Jul 2021 00:14:16 GMT" + "Wed, 06 Apr 2022 00:04:37 GMT" ], "Expires": [ "-1" @@ -864,36 +864,35 @@ ], "Names": { "": [ - "ps8482", - "ps2163", + "ps5110", + "ps8496", + "ps2971", + "ps9729", + "ps1256", + "ps5034", + "ps8090", + "ps1358", + "ps9153", + "ps1092", + "ps2440", "ps9983", - "ps7992", - "ps1800", - "ps6152", - "ps2860", - "ps5871", - "ps6468", - "ps6459", - "ps7318", - "ps1876", - "ps7306", - "ps772", - "ps6790", - "ps3806", - "ps5899", - "ps8687", - "ps361", - "ps9144", - "ps8473", - "ps2672", - "ps5490", - "ps7650", - "ps2400", - "ps1198", - "ps9589" + "ps2321", + "ps5072", + "ps5684", + "ps4935", + "ps6413", + "ps5409", + "ps1566", + "ps4561", + "ps5466", + "ps1233", + "ps3081", + "ps7051", + "ps889", + "ps5848" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 245fd88031e2..ccaf0475f017 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", "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": [ - "299d7b5f-8748-4faa-8fc1-ae54238abc7f" + "67aade69-5f98-403e-8e68-5933675b612e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/1c=\"" + "\"AAAAAAAACxE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,25 +42,25 @@ "nosniff" ], "x-ms-request-id": [ - "9de4d8a1-1809-4c40-ada4-875cebeec196" + "9bbbd278-1ba7-45e5-be01-68f3088c5b64" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "dead2a2c-934e-458c-975b-3df532dfc666" + "9bbbd278-1ba7-45e5-be01-68f3088c5b64" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001041Z:dead2a2c-934e-458c-975b-3df532dfc666" + "WESTCENTRALUS:20220401T185726Z:9bbbd278-1ba7-45e5-be01-68f3088c5b64" ], "Date": [ - "Tue, 13 Jul 2021 00:10:41 GMT" + "Fri, 01 Apr 2022 18:57:26 GMT" ], "Content-Length": [ - "890" + "900" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,26 +69,26 @@ "-1" ] }, - "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": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"bbybyxxbbcczc\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "324da355-4b0a-4a49-9f0f-a0e79cb660f3" + "4751a654-80e1-4b93-a597-082210a4719a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -105,7 +105,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/3s=\"" + "\"AAAAAAAACzg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,25 +114,25 @@ "nosniff" ], "x-ms-request-id": [ - "ec9a5fca-01ac-4b40-b24d-e52f2d4d3e32" + "fbc28ec2-c367-44de-82a5-06c5be70a2a1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "62cc959c-d993-4dce-8970-7967c6293e3b" + "fbc28ec2-c367-44de-82a5-06c5be70a2a1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001048Z:62cc959c-d993-4dce-8970-7967c6293e3b" + "WESTCENTRALUS:20220401T185734Z:fbc28ec2-c367-44de-82a5-06c5be70a2a1" ], "Date": [ - "Tue, 13 Jul 2021 00:10:47 GMT" + "Fri, 01 Apr 2022 18:57:34 GMT" ], "Content-Length": [ - "890" + "900" ], "Content-Type": [ "application/json; charset=utf-8" @@ -141,26 +141,26 @@ "-1" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06b24505-4044-478d-93ac-2b1c297a9adb" + "8f6ab85f-d3dc-4fdf-8a28-f0abe4405e5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/1c=\"" + "\"AAAAAAAACxE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,25 +180,25 @@ "nosniff" ], "x-ms-request-id": [ - "ad35f46d-d9e9-4229-8a6d-507b89862df5" + "f8693ded-2d4c-4e96-9ed8-00c0898da5d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "20605369-8aed-4c63-bc99-19b98e0b259d" + "f8693ded-2d4c-4e96-9ed8-00c0898da5d3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001041Z:20605369-8aed-4c63-bc99-19b98e0b259d" + "WESTCENTRALUS:20220401T185726Z:f8693ded-2d4c-4e96-9ed8-00c0898da5d3" ], "Date": [ - "Tue, 13 Jul 2021 00:10:41 GMT" + "Fri, 01 Apr 2022 18:57:26 GMT" ], "Content-Length": [ - "890" + "900" ], "Content-Type": [ "application/json; charset=utf-8" @@ -207,26 +207,26 @@ "-1" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b37e2ef3-ca24-4e67-81f8-100aefd2bbdc" + "363c0729-b345-4802-bc16-b5c4925cf0ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -243,22 +243,22 @@ "nosniff" ], "x-ms-request-id": [ - "37a10053-228e-434d-bc6f-9b3c0b42a370" + "9918a537-9d1a-4c51-b183-53054eabb82d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "61e37c6e-cf82-4b84-82d4-a88f4a8a4b3f" + "9918a537-9d1a-4c51-b183-53054eabb82d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001042Z:61e37c6e-cf82-4b84-82d4-a88f4a8a4b3f" + "WESTCENTRALUS:20220401T185727Z:9918a537-9d1a-4c51-b183-53054eabb82d" ], "Date": [ - "Tue, 13 Jul 2021 00:10:42 GMT" + "Fri, 01 Apr 2022 18:57:27 GMT" ], "Content-Length": [ "97" @@ -274,22 +274,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62998a98-76fb-425c-9099-696722fdd725" + "02f28e14-13fa-44a6-b641-ab2073858b0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -300,7 +300,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/3s=\"" + "\"AAAAAAAACzg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,25 +309,25 @@ "nosniff" ], "x-ms-request-id": [ - "d4110279-3797-4eff-9dfc-02bd62be6d9e" + "ebf93301-484d-49b7-8d2e-6c4acd37fce9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-correlation-request-id": [ - "78f6fee5-3eb8-4204-9430-97ee62dbb705" + "ebf93301-484d-49b7-8d2e-6c4acd37fce9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001048Z:78f6fee5-3eb8-4204-9430-97ee62dbb705" + "WESTCENTRALUS:20220401T185734Z:ebf93301-484d-49b7-8d2e-6c4acd37fce9" ], "Date": [ - "Tue, 13 Jul 2021 00:10:47 GMT" + "Fri, 01 Apr 2022 18:57:34 GMT" ], "Content-Length": [ - "890" + "900" ], "Content-Type": [ "application/json; charset=utf-8" @@ -336,26 +336,26 @@ "-1" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32802a01-e2f2-4a6a-8a8d-4a7709d5014d" + "d2c99ec0-592d-43cd-9e2f-35c22a649c26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -372,22 +372,22 @@ "nosniff" ], "x-ms-request-id": [ - "a722d55b-f877-4db3-b105-2bacbe27d6d5" + "093e6f2a-8e61-432d-a1cf-d8e27f1595cc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-correlation-request-id": [ - "af082d17-81be-484f-b2af-308f03f5913b" + "093e6f2a-8e61-432d-a1cf-d8e27f1595cc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001048Z:af082d17-81be-484f-b2af-308f03f5913b" + "WESTCENTRALUS:20220401T185735Z:093e6f2a-8e61-432d-a1cf-d8e27f1595cc" ], "Date": [ - "Tue, 13 Jul 2021 00:10:48 GMT" + "Fri, 01 Apr 2022 18:57:35 GMT" ], "Content-Length": [ "97" @@ -403,13 +403,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b7e9663-a860-4774-9c6f-d7c295a121ac" + "adb68304-948f-426b-9b59-6903610941f6" ], "If-Match": [ "*" @@ -418,10 +418,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -438,7 +438,7 @@ "nosniff" ], "x-ms-request-id": [ - "ef92ced3-c13f-4ce4-b827-f778d849e572" + "2d00da13-9f97-4a1b-bb4a-66393c2b8251" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,13 +447,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "e907e71e-e307-40f8-bff1-878214f0d3d1" + "2d00da13-9f97-4a1b-bb4a-66393c2b8251" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001042Z:e907e71e-e307-40f8-bff1-878214f0d3d1" + "WESTCENTRALUS:20220401T185727Z:2d00da13-9f97-4a1b-bb4a-66393c2b8251" ], "Date": [ - "Tue, 13 Jul 2021 00:10:41 GMT" + "Fri, 01 Apr 2022 18:57:27 GMT" ], "Expires": [ "-1" @@ -466,13 +466,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c65cfd9e-5a13-4bee-9837-c4f846d62601" + "0a1346cb-ec27-432f-8cec-9eb9b76b66b4" ], "If-Match": [ "*" @@ -481,10 +481,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -501,7 +501,7 @@ "nosniff" ], "x-ms-request-id": [ - "6f679fd6-abeb-4ada-9b74-03570a8b502f" + "72f42155-30fb-4b1d-aa2e-f030eaa5ef9f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -510,13 +510,13 @@ "14995" ], "x-ms-correlation-request-id": [ - "6bf70af2-e113-4c1c-877a-e828e057d1d1" + "72f42155-30fb-4b1d-aa2e-f030eaa5ef9f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001048Z:6bf70af2-e113-4c1c-877a-e828e057d1d1" + "WESTCENTRALUS:20220401T185735Z:72f42155-30fb-4b1d-aa2e-f030eaa5ef9f" ], "Date": [ - "Tue, 13 Jul 2021 00:10:47 GMT" + "Fri, 01 Apr 2022 18:57:35 GMT" ], "Expires": [ "-1" @@ -529,22 +529,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'Unlimited'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ1VubGltaXRlZCcmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?$filter=properties/displayName%20eq%20'Unlimited'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz8kZmlsdGVyPXByb3BlcnRpZXMvZGlzcGxheU5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04b6b428-d1fe-4f7c-81a6-718693444d36" + "3da6f6c8-0712-4edf-9a4a-fac5edfc2260" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -561,25 +561,25 @@ "nosniff" ], "x-ms-request-id": [ - "b8778c83-6bc8-4ae6-a36e-f533b555b47c" + "4d22af3f-3346-4087-9ef0-4d4e553de6f2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "0c499329-62d3-4e6a-aed0-a5a8eed54027" + "4d22af3f-3346-4087-9ef0-4d4e553de6f2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001042Z:0c499329-62d3-4e6a-aed0-a5a8eed54027" + "WESTCENTRALUS:20220401T185727Z:4d22af3f-3346-4087-9ef0-4d4e553de6f2" ], "Date": [ - "Tue, 13 Jul 2021 00:10:42 GMT" + "Fri, 01 Apr 2022 18:57:27 GMT" ], "Content-Length": [ - "670" + "680" ], "Content-Type": [ "application/json; charset=utf-8" @@ -588,26 +588,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\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\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'Unlimited'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ1VubGltaXRlZCcmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?$filter=properties/displayName%20eq%20'Unlimited'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz8kZmlsdGVyPXByb3BlcnRpZXMvZGlzcGxheU5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "340d98f6-91ba-44ec-8ecd-89058f93155c" + "97db8495-50ae-432c-8cdd-8b334eba70e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -624,25 +624,25 @@ "nosniff" ], "x-ms-request-id": [ - "441a2bdf-6146-4a6f-8f70-8110095d5c07" + "34052360-4ac5-4ee1-9d0b-2809e675fcd3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-correlation-request-id": [ - "ae9c6036-e60f-4789-ae93-f40439d4fbb1" + "34052360-4ac5-4ee1-9d0b-2809e675fcd3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001048Z:ae9c6036-e60f-4789-ae93-f40439d4fbb1" + "WESTCENTRALUS:20220401T185735Z:34052360-4ac5-4ee1-9d0b-2809e675fcd3" ], "Date": [ - "Tue, 13 Jul 2021 00:10:48 GMT" + "Fri, 01 Apr 2022 18:57:35 GMT" ], "Content-Length": [ - "670" + "680" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,17 +651,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/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\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", "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": [ - "6ed8b554-e69a-4524-a5ff-b79662a48d6d" + "d3ea94d8-abc8-4e02-b166-43f2b19b4348" ], "If-Match": [ "*" @@ -670,10 +670,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,7 +690,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/2A=\"" + "\"AAAAAAAACxw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,25 +699,25 @@ "nosniff" ], "x-ms-request-id": [ - "05fe996f-036f-4c92-8d40-fd0757b6978f" + "1f0c8e43-493b-48da-bcd5-2baaf7d7a92f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "2777c4df-fa4a-4768-bed8-c8396df8dbfc" + "1f0c8e43-493b-48da-bcd5-2baaf7d7a92f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001043Z:2777c4df-fa4a-4768-bed8-c8396df8dbfc" + "WESTCENTRALUS:20220401T185729Z:1f0c8e43-493b-48da-bcd5-2baaf7d7a92f" ], "Date": [ - "Tue, 13 Jul 2021 00:10:43 GMT" + "Fri, 01 Apr 2022 18:57:29 GMT" ], "Content-Length": [ - "578" + "588" ], "Content-Type": [ "application/json; charset=utf-8" @@ -726,17 +726,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/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\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/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\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0cd5e56d-6b4b-4727-aab8-5c3778202c0a" + "650fa57c-7697-425e-a42c-342413bf9410" ], "If-Match": [ "*" @@ -745,10 +745,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -765,7 +765,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/4Q=\"" + "\"AAAAAAAAC0E=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -774,25 +774,25 @@ "nosniff" ], "x-ms-request-id": [ - "c2391fca-fe03-4a38-a9a0-e9846d4fdc76" + "5e708676-c3d8-4f98-8119-81dc821ec608" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "0ec715b7-3ad0-4f81-b415-e2726a81e868" + "5e708676-c3d8-4f98-8119-81dc821ec608" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001048Z:0ec715b7-3ad0-4f81-b415-e2726a81e868" + "WESTCENTRALUS:20220401T185735Z:5e708676-c3d8-4f98-8119-81dc821ec608" ], "Date": [ - "Tue, 13 Jul 2021 00:10:48 GMT" + "Fri, 01 Apr 2022 18:57:35 GMT" ], "Content-Length": [ - "578" + "588" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,26 +801,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/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\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/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\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "031215a9-8913-4fcb-bd25-ff41917ee694" + "9fabf890-b73e-4eaa-9845-dd982569c8e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -831,7 +831,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/2A=\"" + "\"AAAAAAAACxw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,25 +840,25 @@ "nosniff" ], "x-ms-request-id": [ - "b85fa485-3244-42e8-b4b2-8da2ae23b8b6" + "4615b4ac-2c35-4a54-b18b-4c44161a1037" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "e51d9c56-d122-4b3d-a4a0-694141664626" + "4615b4ac-2c35-4a54-b18b-4c44161a1037" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001043Z:e51d9c56-d122-4b3d-a4a0-694141664626" + "WESTCENTRALUS:20220401T185729Z:4615b4ac-2c35-4a54-b18b-4c44161a1037" ], "Date": [ - "Tue, 13 Jul 2021 00:10:43 GMT" + "Fri, 01 Apr 2022 18:57:29 GMT" ], "Content-Length": [ - "578" + "588" ], "Content-Type": [ "application/json; charset=utf-8" @@ -867,26 +867,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/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\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/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\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d06ebd0-d369-4975-bd48-b6321da209bd" + "e46d68c0-8d3c-464d-842f-46257ed55344" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -903,22 +903,22 @@ "nosniff" ], "x-ms-request-id": [ - "cf9ed848-c7c7-40e2-8cf4-7b9afaa5c182" + "9012d8a0-3fb2-4324-a110-3909b0fd38da" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "6c285006-cbc4-44ea-a87e-bc91f4d21acb" + "9012d8a0-3fb2-4324-a110-3909b0fd38da" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001044Z:6c285006-cbc4-44ea-a87e-bc91f4d21acb" + "WESTCENTRALUS:20220401T185730Z:9012d8a0-3fb2-4324-a110-3909b0fd38da" ], "Date": [ - "Tue, 13 Jul 2021 00:10:43 GMT" + "Fri, 01 Apr 2022 18:57:30 GMT" ], "Content-Length": [ "97" @@ -934,22 +934,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e347bdb4-2647-4f99-ae05-5f0aa53f5950" + "03079f3d-4bd8-400d-bedd-8341afb90079" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -966,22 +966,22 @@ "nosniff" ], "x-ms-request-id": [ - "02d0b768-3103-4f19-9a90-f4191851485c" + "9b1b36fe-16a4-419f-b997-845a47bf9901" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11983" ], "x-ms-correlation-request-id": [ - "24c072a6-55ac-46b4-9b76-a6a901100ac3" + "9b1b36fe-16a4-419f-b997-845a47bf9901" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001048Z:24c072a6-55ac-46b4-9b76-a6a901100ac3" + "WESTCENTRALUS:20220401T185736Z:9b1b36fe-16a4-419f-b997-845a47bf9901" ], "Date": [ - "Tue, 13 Jul 2021 00:10:48 GMT" + "Fri, 01 Apr 2022 18:57:36 GMT" ], "Content-Length": [ "97" @@ -997,13 +997,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a87d12d-0367-4f77-935e-e1d74e9849d3" + "f0e42992-a2ce-4c22-b81c-cc9b42964e56" ], "If-Match": [ "*" @@ -1012,10 +1012,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1032,7 +1032,7 @@ "nosniff" ], "x-ms-request-id": [ - "a34d5b41-2d7e-406e-8dbe-388d4ab0570e" + "69da58fd-197e-4983-857b-b08a176a0eff" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1041,13 +1041,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "3f6d22f9-8384-4632-80e8-3800e2429940" + "69da58fd-197e-4983-857b-b08a176a0eff" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001043Z:3f6d22f9-8384-4632-80e8-3800e2429940" + "WESTCENTRALUS:20220401T185730Z:69da58fd-197e-4983-857b-b08a176a0eff" ], "Date": [ - "Tue, 13 Jul 2021 00:10:43 GMT" + "Fri, 01 Apr 2022 18:57:30 GMT" ], "Expires": [ "-1" @@ -1060,13 +1060,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2463c1fd-6d35-40ae-b0f6-6e171e2b8380" + "66fe1f07-a5ab-4d86-9f32-157f88c20f09" ], "If-Match": [ "*" @@ -1075,10 +1075,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1095,7 +1095,7 @@ "nosniff" ], "x-ms-request-id": [ - "05584280-fe28-4a9f-8bbd-6e4d3f6b32ff" + "9fa8e990-aaa7-43e0-81cd-e0e1329fc8db" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1104,13 +1104,13 @@ "14994" ], "x-ms-correlation-request-id": [ - "fd0c2667-c28d-4123-81e7-c692fdfaa8e3" + "9fa8e990-aaa7-43e0-81cd-e0e1329fc8db" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001048Z:fd0c2667-c28d-4123-81e7-c692fdfaa8e3" + "WESTCENTRALUS:20220401T185736Z:9fa8e990-aaa7-43e0-81cd-e0e1329fc8db" ], "Date": [ - "Tue, 13 Jul 2021 00:10:48 GMT" + "Fri, 01 Apr 2022 18:57:36 GMT" ], "Expires": [ "-1" @@ -1123,22 +1123,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8443eb04-0c21-4e3d-b6b7-bd743012cffb" + "6d1c7239-1e94-4e80-bfaf-3079c783c798" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1155,25 +1155,25 @@ "nosniff" ], "x-ms-request-id": [ - "60605814-397a-4a4b-82ed-afc3b454d69d" + "236e1dc2-778b-4d46-a105-d2a750087b23" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "ed7d22c6-a993-4dd3-94e0-5c58bc25dd7c" + "236e1dc2-778b-4d46-a105-d2a750087b23" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001044Z:ed7d22c6-a993-4dd3-94e0-5c58bc25dd7c" + "WESTCENTRALUS:20220401T185730Z:236e1dc2-778b-4d46-a105-d2a750087b23" ], "Date": [ - "Tue, 13 Jul 2021 00:10:43 GMT" + "Fri, 01 Apr 2022 18:57:30 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1182,26 +1182,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8474b4f2-d00f-4a92-9e4f-b41f2b08e4ab" + "915ebf2e-cf74-4312-9f19-a526aca0cced" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1218,25 +1218,25 @@ "nosniff" ], "x-ms-request-id": [ - "b25d0c5e-7c06-4e64-91e5-bddd544951e6" + "5f447fd2-a7e3-4afa-9917-902511b96d7b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "ea960bb3-9908-457b-8b10-6fc38e1913d4" + "5f447fd2-a7e3-4afa-9917-902511b96d7b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001045Z:ea960bb3-9908-457b-8b10-6fc38e1913d4" + "WESTCENTRALUS:20220401T185732Z:5f447fd2-a7e3-4afa-9917-902511b96d7b" ], "Date": [ - "Tue, 13 Jul 2021 00:10:45 GMT" + "Fri, 01 Apr 2022 18:57:32 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1245,26 +1245,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a316f74-4ca3-4590-a7c1-f2fa065fb5a2" + "e2be4b2d-f8db-46c4-9de2-d5c1f48f544c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1281,25 +1281,25 @@ "nosniff" ], "x-ms-request-id": [ - "dd811301-7df1-4fbc-8eac-ccef89d443de" + "2aaaa19e-c7ed-4e61-82c5-96805e202392" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11982" ], "x-ms-correlation-request-id": [ - "095090da-3e0f-4834-8efc-a9afc33cc726" + "2aaaa19e-c7ed-4e61-82c5-96805e202392" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001049Z:095090da-3e0f-4834-8efc-a9afc33cc726" + "WESTCENTRALUS:20220401T185736Z:2aaaa19e-c7ed-4e61-82c5-96805e202392" ], "Date": [ - "Tue, 13 Jul 2021 00:10:48 GMT" + "Fri, 01 Apr 2022 18:57:36 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1308,26 +1308,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55be5509-140f-46d0-9877-ca7a7c3c021f" + "c5d19f64-cad4-4461-ae50-3d61ee4bebb6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1344,25 +1344,25 @@ "nosniff" ], "x-ms-request-id": [ - "f7b7df85-0fb4-4530-81aa-65030df0ec3d" + "ad1dd9e6-40cc-4b0a-a652-0759267bed55" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11979" ], "x-ms-correlation-request-id": [ - "b99d1ca1-a514-4695-abe0-42d62d99294b" + "ad1dd9e6-40cc-4b0a-a652-0759267bed55" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001049Z:b99d1ca1-a514-4695-abe0-42d62d99294b" + "WESTCENTRALUS:20220401T185737Z:ad1dd9e6-40cc-4b0a-a652-0759267bed55" ], "Date": [ - "Tue, 13 Jul 2021 00:10:49 GMT" + "Fri, 01 Apr 2022 18:57:37 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1371,17 +1371,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\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis/echo-api/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", "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": [ - "422e61d8-68a7-4848-bf07-ede1813b80da" + "2294655f-9526-4390-a56c-dcc2d2bbf6cc" ], "If-Match": [ "*" @@ -1390,10 +1390,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1410,7 +1410,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/2k=\"" + "\"AAAAAAAACyc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1419,25 +1419,25 @@ "nosniff" ], "x-ms-request-id": [ - "f7f4a0f2-8ea5-4cf7-b1ca-1105f0f22ff7" + "e048cf5a-da42-45e9-9744-4f0bc2341fed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "f06ce2a5-639b-4e51-b8fb-e70eef900ad9" + "e048cf5a-da42-45e9-9744-4f0bc2341fed" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001045Z:f06ce2a5-639b-4e51-b8fb-e70eef900ad9" + "WESTCENTRALUS:20220401T185731Z:e048cf5a-da42-45e9-9744-4f0bc2341fed" ], "Date": [ - "Tue, 13 Jul 2021 00:10:44 GMT" + "Fri, 01 Apr 2022 18:57:31 GMT" ], "Content-Length": [ - "810" + "820" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1446,17 +1446,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/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\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/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\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\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/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"versionAcceptAccept-Charset\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a7749b04-0033-4d0f-8bc7-a7822b496fd6" + "c16d0cc9-9d51-424a-b4a0-16aef3961e9e" ], "If-Match": [ "*" @@ -1465,10 +1465,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1485,7 +1485,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/40=\"" + "\"AAAAAAAAC0o=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1494,25 +1494,25 @@ "nosniff" ], "x-ms-request-id": [ - "f7db2c98-9473-404d-8c03-f0af11e52d80" + "275c850c-5fb7-4ae5-a13e-a870fbc53c7d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-correlation-request-id": [ - "367aa415-c135-4e7e-8b62-e19c680f5bec" + "275c850c-5fb7-4ae5-a13e-a870fbc53c7d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001049Z:367aa415-c135-4e7e-8b62-e19c680f5bec" + "WESTCENTRALUS:20220401T185736Z:275c850c-5fb7-4ae5-a13e-a870fbc53c7d" ], "Date": [ - "Tue, 13 Jul 2021 00:10:48 GMT" + "Fri, 01 Apr 2022 18:57:36 GMT" ], "Content-Length": [ - "810" + "820" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1521,26 +1521,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/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\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/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\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\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/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "febdba1a-214a-4f6c-b1dd-12a5da6d2e9c" + "cb869e3a-fbec-43b2-aed0-6ace5609cd03" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1551,7 +1551,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/2k=\"" + "\"AAAAAAAACyc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1560,25 +1560,25 @@ "nosniff" ], "x-ms-request-id": [ - "96dcf90d-81a6-4cb7-b162-523ff98ae7b4" + "8f2b0897-4b5b-44c5-9fac-a5e7102ca437" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "628a15cb-4e9d-498d-bfcc-4279fbb10476" + "8f2b0897-4b5b-44c5-9fac-a5e7102ca437" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001045Z:628a15cb-4e9d-498d-bfcc-4279fbb10476" + "WESTCENTRALUS:20220401T185731Z:8f2b0897-4b5b-44c5-9fac-a5e7102ca437" ], "Date": [ - "Tue, 13 Jul 2021 00:10:44 GMT" + "Fri, 01 Apr 2022 18:57:31 GMT" ], "Content-Length": [ - "810" + "820" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1587,26 +1587,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/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\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/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\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fed08ff-5ce0-496a-a719-d19b3c8de3c1" + "3e244895-405a-4c24-8f34-96c58598e1cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1623,22 +1623,22 @@ "nosniff" ], "x-ms-request-id": [ - "2c8d8c8a-a51b-4c84-961d-7e50558dd9c2" + "6d8c96b6-5828-4705-add7-06c33e2ef80e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "b4acd5d4-10d5-4fb2-8da4-946d2e967ebe" + "6d8c96b6-5828-4705-add7-06c33e2ef80e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001045Z:b4acd5d4-10d5-4fb2-8da4-946d2e967ebe" + "WESTCENTRALUS:20220401T185732Z:6d8c96b6-5828-4705-add7-06c33e2ef80e" ], "Date": [ - "Tue, 13 Jul 2021 00:10:45 GMT" + "Fri, 01 Apr 2022 18:57:32 GMT" ], "Content-Length": [ "97" @@ -1654,22 +1654,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9410c84c-4a20-46fb-8706-edc8fde1d198" + "a6a5371f-b2d0-48a6-be4e-23a8b9c1187a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1686,22 +1686,22 @@ "nosniff" ], "x-ms-request-id": [ - "cc7df966-5ab0-407d-9d36-c4494564087e" + "698baa38-bbca-4791-a294-084599d656c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11980" ], "x-ms-correlation-request-id": [ - "03e55769-050d-4c7f-8fed-e47b1b5dd0c1" + "698baa38-bbca-4791-a294-084599d656c8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001049Z:03e55769-050d-4c7f-8fed-e47b1b5dd0c1" + "WESTCENTRALUS:20220401T185737Z:698baa38-bbca-4791-a294-084599d656c8" ], "Date": [ - "Tue, 13 Jul 2021 00:10:49 GMT" + "Fri, 01 Apr 2022 18:57:37 GMT" ], "Content-Length": [ "97" @@ -1717,13 +1717,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e7164a3-47ca-4324-8b0b-1fa3663e5073" + "2369cad8-90df-4a8a-9732-c16dc3bb020a" ], "If-Match": [ "*" @@ -1732,10 +1732,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1752,7 +1752,7 @@ "nosniff" ], "x-ms-request-id": [ - "1382db5d-579d-4f7f-ba60-6776d2c08422" + "13fcb143-81e8-444a-9e97-263ceb71e2eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1761,13 +1761,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "aad0ba2f-dcb7-482d-b4d7-da516aec9773" + "13fcb143-81e8-444a-9e97-263ceb71e2eb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001045Z:aad0ba2f-dcb7-482d-b4d7-da516aec9773" + "WESTCENTRALUS:20220401T185732Z:13fcb143-81e8-444a-9e97-263ceb71e2eb" ], "Date": [ - "Tue, 13 Jul 2021 00:10:45 GMT" + "Fri, 01 Apr 2022 18:57:32 GMT" ], "Expires": [ "-1" @@ -1780,13 +1780,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b17c755-d677-4f72-b85c-5441e6f893a0" + "e29b7bce-8e6d-4435-805d-0ff59f3f14b5" ], "If-Match": [ "*" @@ -1795,10 +1795,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1815,7 +1815,7 @@ "nosniff" ], "x-ms-request-id": [ - "8b8cec82-61f8-4e73-99ce-c461eccbae39" + "547ae49d-24ec-4f1c-a9dc-ebae9d3ca4fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1824,13 +1824,13 @@ "14993" ], "x-ms-correlation-request-id": [ - "7a7e8621-1fa5-4d3f-aaa6-34ee526985d3" + "547ae49d-24ec-4f1c-a9dc-ebae9d3ca4fe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001049Z:7a7e8621-1fa5-4d3f-aaa6-34ee526985d3" + "WESTCENTRALUS:20220401T185737Z:547ae49d-24ec-4f1c-a9dc-ebae9d3ca4fe" ], "Date": [ - "Tue, 13 Jul 2021 00:10:49 GMT" + "Fri, 01 Apr 2022 18:57:36 GMT" ], "Expires": [ "-1" @@ -1843,22 +1843,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39965598-fb1f-4fcd-8e49-0024d2221813" + "3b76ddaa-55c4-4224-8123-948ba45ac63c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1875,25 +1875,25 @@ "nosniff" ], "x-ms-request-id": [ - "b80f4742-7e95-45a9-a3bc-7bc9a846717f" + "f37d75ba-2c51-4206-a72b-e4efcc9b183f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "f284e197-5fb0-41c0-8972-f859492d24b8" + "f37d75ba-2c51-4206-a72b-e4efcc9b183f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001046Z:f284e197-5fb0-41c0-8972-f859492d24b8" + "WESTCENTRALUS:20220401T185732Z:f37d75ba-2c51-4206-a72b-e4efcc9b183f" ], "Date": [ - "Tue, 13 Jul 2021 00:10:45 GMT" + "Fri, 01 Apr 2022 18:57:32 GMT" ], "Content-Length": [ - "7816" + "7876" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1902,26 +1902,26 @@ "-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/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/echo-api/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/echo-api/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/echo-api/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/echo-api/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/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/echo-api/operations?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a339316-3f0f-48d1-95c4-47b46d415e0d" + "9d920732-4fd5-4108-a907-f46ae5b4a067" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1938,25 +1938,25 @@ "nosniff" ], "x-ms-request-id": [ - "a1ce66d3-3eaa-462e-9065-a8568b785856" + "b145b527-67cf-47fe-bcd5-e451f4ee8967" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11978" ], "x-ms-correlation-request-id": [ - "e0b0ce66-6418-4063-8adf-1b7d2ebb109a" + "b145b527-67cf-47fe-bcd5-e451f4ee8967" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001049Z:e0b0ce66-6418-4063-8adf-1b7d2ebb109a" + "WESTCENTRALUS:20220401T185737Z:b145b527-67cf-47fe-bcd5-e451f4ee8967" ], "Date": [ - "Tue, 13 Jul 2021 00:10:49 GMT" + "Fri, 01 Apr 2022 18:57:37 GMT" ], "Content-Length": [ - "7816" + "7876" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1965,17 +1965,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/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/echo-api/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/echo-api/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/echo-api/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/echo-api/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/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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 \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\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 \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/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/echo-api/operations/create-resource/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", "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": [ - "74e346be-9a1f-4f0e-97ae-e3061e745f66" + "480f12bf-4a60-4968-91a5-b9dc43a62d8d" ], "If-Match": [ "*" @@ -1984,10 +1984,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2004,7 +2004,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/3I=\"" + "\"AAAAAAAACy8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2013,25 +2013,25 @@ "nosniff" ], "x-ms-request-id": [ - "1e8a92e7-8404-40e0-a93b-57d80cf29229" + "d5ece4c7-e9e4-4320-9087-7dcbb0efce68" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "f9a996b8-2400-4f00-a121-d8ab63a107c2" + "d5ece4c7-e9e4-4320-9087-7dcbb0efce68" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001047Z:f9a996b8-2400-4f00-a121-d8ab63a107c2" + "WESTCENTRALUS:20220401T185734Z:d5ece4c7-e9e4-4320-9087-7dcbb0efce68" ], "Date": [ - "Tue, 13 Jul 2021 00:10:46 GMT" + "Fri, 01 Apr 2022 18:57:33 GMT" ], "Content-Length": [ - "540" + "550" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2040,17 +2040,17 @@ "-1" ] }, - "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": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5e722143-56f3-4723-8186-88ee1d2ed9e3" + "18869185-1243-4c96-b3e3-017a93c7b131" ], "If-Match": [ "*" @@ -2059,10 +2059,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2079,7 +2079,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/5Y=\"" + "\"AAAAAAAAC1M=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2088,25 +2088,25 @@ "nosniff" ], "x-ms-request-id": [ - "08afc0f2-a0df-4a46-91bc-a5463e50157c" + "158e8a50-fea2-46d9-979d-0152d322f241" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-correlation-request-id": [ - "0f802d18-9c34-436a-9822-df28ece91c09" + "158e8a50-fea2-46d9-979d-0152d322f241" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001050Z:0f802d18-9c34-436a-9822-df28ece91c09" + "WESTCENTRALUS:20220401T185737Z:158e8a50-fea2-46d9-979d-0152d322f241" ], "Date": [ - "Tue, 13 Jul 2021 00:10:49 GMT" + "Fri, 01 Apr 2022 18:57:37 GMT" ], "Content-Length": [ - "540" + "550" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2115,26 +2115,26 @@ "-1" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2288f53-5b06-4c80-baaa-cb0dde00d299" + "6e4bb15d-dd47-415a-997d-76ba4f2a79e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2145,7 +2145,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/3I=\"" + "\"AAAAAAAACy8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2154,25 +2154,25 @@ "nosniff" ], "x-ms-request-id": [ - "444d88bc-7e3c-49a4-838e-2e454e6fabe0" + "24b12a1c-b614-455f-aef1-9617d64cb737" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-correlation-request-id": [ - "7082ab78-259b-4d23-ad0f-cdccc75f3c9b" + "24b12a1c-b614-455f-aef1-9617d64cb737" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001047Z:7082ab78-259b-4d23-ad0f-cdccc75f3c9b" + "WESTCENTRALUS:20220401T185734Z:24b12a1c-b614-455f-aef1-9617d64cb737" ], "Date": [ - "Tue, 13 Jul 2021 00:10:46 GMT" + "Fri, 01 Apr 2022 18:57:34 GMT" ], "Content-Length": [ - "540" + "550" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2181,26 +2181,26 @@ "-1" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b56299a-522d-4198-b465-2c8d1a2a146f" + "55377d55-337e-4625-a570-0d0c01c4027f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2217,22 +2217,22 @@ "nosniff" ], "x-ms-request-id": [ - "6debade9-8141-4fa5-9bfa-b74b711324d2" + "309cb052-56e6-4010-9bcf-cbe0c20bd7ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "85094d94-5f1a-4f4d-9bcb-ab2106b6403b" + "309cb052-56e6-4010-9bcf-cbe0c20bd7ca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001047Z:85094d94-5f1a-4f4d-9bcb-ab2106b6403b" + "WESTCENTRALUS:20220401T185734Z:309cb052-56e6-4010-9bcf-cbe0c20bd7ca" ], "Date": [ - "Tue, 13 Jul 2021 00:10:47 GMT" + "Fri, 01 Apr 2022 18:57:34 GMT" ], "Content-Length": [ "97" @@ -2248,22 +2248,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ffd38ca-3f31-4c4f-ae61-32e07d0001e7" + "211c0e21-6b33-434e-b29b-d5dfaedc7716" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2280,22 +2280,22 @@ "nosniff" ], "x-ms-request-id": [ - "4862dd6b-6222-4175-a951-79403254794f" + "ab7d8e75-79a8-4d7a-9f0a-e839090cfe71" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11976" ], "x-ms-correlation-request-id": [ - "4e650caa-bd52-4c8c-ad2c-3c637371ae29" + "ab7d8e75-79a8-4d7a-9f0a-e839090cfe71" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001050Z:4e650caa-bd52-4c8c-ad2c-3c637371ae29" + "WESTCENTRALUS:20220401T185738Z:ab7d8e75-79a8-4d7a-9f0a-e839090cfe71" ], "Date": [ - "Tue, 13 Jul 2021 00:10:50 GMT" + "Fri, 01 Apr 2022 18:57:38 GMT" ], "Content-Length": [ "97" @@ -2311,13 +2311,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a29eb87-07a0-433b-beff-aa12b6027f77" + "4e0a2cd0-cde1-4843-8e48-74cd33b1bd68" ], "If-Match": [ "*" @@ -2326,10 +2326,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2346,7 +2346,7 @@ "nosniff" ], "x-ms-request-id": [ - "b50697a1-9c4f-41ef-9d78-d3367455e9fd" + "3fe0a23b-bb6d-4b84-aa78-1eb7fe0c202a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2355,13 +2355,13 @@ "14996" ], "x-ms-correlation-request-id": [ - "4348d42f-cf58-4e2a-be95-1172e1f31f50" + "3fe0a23b-bb6d-4b84-aa78-1eb7fe0c202a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001047Z:4348d42f-cf58-4e2a-be95-1172e1f31f50" + "WESTCENTRALUS:20220401T185734Z:3fe0a23b-bb6d-4b84-aa78-1eb7fe0c202a" ], "Date": [ - "Tue, 13 Jul 2021 00:10:47 GMT" + "Fri, 01 Apr 2022 18:57:34 GMT" ], "Expires": [ "-1" @@ -2374,13 +2374,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "909ad97e-00c4-460f-a415-74256c2bf796" + "605366ef-2fc9-4571-b962-e6881eba3e4d" ], "If-Match": [ "*" @@ -2389,10 +2389,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2409,7 +2409,7 @@ "nosniff" ], "x-ms-request-id": [ - "04550a6c-82f9-4714-bf31-9b5c4ba1f2e0" + "843c6677-8c8f-46ab-80a2-5c21a8726fe3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2418,13 +2418,13 @@ "14992" ], "x-ms-correlation-request-id": [ - "2aba9530-11a6-4d8f-8ed1-344586f44a30" + "843c6677-8c8f-46ab-80a2-5c21a8726fe3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001050Z:2aba9530-11a6-4d8f-8ed1-344586f44a30" + "WESTCENTRALUS:20220401T185738Z:843c6677-8c8f-46ab-80a2-5c21a8726fe3" ], "Date": [ - "Tue, 13 Jul 2021 00:10:49 GMT" + "Fri, 01 Apr 2022 18:57:37 GMT" ], "Expires": [ "-1" @@ -2437,22 +2437,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=rawxml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXJhd3htbCZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?format=rawxml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD1yYXd4bWwmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd78192a-7627-4572-9642-4d68e3b9124e" + "87f366c1-e416-444e-bd20-638f1db5d4cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2463,7 +2463,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/4Q=\"" + "\"AAAAAAAAC0E=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2472,25 +2472,25 @@ "nosniff" ], "x-ms-request-id": [ - "0a214554-46bd-4bae-80f4-1d770391e21a" + "eb1c765f-752a-4d91-8698-7617c8a5ca19" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11984" ], "x-ms-correlation-request-id": [ - "a74868be-598e-4e9d-ad48-0787a58f91c2" + "eb1c765f-752a-4d91-8698-7617c8a5ca19" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001048Z:a74868be-598e-4e9d-ad48-0787a58f91c2" + "WESTCENTRALUS:20220401T185735Z:eb1c765f-752a-4d91-8698-7617c8a5ca19" ], "Date": [ - "Tue, 13 Jul 2021 00:10:48 GMT" + "Fri, 01 Apr 2022 18:57:35 GMT" ], "Content-Length": [ - "581" + "591" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2499,26 +2499,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?format=rawxml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD1yYXd4bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?format=rawxml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9cmF3eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f8d5a41-5e36-4716-bb9d-09202803f922" + "42480426-a096-42e1-a30b-e752f987d458" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2529,7 +2529,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/40=\"" + "\"AAAAAAAAC0o=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2538,25 +2538,25 @@ "nosniff" ], "x-ms-request-id": [ - "defd2fb1-1427-47b2-8293-b56d757e13ab" + "5556722a-a8b7-4651-a498-7d8d1641953e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11981" ], "x-ms-correlation-request-id": [ - "2665cf2f-4c49-4960-8545-72da38fb45d8" + "5556722a-a8b7-4651-a498-7d8d1641953e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001049Z:2665cf2f-4c49-4960-8545-72da38fb45d8" + "WESTCENTRALUS:20220401T185736Z:5556722a-a8b7-4651-a498-7d8d1641953e" ], "Date": [ - "Tue, 13 Jul 2021 00:10:49 GMT" + "Fri, 01 Apr 2022 18:57:36 GMT" ], "Content-Length": [ - "813" + "823" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2565,26 +2565,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?format=rawxml&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD1yYXd4bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?format=rawxml&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9cmF3eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c22d5220-dd05-441f-bdd3-e3400f2698b9" + "ae8f264d-d9ca-4414-8ee4-3e98ce017587" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2595,7 +2595,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/5Y=\"" + "\"AAAAAAAAC1M=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2604,25 +2604,25 @@ "nosniff" ], "x-ms-request-id": [ - "69415a84-a4e0-4aef-8a43-b5ea634d063f" + "9623dcc6-93ba-4d32-ae74-9470d062d5f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11977" ], "x-ms-correlation-request-id": [ - "48c3de02-3e6c-42e1-ab49-27ffb837b922" + "9623dcc6-93ba-4d32-ae74-9470d062d5f7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210713T001050Z:48c3de02-3e6c-42e1-ab49-27ffb837b922" + "WESTCENTRALUS:20220401T185737Z:9623dcc6-93ba-4d32-ae74-9470d062d5f7" ], "Date": [ - "Tue, 13 Jul 2021 00:10:49 GMT" + "Fri, 01 Apr 2022 18:57:37 GMT" ], "Content-Length": [ - "543" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2631,12 +2631,12 @@ "-1" ] }, - "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\": \"rawxml\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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\": \"rawxml\",\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 } ], "Names": {}, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 9498be6a9343..2638c77a596b 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcb2f2d3-a1c7-4356-a540-6cb5b2efe225" + "d96d515c-50d4-499f-9509-b395d92b2737" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "f06587ac-fe7e-4fbd-b625-2b5f7cbc5528" + "0f98ddf1-0f7d-44b4-b464-53fda324be1d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "78f4a995-6732-45fe-ae9e-a12eb8f93393" + "0f98ddf1-0f7d-44b4-b464-53fda324be1d" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001249Z:78f4a995-6732-45fe-ae9e-a12eb8f93393" + "WESTUS:20220401T185930Z:0f98ddf1-0f7d-44b4-b464-53fda324be1d" ], "Date": [ - "Tue, 13 Jul 2021 00:12:49 GMT" + "Fri, 01 Apr 2022 18:59:29 GMT" ], "Content-Length": [ - "1287" + "1305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "-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\": 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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/ps8354?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1184\",\r\n \"terms\": \"ps6815\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps3631\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9460\",\r\n \"terms\": \"ps6955\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps3367\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "01dc896f-18d4-448d-96da-f3fb31f8cd8e" + "fa55afe6-54c1-4048-a763-7ac647df7320" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABABE=\"" + "\"AAAAAAAAC9M=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "x-ms-request-id": [ - "888f6f49-f197-4ee6-a2f9-33f4b21e91e1" + "c84e4e71-bc4c-4161-a1a4-26c4412b9e5b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,16 +114,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "3266cb62-078e-4894-94ae-fdcefff65f50" + "c84e4e71-bc4c-4161-a1a4-26c4412b9e5b" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001251Z:3266cb62-078e-4894-94ae-fdcefff65f50" + "WESTUS:20220401T185933Z:c84e4e71-bc4c-4161-a1a4-26c4412b9e5b" ], "Date": [ - "Tue, 13 Jul 2021 00:12:50 GMT" + "Fri, 01 Apr 2022 18:59:33 GMT" ], "Content-Length": [ - "998" + "1018" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,26 +132,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps3631\",\r\n \"description\": \"ps1184\",\r\n \"terms\": \"ps6815\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps3367\",\r\n \"description\": \"ps9460\",\r\n \"terms\": \"ps6955\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/ps8354?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01dc896f-18d4-448d-96da-f3fb31f8cd8e" + "fa55afe6-54c1-4048-a763-7ac647df7320" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABABE=\"" + "\"AAAAAAAAC9M=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "x-ms-request-id": [ - "7e8a989b-d95f-43e0-96c1-823ef1885e14" + "a4001566-aaea-49d1-9634-35237e8f0b5f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -180,16 +180,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "1fc78066-b674-46e6-8a40-e117060cb892" + "a4001566-aaea-49d1-9634-35237e8f0b5f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001251Z:1fc78066-b674-46e6-8a40-e117060cb892" + "WESTUS:20220401T185933Z:a4001566-aaea-49d1-9634-35237e8f0b5f" ], "Date": [ - "Tue, 13 Jul 2021 00:12:50 GMT" + "Fri, 01 Apr 2022 18:59:33 GMT" ], "Content-Length": [ - "484" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,26 +198,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps3631\",\r\n \"description\": \"ps1184\",\r\n \"terms\": \"ps6815\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps3367\",\r\n \"description\": \"ps9460\",\r\n \"terms\": \"ps6955\",\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/ps8354?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74a4dd1c-725b-4e05-9162-1d21f345e663" + "e054fde1-48a6-4f52-b7bf-01cda9e77290" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -228,7 +228,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAB8=\"" + "\"AAAAAAAAC98=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "x-ms-request-id": [ - "74bf1e5c-254c-4442-9213-e6f5fe1ab523" + "5983aa2c-6951-40ce-890d-dc6f005c11ac" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -246,16 +246,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "688dca53-f3c4-4ae2-9323-fc6b833629da" + "5983aa2c-6951-40ce-890d-dc6f005c11ac" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001252Z:688dca53-f3c4-4ae2-9323-fc6b833629da" + "WESTUS:20220401T185934Z:5983aa2c-6951-40ce-890d-dc6f005c11ac" ], "Date": [ - "Tue, 13 Jul 2021 00:12:52 GMT" + "Fri, 01 Apr 2022 18:59:34 GMT" ], "Content-Length": [ - "485" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,26 +264,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps7874\",\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps8974\",\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\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/ps8354/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8139834-0404-4656-8a09-e87a63489abe" + "ba3d8ba3-8a22-438d-9cf2-e6aa14789c11" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -300,7 +300,7 @@ "nosniff" ], "x-ms-request-id": [ - "b522310c-11ad-4be3-aac0-512fed6fc724" + "f7cd9f4a-5ab0-4d2a-9706-4a34c1ef7c58" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,13 +309,13 @@ "11997" ], "x-ms-correlation-request-id": [ - "7c8128d1-fe60-4da3-bb07-1b88df90d9c3" + "f7cd9f4a-5ab0-4d2a-9706-4a34c1ef7c58" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001251Z:7c8128d1-fe60-4da3-bb07-1b88df90d9c3" + "WESTUS:20220401T185933Z:f7cd9f4a-5ab0-4d2a-9706-4a34c1ef7c58" ], "Date": [ - "Tue, 13 Jul 2021 00:12:50 GMT" + "Fri, 01 Apr 2022 18:59:33 GMT" ], "Content-Length": [ "34" @@ -331,22 +331,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "213b9190-4817-4405-9c36-0ce5071aa175" + "b2d0d204-12c5-4e9e-8955-b1a7b983e5dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -363,7 +363,7 @@ "nosniff" ], "x-ms-request-id": [ - "f4489cb2-b73e-48ef-a5f3-e7e2f93f3599" + "d37a2e6e-06c6-484d-9f86-a9b805e62297" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -372,16 +372,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "51e0bf47-8bc6-4eed-921b-45aeef28fc4d" + "d37a2e6e-06c6-484d-9f86-a9b805e62297" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001252Z:51e0bf47-8bc6-4eed-921b-45aeef28fc4d" + "WESTUS:20220401T185934Z:d37a2e6e-06c6-484d-9f86-a9b805e62297" ], "Date": [ - "Tue, 13 Jul 2021 00:12:51 GMT" + "Fri, 01 Apr 2022 18:59:34 GMT" ], "Content-Length": [ - "754" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -390,26 +390,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/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/ps8354/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52bfc356-8be8-444b-892b-3fe8a75bc0f3" + "80d4fef6-5562-41f2-b84d-97bad6281de6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -426,7 +426,7 @@ "nosniff" ], "x-ms-request-id": [ - "eea68440-7adb-4525-aa89-7abcd969b7bf" + "7ca80494-2edd-4e85-a1fd-cfd091b2380f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,13 +435,13 @@ "11990" ], "x-ms-correlation-request-id": [ - "f56c7871-8ebd-4f6c-b297-5a9817686f19" + "7ca80494-2edd-4e85-a1fd-cfd091b2380f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001253Z:f56c7871-8ebd-4f6c-b297-5a9817686f19" + "WESTUS:20220401T185936Z:7ca80494-2edd-4e85-a1fd-cfd091b2380f" ], "Date": [ - "Tue, 13 Jul 2021 00:12:53 GMT" + "Fri, 01 Apr 2022 18:59:36 GMT" ], "Content-Length": [ "34" @@ -457,22 +457,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fe686a8-8bf2-416a-8e5d-91c85cdeec97" + "a6502b41-de62-4610-9caa-71c488ed5549" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -489,7 +489,7 @@ "nosniff" ], "x-ms-request-id": [ - "e8d6bce0-026b-456a-8180-576549ed6038" + "da949227-44ab-43dd-8b69-f83525c96566" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -498,16 +498,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "dc9ba162-4ad3-4155-a9f7-ccf4adde412e" + "da949227-44ab-43dd-8b69-f83525c96566" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001251Z:dc9ba162-4ad3-4155-a9f7-ccf4adde412e" + "WESTUS:20220401T185933Z:da949227-44ab-43dd-8b69-f83525c96566" ], "Date": [ - "Tue, 13 Jul 2021 00:12:51 GMT" + "Fri, 01 Apr 2022 18:59:33 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,26 +516,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/apis?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27920501-ad61-4592-a883-ec721cdfe960" + "4f1aa072-d304-46d5-8ed8-c2b5aa0315a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -552,7 +552,7 @@ "nosniff" ], "x-ms-request-id": [ - "82a063bc-d3e9-426a-8c53-fbcde971c94b" + "22a6a80a-308f-4d00-8bf3-98fcd31f5078" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -561,16 +561,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "657c0f52-beb0-49ad-801c-50a900c44c9d" + "22a6a80a-308f-4d00-8bf3-98fcd31f5078" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001253Z:657c0f52-beb0-49ad-801c-50a900c44c9d" + "WESTUS:20220401T185935Z:22a6a80a-308f-4d00-8bf3-98fcd31f5078" ], "Date": [ - "Tue, 13 Jul 2021 00:12:52 GMT" + "Fri, 01 Apr 2022 18:59:35 GMT" ], "Content-Length": [ - "729" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -579,26 +579,26 @@ "-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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/products/ps8354/apis/echo-api?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis/echo-api?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fe686a8-8bf2-416a-8e5d-91c85cdeec97" + "a6502b41-de62-4610-9caa-71c488ed5549" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -609,7 +609,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA/5E=\"" + "\"AAAAAAAAC04=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,7 +618,7 @@ "nosniff" ], "x-ms-request-id": [ - "97333f77-36d6-45eb-92b5-3e7d0a60106a" + "61746baa-4e85-4db0-ad38-c242ecd58639" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -627,16 +627,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "357dd0e3-8b16-4dde-81d7-6514ba600ac9" + "61746baa-4e85-4db0-ad38-c242ecd58639" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001251Z:357dd0e3-8b16-4dde-81d7-6514ba600ac9" + "WESTUS:20220401T185933Z:61746baa-4e85-4db0-ad38-c242ecd58639" ], "Date": [ - "Tue, 13 Jul 2021 00:12:51 GMT" + "Fri, 01 Apr 2022 18:59:33 GMT" ], "Content-Length": [ - "619" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -645,17 +645,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/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/ps8354?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps7874\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps8974\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "74a4dd1c-725b-4e05-9162-1d21f345e663" + "e054fde1-48a6-4f52-b7bf-01cda9e77290" ], "If-Match": [ "*" @@ -664,16 +664,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "236" + "235" ] }, "ResponseHeaders": { @@ -684,7 +684,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAB8=\"" + "\"AAAAAAAAC98=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,7 +693,7 @@ "nosniff" ], "x-ms-request-id": [ - "e37ab54e-6bcb-4f46-a1bb-d7a578e60c20" + "3e3759e4-905d-4ada-95ca-9722f07ba563" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -702,16 +702,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "dedaeccf-09b4-43aa-99ea-be245eb710c9" + "3e3759e4-905d-4ada-95ca-9722f07ba563" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001252Z:dedaeccf-09b4-43aa-99ea-be245eb710c9" + "WESTUS:20220401T185934Z:3e3759e4-905d-4ada-95ca-9722f07ba563" ], "Date": [ - "Tue, 13 Jul 2021 00:12:52 GMT" + "Fri, 01 Apr 2022 18:59:34 GMT" ], "Content-Length": [ - "504" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,26 +720,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps7874\",\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"groups\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps8974\",\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"groups\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'ps7874'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ3BzNzg3NCcmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?$filter=properties/displayName%20eq%20'ps8974'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz8kZmlsdGVyPXByb3BlcnRpZXMvZGlzcGxheU5hbWUlMjBlcSUyMCdwczg5NzQnJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6dc543d4-35f3-4bf0-b7b8-ccaed1511b76" + "8af0278b-0264-4a52-b9b5-0736e76e14ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -756,7 +756,7 @@ "nosniff" ], "x-ms-request-id": [ - "e98b8f36-56c9-4b7d-a302-14f38778e512" + "1d0aa87b-9a44-4e98-956a-caedab4203da" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -765,16 +765,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "26384caa-bd04-426d-86af-007e6ad7dcdb" + "1d0aa87b-9a44-4e98-956a-caedab4203da" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001252Z:26384caa-bd04-426d-86af-007e6ad7dcdb" + "WESTUS:20220401T185934Z:1d0aa87b-9a44-4e98-956a-caedab4203da" ], "Date": [ - "Tue, 13 Jul 2021 00:12:52 GMT" + "Fri, 01 Apr 2022 18:59:34 GMT" ], "Content-Length": [ - "581" + "590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -783,26 +783,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps7874\",\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps8974\",\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcHJvZHVjdHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/products?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c86db47-018f-45e0-abb2-2dad3fccbc05" + "1320b207-4453-4b2e-a41c-ee8ad50d7f8e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -819,7 +819,7 @@ "nosniff" ], "x-ms-request-id": [ - "cb434e48-00c4-427f-978a-8658f6b6175c" + "ffdd70e8-eb06-4b1d-bebf-a8a2d1d4e83e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -828,16 +828,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "396cce82-e807-43de-b065-0016cb017bdd" + "ffdd70e8-eb06-4b1d-bebf-a8a2d1d4e83e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001253Z:396cce82-e807-43de-b065-0016cb017bdd" + "WESTUS:20220401T185935Z:ffdd70e8-eb06-4b1d-bebf-a8a2d1d4e83e" ], "Date": [ - "Tue, 13 Jul 2021 00:12:52 GMT" + "Fri, 01 Apr 2022 18:59:35 GMT" ], "Content-Length": [ - "1888" + "1915" ], "Content-Type": [ "application/json; charset=utf-8" @@ -846,26 +846,26 @@ "-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/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps7874\",\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps8974\",\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/ps8354/apis/echo-api?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis/echo-api?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27920501-ad61-4592-a883-ec721cdfe960" + "4f1aa072-d304-46d5-8ed8-c2b5aa0315a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -882,7 +882,7 @@ "nosniff" ], "x-ms-request-id": [ - "2d6897ec-1819-4492-8db9-987f2c4daa55" + "9be53566-578e-4665-939a-7d682a57452e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -891,13 +891,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "911bf08e-13af-4db4-b9e8-01c7abbadd9d" + "9be53566-578e-4665-939a-7d682a57452e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001253Z:911bf08e-13af-4db4-b9e8-01c7abbadd9d" + "WESTUS:20220401T185936Z:9be53566-578e-4665-939a-7d682a57452e" ], "Date": [ - "Tue, 13 Jul 2021 00:12:53 GMT" + "Fri, 01 Apr 2022 18:59:36 GMT" ], "Expires": [ "-1" @@ -910,13 +910,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?deleteSubscriptions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?deleteSubscriptions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/ZGVsZXRlU3Vic2NyaXB0aW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03ece42f-bd50-4972-929f-59ca251d2fcc" + "4a0dfbdc-a9ec-446d-8342-0eed71d3af3b" ], "If-Match": [ "*" @@ -925,10 +925,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -945,7 +945,7 @@ "nosniff" ], "x-ms-request-id": [ - "f2c5418b-9685-4150-91cf-3bdb126e80cb" + "0db677ae-e65e-475c-8fc0-105e8e8035b8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -954,13 +954,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "977b9c7d-23f7-481f-9f93-5f9c2e99e29c" + "0db677ae-e65e-475c-8fc0-105e8e8035b8" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001254Z:977b9c7d-23f7-481f-9f93-5f9c2e99e29c" + "WESTUS:20220401T185937Z:0db677ae-e65e-475c-8fc0-105e8e8035b8" ], "Date": [ - "Tue, 13 Jul 2021 00:12:53 GMT" + "Fri, 01 Apr 2022 18:59:37 GMT" ], "Expires": [ "-1" @@ -975,16 +975,16 @@ ], "Names": { "": [ - "ps8354", - "ps3631", - "ps1184", - "ps6815", - "ps7874", - "ps9840", - "ps1049" + "ps9207", + "ps3367", + "ps9460", + "ps6955", + "ps8974", + "ps1822", + "ps828" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 699312589d5d..da06fa67f5ce 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"ps4604\",\r\n \"value\": \"ps5500\"\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\": \"ps6996\",\r\n \"value\": \"ps8504\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1aa295d6-f83b-4027-8e01-167259fd7551" + "07af469f-2cae-4b75-9441-0cc42cfcc770" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,7 +33,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01&asyncId=6101a28b46346111804bdbd3&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01&asyncId=624773a901234e13942b06e7&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,7 +42,7 @@ "nosniff" ], "x-ms-request-id": [ - "639ec637-1f76-44be-8876-ad53986ff5b9" + "96f11657-be6a-4fda-85ae-a8303547c2d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,13 +51,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "08d62472-4853-4521-b5fb-c65ba40d5819" + "96f11657-be6a-4fda-85ae-a8303547c2d2" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183139Z:08d62472-4853-4521-b5fb-c65ba40d5819" + "WESTUS:20220401T215033Z:96f11657-be6a-4fda-85ae-a8303547c2d2" ], "Date": [ - "Wed, 28 Jul 2021 18:31:39 GMT" + "Fri, 01 Apr 2022 21:50:33 GMT" ], "Expires": [ "-1" @@ -70,19 +70,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01&asyncId=6101a28b46346111804bdbd3&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEyOGI0NjM0NjExMTgwNGJkYmQzJmFzeW5jQ29kZT0yMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01&asyncId=624773a901234e13942b06e7&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMSZhc3luY0lkPTYyNDc3M2E5MDEyMzRlMTM5NDJiMDZlNyZhc3luY0NvZGU9MjAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1aa295d6-f83b-4027-8e01-167259fd7551" + "07af469f-2cae-4b75-9441-0cc42cfcc770" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACho=\"" + "\"AAAAAAAADg8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,7 +102,7 @@ "nosniff" ], "x-ms-request-id": [ - "d3954b43-275d-4d58-8aab-c4d301300955" + "6d8b6cd9-04af-4417-89ca-af688318e4ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,16 +111,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "b84c437c-4c85-41d3-ab93-27daae7c1c1d" + "6d8b6cd9-04af-4417-89ca-af688318e4ab" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183209Z:b84c437c-4c85-41d3-ab93-27daae7c1c1d" + "WESTUS:20220401T215104Z:6d8b6cd9-04af-4417-89ca-af688318e4ab" ], "Date": [ - "Wed, 28 Jul 2021 18:32:09 GMT" + "Fri, 01 Apr 2022 21:51:03 GMT" ], "Content-Length": [ - "430" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\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/ps2920/listValue?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMC9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969/listValue?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5NjkvbGlzdFZhbHVlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b922dbd3-491e-4cf3-8758-9db6ac809a7e" + "bd476709-1849-474b-93f2-7235030b7990" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACho=\"" + "\"AAAAAAAADg8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "6b0da6eb-42f9-4775-a8d0-ff746dd91d6a" + "4b3fc6b3-c8f0-4aad-ba3c-adb2c30198c5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,13 +177,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "37c48172-f576-4572-bc11-df66c8d4b877" + "4b3fc6b3-c8f0-4aad-ba3c-adb2c30198c5" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183209Z:37c48172-f576-4572-bc11-df66c8d4b877" + "WESTUS:20220401T215104Z:4b3fc6b3-c8f0-4aad-ba3c-adb2c30198c5" ], "Date": [ - "Wed, 28 Jul 2021 18:32:09 GMT" + "Fri, 01 Apr 2022 21:51:03 GMT" ], "Content-Length": [ "18" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps5500\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps8504\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920/listValue?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMC9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969/listValue?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5NjkvbGlzdFZhbHVlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a92b9a5-12a9-4598-86ba-f1ba678400aa" + "316f6bc5-e0ea-4e73-b2de-ab8cd4447a6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiA=\"" + "\"AAAAAAAADhQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "x-ms-request-id": [ - "29bb92c8-a660-4565-9b2d-6d1218039b07" + "7cd00667-f15f-4df0-9e67-5ba351439d82" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,13 +243,13 @@ "1194" ], "x-ms-correlation-request-id": [ - "3d6ff63b-2cb6-4437-af17-d5f7064cbbb5" + "7cd00667-f15f-4df0-9e67-5ba351439d82" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183444Z:3d6ff63b-2cb6-4437-af17-d5f7064cbbb5" + "WESTUS:20220401T215340Z:7cd00667-f15f-4df0-9e67-5ba351439d82" ], "Date": [ - "Wed, 28 Jul 2021 18:34:43 GMT" + "Fri, 01 Apr 2022 21:53:40 GMT" ], "Content-Length": [ "18" @@ -261,26 +261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps5500\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps8504\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6762342b-f62f-40d0-b420-889ba7fdb20d" + "4bdfc5c0-8222-4089-b5c4-30ca474f1e2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,7 +297,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01&asyncId=6101a2a946346111804bdbd7&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01&asyncId=624773c801234e13942b06eb&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,7 +306,7 @@ "nosniff" ], "x-ms-request-id": [ - "9d3c68bd-9e05-489e-8126-99264b92d884" + "08267152-d590-47d9-985f-314ef71d3938" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -315,13 +315,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "8e16e0ac-c37f-47f2-89bd-caa0f1e986b2" + "08267152-d590-47d9-985f-314ef71d3938" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183210Z:8e16e0ac-c37f-47f2-89bd-caa0f1e986b2" + "WESTUS:20220401T215104Z:08267152-d590-47d9-985f-314ef71d3938" ], "Date": [ - "Wed, 28 Jul 2021 18:32:09 GMT" + "Fri, 01 Apr 2022 21:51:04 GMT" ], "Expires": [ "-1" @@ -334,19 +334,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01&asyncId=6101a2a946346111804bdbd7&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEyYTk0NjM0NjExMTgwNGJkYmQ3JmFzeW5jQ29kZT0yMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01&asyncId=624773c801234e13942b06eb&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMSZhc3luY0lkPTYyNDc3M2M4MDEyMzRlMTM5NDJiMDZlYiZhc3luY0NvZGU9MjAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6762342b-f62f-40d0-b420-889ba7fdb20d" + "4bdfc5c0-8222-4089-b5c4-30ca474f1e2f" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -357,7 +357,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAChw=\"" + "\"AAAAAAAADhA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,7 +366,7 @@ "nosniff" ], "x-ms-request-id": [ - "77f5afef-3a67-4f97-9a4e-4fb858eb10a4" + "3b95965e-ebc4-44ca-936b-e6e0440f1a0f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,16 +375,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "81acedca-699d-4b74-96ba-e864a2397f6b" + "3b95965e-ebc4-44ca-936b-e6e0440f1a0f" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183240Z:81acedca-699d-4b74-96ba-e864a2397f6b" + "WESTUS:20220401T215135Z:3b95965e-ebc4-44ca-936b-e6e0440f1a0f" ], "Date": [ - "Wed, 28 Jul 2021 18:32:39 GMT" + "Fri, 01 Apr 2022 21:51:35 GMT" ], "Content-Length": [ - "614" + "624" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,26 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:09.9736242Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:04.8463957Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160/refreshSecret?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MC9yZWZyZXNoU2VjcmV0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148/refreshSecret?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDgvcmVmcmVzaFNlY3JldD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f" + "37b65578-6919-4ba1-bdad-8a55c5c0bb2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -423,7 +423,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160/refreshSecret?api-version=2020-12-01&asyncId=6101a2c846346111804bdbdb&asyncCode=200" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148/refreshSecret?api-version=2021-08-01&asyncId=624773e701234e13942b06ef&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +432,7 @@ "nosniff" ], "x-ms-request-id": [ - "e28a5b1a-5317-4a4b-86dc-c701ed347d8b" + "ba2ccebc-d221-4c8a-b2e4-07bce2653006" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,13 +441,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "1a13de72-65d9-4798-94e1-d7dd6b5269bb" + "ba2ccebc-d221-4c8a-b2e4-07bce2653006" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183240Z:1a13de72-65d9-4798-94e1-d7dd6b5269bb" + "WESTUS:20220401T215135Z:ba2ccebc-d221-4c8a-b2e4-07bce2653006" ], "Date": [ - "Wed, 28 Jul 2021 18:32:39 GMT" + "Fri, 01 Apr 2022 21:51:35 GMT" ], "Expires": [ "-1" @@ -460,19 +460,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160/refreshSecret?api-version=2020-12-01&asyncId=6101a2c846346111804bdbdb&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MC9yZWZyZXNoU2VjcmV0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MTAxYTJjODQ2MzQ2MTExODA0YmRiZGImYXN5bmNDb2RlPTIwMA==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148/refreshSecret?api-version=2021-08-01&asyncId=624773e701234e13942b06ef&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDgvcmVmcmVzaFNlY3JldD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzczZTcwMTIzNGUxMzk0MmIwNmVmJmFzeW5jQ29kZT0yMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f" + "37b65578-6919-4ba1-bdad-8a55c5c0bb2e" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -483,7 +483,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh0=\"" + "\"AAAAAAAADhE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,7 +492,7 @@ "nosniff" ], "x-ms-request-id": [ - "41ac7834-1c15-43bb-a5ea-ad37c26e72b0" + "745ea9c5-1d18-4a75-86f1-bcd68d00b460" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -501,16 +501,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "b014b4f7-c717-4790-8b62-ba1453b2494b" + "745ea9c5-1d18-4a75-86f1-bcd68d00b460" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183310Z:b014b4f7-c717-4790-8b62-ba1453b2494b" + "WESTUS:20220401T215205Z:745ea9c5-1d18-4a75-86f1-bcd68d00b460" ], "Date": [ - "Wed, 28 Jul 2021 18:33:09 GMT" + "Fri, 01 Apr 2022 21:52:05 GMT" ], "Content-Length": [ - "628" + "638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,23 +519,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues/refreshSecret\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues/refreshSecret\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\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/ps7160/refreshSecret?api-version=2020-12-01&asyncId=6101a2c846346111804bdbdb&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MC9yZWZyZXNoU2VjcmV0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MTAxYTJjODQ2MzQ2MTExODA0YmRiZGImYXN5bmNDb2RlPTIwMA==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148/refreshSecret?api-version=2021-08-01&asyncId=624773e701234e13942b06ef&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDgvcmVmcmVzaFNlY3JldD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzczZTcwMTIzNGUxMzk0MmIwNmVmJmFzeW5jQ29kZT0yMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f" + "37b65578-6919-4ba1-bdad-8a55c5c0bb2e" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -546,7 +546,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh0=\"" + "\"AAAAAAAADhE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -555,7 +555,7 @@ "nosniff" ], "x-ms-request-id": [ - "0a671f4f-2c0b-456f-b295-4b9ed259888e" + "e55025be-584a-4325-8a64-6a2d6808e069" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,16 +564,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "4bd06c47-c3ca-420d-bfc0-0fe7dc4eafa0" + "e55025be-584a-4325-8a64-6a2d6808e069" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183310Z:4bd06c47-c3ca-420d-bfc0-0fe7dc4eafa0" + "WESTUS:20220401T215205Z:e55025be-584a-4325-8a64-6a2d6808e069" ], "Date": [ - "Wed, 28 Jul 2021 18:33:10 GMT" + "Fri, 01 Apr 2022 21:52:05 GMT" ], "Content-Length": [ - "628" + "638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,26 +582,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues/refreshSecret\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues/refreshSecret\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\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/ps7160?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f" + "37b65578-6919-4ba1-bdad-8a55c5c0bb2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -612,7 +612,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh0=\"" + "\"AAAAAAAADhE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,7 +621,7 @@ "nosniff" ], "x-ms-request-id": [ - "cd15d859-2247-4f35-81c0-e4e29e2a3fef" + "a16a6799-bf5a-44aa-bd59-c475e876a83f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -630,16 +630,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "4f086696-238a-4713-9165-23d56add4926" + "a16a6799-bf5a-44aa-bd59-c475e876a83f" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183311Z:4f086696-238a-4713-9165-23d56add4926" + "WESTUS:20220401T215205Z:a16a6799-bf5a-44aa-bd59-c475e876a83f" ], "Date": [ - "Wed, 28 Jul 2021 18:33:10 GMT" + "Fri, 01 Apr 2022 21:52:05 GMT" ], "Content-Length": [ - "614" + "624" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,26 +648,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\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/ps9653?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps9075\",\r\n \"value\": \"ps2973\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps5649\",\r\n \"value\": \"ps3376\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "316c8a91-a72d-4c41-a028-68964cb6dfb2" + "434e3611-b467-4605-bb2e-d3ed6d2650a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,7 +684,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01&asyncId=6101a2e746346111804bdbdf&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01&asyncId=6247740501234e13942b06f3&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,7 +693,7 @@ "nosniff" ], "x-ms-request-id": [ - "cfada894-f2ee-4fd2-a649-d727b3c3fe6d" + "1e6609c2-1b04-4191-a2e4-6ddca34e936d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -702,13 +702,13 @@ "1197" ], "x-ms-correlation-request-id": [ - "1fd45db9-9fba-48ae-952f-042a3704b680" + "1e6609c2-1b04-4191-a2e4-6ddca34e936d" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183311Z:1fd45db9-9fba-48ae-952f-042a3704b680" + "WESTUS:20220401T215206Z:1e6609c2-1b04-4191-a2e4-6ddca34e936d" ], "Date": [ - "Wed, 28 Jul 2021 18:33:10 GMT" + "Fri, 01 Apr 2022 21:52:06 GMT" ], "Expires": [ "-1" @@ -721,19 +721,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01&asyncId=6101a2e746346111804bdbdf&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEyZTc0NjM0NjExMTgwNGJkYmRmJmFzeW5jQ29kZT0yMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01&asyncId=6247740501234e13942b06f3&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0Nzc0MDUwMTIzNGUxMzk0MmIwNmYzJmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "316c8a91-a72d-4c41-a028-68964cb6dfb2" + "434e3611-b467-4605-bb2e-d3ed6d2650a2" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -744,7 +744,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh4=\"" + "\"AAAAAAAADhI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -753,7 +753,7 @@ "nosniff" ], "x-ms-request-id": [ - "17ff27f1-876e-4bf6-80c4-78eb77c0a7c1" + "4d410367-3a61-4d5c-ac72-76b222c3069d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -762,16 +762,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "69766acd-fb85-476e-8c65-5f5f396cd79d" + "4d410367-3a61-4d5c-ac72-76b222c3069d" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183341Z:69766acd-fb85-476e-8c65-5f5f396cd79d" + "WESTUS:20220401T215236Z:4d410367-3a61-4d5c-ac72-76b222c3069d" ], "Date": [ - "Wed, 28 Jul 2021 18:33:41 GMT" + "Fri, 01 Apr 2022 21:52:35 GMT" ], "Content-Length": [ - "352" + "360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,26 +780,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8aa9e140-c7ab-4b74-858a-b8b9f98de453" + "c7aa9176-ad8e-4d74-be84-ea71b761e96c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -816,7 +816,7 @@ "nosniff" ], "x-ms-request-id": [ - "20bf0a41-c026-4f21-b909-e73b1d3725f7" + "51a0d69b-e758-4c28-9928-32c30efb3080" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -825,16 +825,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "4b313a98-324a-4d56-b017-9255f2baca57" + "51a0d69b-e758-4c28-9928-32c30efb3080" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183341Z:4b313a98-324a-4d56-b017-9255f2baca57" + "WESTUS:20220401T215236Z:51a0d69b-e758-4c28-9928-32c30efb3080" ], "Date": [ - "Wed, 28 Jul 2021 18:33:41 GMT" + "Fri, 01 Apr 2022 21:52:35 GMT" ], "Content-Length": [ - "1614" + "1642" ], "Content-Type": [ "application/json; charset=utf-8" @@ -843,26 +843,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\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/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\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/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\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\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?$filter=substringof('ps',properties/displayName)&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzPyRmaWx0ZXI9c3Vic3RyaW5nb2YoJ3BzJyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?$filter=substringof('ps',properties/displayName)&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz8kZmlsdGVyPXN1YnN0cmluZ29mKCdwcycscHJvcGVydGllcy9kaXNwbGF5TmFtZSkmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "837d3015-c0da-466d-a542-8e8976a1dbb7" + "a7ce2c62-d133-4fbe-8523-27ecde1f4bc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -879,7 +879,7 @@ "nosniff" ], "x-ms-request-id": [ - "e5140ede-6b08-491c-83d7-0500b6befc6c" + "11f4b717-8047-49cd-ae8e-1cc314c65208" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -888,16 +888,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "99654827-6134-4e7b-a1a2-658b2270f221" + "11f4b717-8047-49cd-ae8e-1cc314c65208" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183342Z:99654827-6134-4e7b-a1a2-658b2270f221" + "WESTUS:20220401T215237Z:11f4b717-8047-49cd-ae8e-1cc314c65208" ], "Date": [ - "Wed, 28 Jul 2021 18:33:41 GMT" + "Fri, 01 Apr 2022 21:52:36 GMT" ], "Content-Length": [ - "1614" + "1642" ], "Content-Type": [ "application/json; charset=utf-8" @@ -906,26 +906,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\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/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\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/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\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\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?$filter=tags/any(t:%20t%20eq%20'sdk')&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzPyRmaWx0ZXI9dGFncy9hbnkodDolMjB0JTIwZXElMjAnc2RrJykmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?$filter=tags/any(t:%20t%20eq%20'sdk')&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz8kZmlsdGVyPXRhZ3MvYW55KHQ6JTIwdCUyMGVxJTIwJ3NkaycpJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5df9472a-8fda-4d38-a4d9-1cb3a7d959e0" + "5d8b4e74-d4ac-4fc2-9680-71c118963352" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -942,7 +942,7 @@ "nosniff" ], "x-ms-request-id": [ - "11d63187-676d-4c05-bede-2616fdc7269a" + "c83a7d8c-7845-426c-aec5-b312499c5f69" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -951,16 +951,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "8bf94b7c-8878-49ea-95db-34eea83f37ca" + "c83a7d8c-7845-426c-aec5-b312499c5f69" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183342Z:8bf94b7c-8878-49ea-95db-34eea83f37ca" + "WESTUS:20220401T215238Z:c83a7d8c-7845-426c-aec5-b312499c5f69" ], "Date": [ - "Wed, 28 Jul 2021 18:33:42 GMT" + "Fri, 01 Apr 2022 21:52:37 GMT" ], "Content-Length": [ - "530" + "540" ], "Content-Type": [ "application/json; charset=utf-8" @@ -969,26 +969,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\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/ps9653?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "880264f0-34bd-4fa3-b77a-f84446e81db6" + "7fa6bb70-f24a-45c9-a01d-ec5407362b88" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -999,7 +999,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh4=\"" + "\"AAAAAAAADhI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,7 +1008,7 @@ "nosniff" ], "x-ms-request-id": [ - "0082a1f0-342c-4039-8d3e-bdb4892bae92" + "01bc2f85-5549-4174-94e6-d8a37558ea23" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1017,16 +1017,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "ad5b0301-b89f-439e-9100-5ef925709881" + "01bc2f85-5549-4174-94e6-d8a37558ea23" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183342Z:ad5b0301-b89f-439e-9100-5ef925709881" + "WESTUS:20220401T215238Z:01bc2f85-5549-4174-94e6-d8a37558ea23" ], "Date": [ - "Wed, 28 Jul 2021 18:33:42 GMT" + "Fri, 01 Apr 2022 21:52:37 GMT" ], "Content-Length": [ - "352" + "360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1035,26 +1035,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\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/ps9653?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a" + "179dd442-f4ad-41d6-b024-f9a84ac5ae61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1065,7 +1065,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh4=\"" + "\"AAAAAAAADhI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,7 +1074,7 @@ "nosniff" ], "x-ms-request-id": [ - "575221e7-03ba-4cfc-8c38-40769491e6e0" + "6275c9b3-df7d-4d05-a930-a215a2e0301b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1083,16 +1083,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "77e78f05-3ff7-4598-915f-d1d25069eaf4" + "6275c9b3-df7d-4d05-a930-a215a2e0301b" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183342Z:77e78f05-3ff7-4598-915f-d1d25069eaf4" + "WESTUS:20220401T215238Z:6275c9b3-df7d-4d05-a930-a215a2e0301b" ], "Date": [ - "Wed, 28 Jul 2021 18:33:42 GMT" + "Fri, 01 Apr 2022 21:52:37 GMT" ], "Content-Length": [ - "352" + "360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1101,26 +1101,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\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/ps9653?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a" + "179dd442-f4ad-41d6-b024-f9a84ac5ae61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1131,7 +1131,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh8=\"" + "\"AAAAAAAADhM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1140,7 +1140,7 @@ "nosniff" ], "x-ms-request-id": [ - "09418c98-5682-4f90-a781-8a74508a9198" + "bceb2944-f4e6-4b09-b385-50e531b5da8f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1149,16 +1149,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "c8edbbc8-fa36-40c9-9156-05b83fd3b927" + "bceb2944-f4e6-4b09-b385-50e531b5da8f" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183413Z:c8edbbc8-fa36-40c9-9156-05b83fd3b927" + "WESTUS:20220401T215309Z:bceb2944-f4e6-4b09-b385-50e531b5da8f" ], "Date": [ - "Wed, 28 Jul 2021 18:34:13 GMT" + "Fri, 01 Apr 2022 21:53:08 GMT" ], "Content-Length": [ - "405" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1167,26 +1167,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\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/ps9653?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b98ec61f-ba0d-44fd-9bd4-937b991d284d" + "293a6fbc-f2bc-42a3-93da-54510deaf689" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1203,7 +1203,7 @@ "nosniff" ], "x-ms-request-id": [ - "0b9ee7dc-43b5-447f-9f39-096d792294cb" + "7413c2b2-21be-46a9-ae76-aed5227802d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1212,13 +1212,13 @@ "11983" ], "x-ms-correlation-request-id": [ - "84693be8-7c89-48cd-a33a-a0bb5a4e3a63" + "7413c2b2-21be-46a9-ae76-aed5227802d2" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183444Z:84693be8-7c89-48cd-a33a-a0bb5a4e3a63" + "WESTUS:20220401T215341Z:7413c2b2-21be-46a9-ae76-aed5227802d2" ], "Date": [ - "Wed, 28 Jul 2021 18:34:44 GMT" + "Fri, 01 Apr 2022 21:53:41 GMT" ], "Content-Length": [ "86" @@ -1234,22 +1234,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653/listValue?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821/listValue?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a04f370-abef-41ea-8e66-760514693a75" + "6188d1fd-d70a-4a6f-87a9-2cfbb2243c12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1260,7 +1260,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh4=\"" + "\"AAAAAAAADhI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1269,7 +1269,7 @@ "nosniff" ], "x-ms-request-id": [ - "63d0ab17-5cdc-4b28-a42e-1ef7247451aa" + "10ea65ef-e2f1-4c92-bcd4-55125d6b63e2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1278,13 +1278,13 @@ "1197" ], "x-ms-correlation-request-id": [ - "48e2609c-6e65-453d-bf39-fd5a86ea94f2" + "10ea65ef-e2f1-4c92-bcd4-55125d6b63e2" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183342Z:48e2609c-6e65-453d-bf39-fd5a86ea94f2" + "WESTUS:20220401T215238Z:10ea65ef-e2f1-4c92-bcd4-55125d6b63e2" ], "Date": [ - "Wed, 28 Jul 2021 18:33:42 GMT" + "Fri, 01 Apr 2022 21:52:37 GMT" ], "Content-Length": [ "18" @@ -1296,26 +1296,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps2973\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps3376\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653/listValue?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821/listValue?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a" + "179dd442-f4ad-41d6-b024-f9a84ac5ae61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1326,7 +1326,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh4=\"" + "\"AAAAAAAADhI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1335,7 +1335,7 @@ "nosniff" ], "x-ms-request-id": [ - "0a983a89-425a-4d98-b42c-5796145e71e0" + "67d286f6-3d52-467f-a917-1aeffdfd3b34" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1344,13 +1344,13 @@ "1196" ], "x-ms-correlation-request-id": [ - "d8848b46-6954-4886-92c1-f79ebb82cb8b" + "67d286f6-3d52-467f-a917-1aeffdfd3b34" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183342Z:d8848b46-6954-4886-92c1-f79ebb82cb8b" + "WESTUS:20220401T215238Z:67d286f6-3d52-467f-a917-1aeffdfd3b34" ], "Date": [ - "Wed, 28 Jul 2021 18:33:42 GMT" + "Fri, 01 Apr 2022 21:52:37 GMT" ], "Content-Length": [ "18" @@ -1362,26 +1362,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps2973\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps3376\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653/listValue?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821/listValue?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fa1ed44-69c8-4701-83d1-ec19dcba2bc7" + "def8fc44-55aa-4e79-9a0d-9508449fbb43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1392,7 +1392,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh8=\"" + "\"AAAAAAAADhM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1401,7 +1401,7 @@ "nosniff" ], "x-ms-request-id": [ - "b0fcbfc0-2dbf-42b6-b9de-26335fd286d7" + "5a1075a2-a77b-41db-94d4-79f53505b017" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1410,13 +1410,13 @@ "1195" ], "x-ms-correlation-request-id": [ - "227fdf88-9643-48d0-8c2a-9aa79206c7d4" + "5a1075a2-a77b-41db-94d4-79f53505b017" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183413Z:227fdf88-9643-48d0-8c2a-9aa79206c7d4" + "WESTUS:20220401T215309Z:5a1075a2-a77b-41db-94d4-79f53505b017" ], "Date": [ - "Wed, 28 Jul 2021 18:34:13 GMT" + "Fri, 01 Apr 2022 21:53:08 GMT" ], "Content-Length": [ "18" @@ -1428,17 +1428,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps2973\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps3376\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a" + "179dd442-f4ad-41d6-b024-f9a84ac5ae61" ], "If-Match": [ "*" @@ -1447,10 +1447,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1467,7 +1467,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01&asyncId=6101a30646346111804bdbe3&asyncCode=200" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01&asyncId=6247742601234e13942b06f7&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1476,7 +1476,7 @@ "nosniff" ], "x-ms-request-id": [ - "bcdef3ee-55d4-495d-9cfd-ab92b2491f01" + "fbf88c06-d0bb-43de-afce-adbddc188eeb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1485,13 +1485,13 @@ "1196" ], "x-ms-correlation-request-id": [ - "01452b10-41d4-47be-84de-f6e9b4fac408" + "fbf88c06-d0bb-43de-afce-adbddc188eeb" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183343Z:01452b10-41d4-47be-84de-f6e9b4fac408" + "WESTUS:20220401T215238Z:fbf88c06-d0bb-43de-afce-adbddc188eeb" ], "Date": [ - "Wed, 28 Jul 2021 18:33:42 GMT" + "Fri, 01 Apr 2022 21:52:38 GMT" ], "Expires": [ "-1" @@ -1504,19 +1504,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01&asyncId=6101a30646346111804bdbe3&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEzMDY0NjM0NjExMTgwNGJkYmUzJmFzeW5jQ29kZT0yMDA=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01&asyncId=6247742601234e13942b06f7&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0Nzc0MjYwMTIzNGUxMzk0MmIwNmY3JmFzeW5jQ29kZT0yMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a" + "179dd442-f4ad-41d6-b024-f9a84ac5ae61" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1527,7 +1527,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACh8=\"" + "\"AAAAAAAADhM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,7 +1536,7 @@ "nosniff" ], "x-ms-request-id": [ - "33893af1-6406-4b73-86a9-0358792a3728" + "9ff0a39c-e1f7-4f6b-8597-9927f9c09a2c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1545,16 +1545,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "d2ea5c97-2939-4620-80cf-383e893f55ba" + "9ff0a39c-e1f7-4f6b-8597-9927f9c09a2c" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183413Z:d2ea5c97-2939-4620-80cf-383e893f55ba" + "WESTUS:20220401T215309Z:9ff0a39c-e1f7-4f6b-8597-9927f9c09a2c" ], "Date": [ - "Wed, 28 Jul 2021 18:34:12 GMT" + "Fri, 01 Apr 2022 21:53:08 GMT" ], "Content-Length": [ - "405" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1563,26 +1563,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\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/ps2920?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31be54c4-bd53-4532-8484-5dc6db55cd7f" + "66033b22-0393-4ccd-ab0e-0b9bc045b66e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1593,7 +1593,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACho=\"" + "\"AAAAAAAADg8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,7 +1602,7 @@ "nosniff" ], "x-ms-request-id": [ - "f21f5038-b7a7-44ce-ba90-723f9853646c" + "82414d31-e7ed-4158-8e01-7a2bd05225bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1611,16 +1611,16 @@ "11986" ], "x-ms-correlation-request-id": [ - "c7f9a879-6289-48b7-889b-8234a6397d7a" + "82414d31-e7ed-4158-8e01-7a2bd05225bc" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183413Z:c7f9a879-6289-48b7-889b-8234a6397d7a" + "WESTUS:20220401T215309Z:82414d31-e7ed-4158-8e01-7a2bd05225bc" ], "Date": [ - "Wed, 28 Jul 2021 18:34:13 GMT" + "Fri, 01 Apr 2022 21:53:09 GMT" ], "Content-Length": [ - "430" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1629,26 +1629,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\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/ps2920?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31be54c4-bd53-4532-8484-5dc6db55cd7f" + "66033b22-0393-4ccd-ab0e-0b9bc045b66e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1659,7 +1659,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiA=\"" + "\"AAAAAAAADhQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1668,7 +1668,7 @@ "nosniff" ], "x-ms-request-id": [ - "4d053144-4d3a-4576-8a90-48300ea2f822" + "e1d76d7d-a7da-4c1c-b23e-adf4f928018f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1677,16 +1677,16 @@ "11984" ], "x-ms-correlation-request-id": [ - "88be87ad-ae1f-44d7-8fb0-93969febc6a3" + "e1d76d7d-a7da-4c1c-b23e-adf4f928018f" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183444Z:88be87ad-ae1f-44d7-8fb0-93969febc6a3" + "WESTUS:20220401T215340Z:e1d76d7d-a7da-4c1c-b23e-adf4f928018f" ], "Date": [ - "Wed, 28 Jul 2021 18:34:43 GMT" + "Fri, 01 Apr 2022 21:53:40 GMT" ], "Content-Length": [ - "405" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1695,26 +1695,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\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/ps2920?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c17616b6-2be1-4a1a-a986-4c0f2cdc5514" + "901e080b-aea0-4993-a0d2-74c23d27cf96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1731,7 +1731,7 @@ "nosniff" ], "x-ms-request-id": [ - "a243f8f7-7288-473a-855b-f54613574972" + "010d75f9-329b-4de9-b388-e320825082b1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1740,13 +1740,13 @@ "11982" ], "x-ms-correlation-request-id": [ - "49ad37dc-711d-450d-a2dd-d9139d6472e9" + "010d75f9-329b-4de9-b388-e320825082b1" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183445Z:49ad37dc-711d-450d-a2dd-d9139d6472e9" + "WESTUS:20220401T215342Z:010d75f9-329b-4de9-b388-e320825082b1" ], "Date": [ - "Wed, 28 Jul 2021 18:34:44 GMT" + "Fri, 01 Apr 2022 21:53:42 GMT" ], "Content-Length": [ "86" @@ -1762,13 +1762,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31be54c4-bd53-4532-8484-5dc6db55cd7f" + "66033b22-0393-4ccd-ab0e-0b9bc045b66e" ], "If-Match": [ "*" @@ -1777,10 +1777,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1797,7 +1797,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01&asyncId=6101a32546346111804bdbe7&asyncCode=200" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01&asyncId=6247744501234e13942b06fb&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1806,7 +1806,7 @@ "nosniff" ], "x-ms-request-id": [ - "2e15dedb-6627-4d7a-af35-b101de2247f7" + "72b4cc88-1631-4469-8152-c381d8eaef2a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1815,13 +1815,13 @@ "1195" ], "x-ms-correlation-request-id": [ - "99ec4731-5d0e-4e9f-aefe-7ba45492a421" + "72b4cc88-1631-4469-8152-c381d8eaef2a" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183413Z:99ec4731-5d0e-4e9f-aefe-7ba45492a421" + "WESTUS:20220401T215309Z:72b4cc88-1631-4469-8152-c381d8eaef2a" ], "Date": [ - "Wed, 28 Jul 2021 18:34:13 GMT" + "Fri, 01 Apr 2022 21:53:09 GMT" ], "Expires": [ "-1" @@ -1834,19 +1834,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01&asyncId=6101a32546346111804bdbe7&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEzMjU0NjM0NjExMTgwNGJkYmU3JmFzeW5jQ29kZT0yMDA=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01&asyncId=6247744501234e13942b06fb&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMSZhc3luY0lkPTYyNDc3NDQ1MDEyMzRlMTM5NDJiMDZmYiZhc3luY0NvZGU9MjAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31be54c4-bd53-4532-8484-5dc6db55cd7f" + "66033b22-0393-4ccd-ab0e-0b9bc045b66e" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1857,7 +1857,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiA=\"" + "\"AAAAAAAADhQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1866,7 +1866,7 @@ "nosniff" ], "x-ms-request-id": [ - "ab5b9a7e-fedc-41b2-9c66-a3da57f79575" + "bca0bc61-defd-4994-a1cb-a69cb4cde23a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1875,16 +1875,16 @@ "11985" ], "x-ms-correlation-request-id": [ - "beccfa14-8dac-4f6c-b61c-20d8c71631ed" + "bca0bc61-defd-4994-a1cb-a69cb4cde23a" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183443Z:beccfa14-8dac-4f6c-b61c-20d8c71631ed" + "WESTUS:20220401T215340Z:bca0bc61-defd-4994-a1cb-a69cb4cde23a" ], "Date": [ - "Wed, 28 Jul 2021 18:34:43 GMT" + "Fri, 01 Apr 2022 21:53:39 GMT" ], "Content-Length": [ - "405" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1893,17 +1893,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\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/ps9653?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27ed02e3-5089-4016-a4d4-25c71217c6ad" + "613edde9-e569-46c6-88b6-76dcc1f702c0" ], "If-Match": [ "*" @@ -1912,10 +1912,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1932,7 +1932,7 @@ "nosniff" ], "x-ms-request-id": [ - "0837a526-4046-41f3-b0ed-9701c306a735" + "27870fe8-1a5b-479a-a39f-6026a2f4d873" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1941,13 +1941,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "2bdce6c7-3a19-4ea7-9b9a-3cee6dfe936f" + "27870fe8-1a5b-479a-a39f-6026a2f4d873" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183444Z:2bdce6c7-3a19-4ea7-9b9a-3cee6dfe936f" + "WESTUS:20220401T215341Z:27870fe8-1a5b-479a-a39f-6026a2f4d873" ], "Date": [ - "Wed, 28 Jul 2021 18:34:44 GMT" + "Fri, 01 Apr 2022 21:53:41 GMT" ], "Expires": [ "-1" @@ -1960,13 +1960,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bcc809a-d100-4fa0-8659-62adca0151f3" + "2bde556b-822e-4a40-9414-35bf79ae94b0" ], "If-Match": [ "*" @@ -1975,10 +1975,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1995,7 +1995,7 @@ "nosniff" ], "x-ms-request-id": [ - "b9b677ed-0c64-4303-aaaf-537b417dd1d6" + "ec01bb5d-5efc-4f72-a05d-10894235092e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2004,13 +2004,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "f7a64682-3839-45a9-a6cf-fe85f99c5d19" + "ec01bb5d-5efc-4f72-a05d-10894235092e" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183445Z:f7a64682-3839-45a9-a6cf-fe85f99c5d19" + "WESTUS:20220401T215342Z:ec01bb5d-5efc-4f72-a05d-10894235092e" ], "Date": [ - "Wed, 28 Jul 2021 18:34:44 GMT" + "Fri, 01 Apr 2022 21:53:42 GMT" ], "Expires": [ "-1" @@ -2020,13 +2020,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e70d07b-3998-4d5e-a7b0-090ba66e7a85" + "1df3cb67-5563-4866-9866-31d4924a4014" ], "If-Match": [ "*" @@ -2035,10 +2035,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2055,7 +2055,7 @@ "nosniff" ], "x-ms-request-id": [ - "74fb3bf6-f6ab-4d47-8f31-11bba6c0ca36" + "adf5b60a-0700-4a58-9361-80ce55112d34" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2064,13 +2064,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "4a02e6a9-6ddf-4f8c-b348-d0c5cd28a943" + "adf5b60a-0700-4a58-9361-80ce55112d34" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183445Z:4a02e6a9-6ddf-4f8c-b348-d0c5cd28a943" + "WESTUS:20220401T215342Z:adf5b60a-0700-4a58-9361-80ce55112d34" ], "Date": [ - "Wed, 28 Jul 2021 18:34:44 GMT" + "Fri, 01 Apr 2022 21:53:42 GMT" ], "Expires": [ "-1" @@ -2083,13 +2083,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c9d7629-b27a-455b-ace1-90374e6ab213" + "23cae494-3d03-4751-a794-9f90c0133164" ], "If-Match": [ "*" @@ -2098,10 +2098,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -2118,7 +2118,7 @@ "nosniff" ], "x-ms-request-id": [ - "0a890018-b05f-40c4-bba0-ead739a17c6b" + "90f4a1ca-4156-4254-9961-638e10afbcb4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2127,13 +2127,13 @@ "14996" ], "x-ms-correlation-request-id": [ - "eec64bb5-bfd4-4dde-b786-9d7c12ad9273" + "90f4a1ca-4156-4254-9961-638e10afbcb4" ], "x-ms-routing-request-id": [ - "WESTUS:20210728T183445Z:eec64bb5-bfd4-4dde-b786-9d7c12ad9273" + "WESTUS:20220401T215342Z:90f4a1ca-4156-4254-9961-638e10afbcb4" ], "Date": [ - "Wed, 28 Jul 2021 18:34:45 GMT" + "Fri, 01 Apr 2022 21:53:42 GMT" ], "Expires": [ "-1" @@ -2148,17 +2148,17 @@ ], "Names": { "": [ - "ps2920", - "ps4604", - "ps5500", - "ps7160", - "ps7105", - "ps9653", - "ps9075", - "ps2973" + "ps2969", + "ps6996", + "ps8504", + "ps2148", + "ps6386", + "ps821", + "ps5649", + "ps3376" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 6ba282a9cbb5..850fad85ab0e 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f443762-3bf9-48f0-a64b-e193b6eb2471" + "e9d26ab1-898b-47fd-a9ad-55b166208357" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "759e07bc-3467-4154-8df1-2d9a584b60e1" + "b2fa4a7e-5850-49ba-9971-3370c95e561a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "036fd807-9093-4ea9-b930-e2a1090808ae" + "b2fa4a7e-5850-49ba-9971-3370c95e561a" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001627Z:036fd807-9093-4ea9-b930-e2a1090808ae" + "WESTUS:20220401T190252Z:b2fa4a7e-5850-49ba-9971-3370c95e561a" ], "Date": [ - "Tue, 13 Jul 2021 00:16:26 GMT" + "Fri, 01 Apr 2022 19:02:52 GMT" ], "Content-Length": [ - "2859" + "2939" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "-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/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/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/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:17:12.643Z\",\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 \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T23:29:31.403Z\",\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 \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50031142-73c3-4494-b6f5-a6bc5f28ee30" + "bd93fba7-9e9f-4c57-a0f4-e4f1444ae88a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACOo=\"" + "\"AAAAAAAACO8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -99,7 +99,7 @@ "nosniff" ], "x-ms-request-id": [ - "32992469-66a7-4628-95a7-720593e346e7" + "28eb26ca-9966-4a1d-8b52-2913167555c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -108,16 +108,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "29b8fa04-b8a0-41a8-aabc-32c67fced288" + "28eb26ca-9966-4a1d-8b52-2913167555c9" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001627Z:29b8fa04-b8a0-41a8-aabc-32c67fced288" + "WESTUS:20220401T190252Z:28eb26ca-9966-4a1d-8b52-2913167555c9" ], "Date": [ - "Tue, 13 Jul 2021 00:16:27 GMT" + "Fri, 01 Apr 2022 19:02:52 GMT" ], "Content-Length": [ - "931" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,26 +126,26 @@ "-1" ] }, - "ResponseBody": "{\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "715d004a-f495-468c-8d78-ce291f0d113c" + "251607d9-c214-4932-bf4d-53c7d20c166c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -156,7 +156,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACOs=\"" + "\"AAAAAAAACPA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -165,7 +165,7 @@ "nosniff" ], "x-ms-request-id": [ - "6d1943fd-b837-464d-8319-22575377bf1c" + "45323d76-03dc-4ab5-afda-f74defd0c985" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -174,16 +174,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "595e9ee5-8d58-4843-87d6-af3b9fdeb995" + "45323d76-03dc-4ab5-afda-f74defd0c985" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001627Z:595e9ee5-8d58-4843-87d6-af3b9fdeb995" + "WESTUS:20220401T190252Z:45323d76-03dc-4ab5-afda-f74defd0c985" ], "Date": [ - "Tue, 13 Jul 2021 00:16:27 GMT" + "Fri, 01 Apr 2022 19:02:52 GMT" ], "Content-Length": [ - "933" + "963" ], "Content-Type": [ "application/json; charset=utf-8" @@ -192,26 +192,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL21hc3Rlcj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa3e8443-4004-451d-847d-de0e4ed68f88" + "de7c570e-a616-43c7-9eb9-8b1502f1682a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -222,7 +222,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACP8=\"" + "\"AAAAAAAACQo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "x-ms-request-id": [ - "ce6b7e7c-d810-4d5e-be77-275f67c137e9" + "affc229a-0762-4428-acc8-f0367a3ff7c0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,16 +240,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "e9d30af3-e646-476e-94ec-3c3f3fb51bbf" + "affc229a-0762-4428-acc8-f0367a3ff7c0" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001627Z:e9d30af3-e646-476e-94ec-3c3f3fb51bbf" + "WESTUS:20220401T190253Z:affc229a-0762-4428-acc8-f0367a3ff7c0" ], "Date": [ - "Tue, 13 Jul 2021 00:16:27 GMT" + "Fri, 01 Apr 2022 19:02:53 GMT" ], "Content-Length": [ - "737" + "757" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,26 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:17:12.643Z\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T23:29:31.403Z\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps8964\",\r\n \"primaryKey\": \"ps7489\",\r\n \"secondaryKey\": \"ps818\",\r\n \"state\": \"active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps4883\",\r\n \"primaryKey\": \"ps101\",\r\n \"secondaryKey\": \"ps1764\",\r\n \"state\": \"active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d89d3467-dccb-464b-9631-9987259dfb43" + "0f1ab833-2722-48e9-b07a-b7d0fe9503c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,7 +294,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABARA=\"" + "\"AAAAAAAADNE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "x-ms-request-id": [ - "bb4e398a-c405-4efc-9a25-4edc2c81bbfc" + "69a0ae49-81e7-4fce-9db1-53da142eb42f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,16 +312,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "02cfb3d8-b611-4c66-ac94-98d5d9282ba8" + "69a0ae49-81e7-4fce-9db1-53da142eb42f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001628Z:02cfb3d8-b611-4c66-ac94-98d5d9282ba8" + "WESTUS:20220401T190254Z:69a0ae49-81e7-4fce-9db1-53da142eb42f" ], "Date": [ - "Tue, 13 Jul 2021 00:16:28 GMT" + "Fri, 01 Apr 2022 19:02:54 GMT" ], "Content-Length": [ - "751" + "767" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,26 +330,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps9098\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps8964\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:16:28.0713531Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps7489\",\r\n \"secondaryKey\": \"ps818\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps84\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis\",\r\n \"displayName\": \"ps4883\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:02:53.9142959Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps101\",\r\n \"secondaryKey\": \"ps1764\",\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/ps9098/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e62fb82-263f-4127-8a3a-fe2779bc3c27" + "2c120c38-6239-4c36-9f49-7f260dcddd71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -360,7 +360,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABARA=\"" + "\"AAAAAAAADNE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "x-ms-request-id": [ - "9f9a65a9-0ac0-4f61-a9f7-edd18bc47a36" + "95c63b29-7c79-4d6b-94ce-61227e59e867" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -378,13 +378,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "e846a46f-b03f-441e-9dd3-d5b219380234" + "95c63b29-7c79-4d6b-94ce-61227e59e867" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001628Z:e846a46f-b03f-441e-9dd3-d5b219380234" + "WESTUS:20220401T190254Z:95c63b29-7c79-4d6b-94ce-61227e59e867" ], "Date": [ - "Tue, 13 Jul 2021 00:16:28 GMT" + "Fri, 01 Apr 2022 19:02:54 GMT" ], "Content-Length": [ "46" @@ -396,26 +396,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"ps7489\",\r\n \"secondaryKey\": \"ps818\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ps101\",\r\n \"secondaryKey\": \"ps1764\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9815f5c8-8735-4218-b39d-3f8298125ad7" + "c4764b51-60ab-47c3-8f7a-e87afb40181f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -426,7 +426,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABARQ=\"" + "\"AAAAAAAADNU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,7 +435,7 @@ "nosniff" ], "x-ms-request-id": [ - "4fd4444b-3feb-4ff1-8250-e96316537fba" + "32921276-d679-4586-8316-d266a25b3edc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,13 +444,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "df052037-1cca-4a80-925a-06e3b353c4d9" + "32921276-d679-4586-8316-d266a25b3edc" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001630Z:df052037-1cca-4a80-925a-06e3b353c4d9" + "WESTUS:20220401T190254Z:32921276-d679-4586-8316-d266a25b3edc" ], "Date": [ - "Tue, 13 Jul 2021 00:16:29 GMT" + "Fri, 01 Apr 2022 19:02:54 GMT" ], "Content-Length": [ "47" @@ -462,17 +462,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"ps2935\",\r\n \"secondaryKey\": \"ps9155\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ps5900\",\r\n \"secondaryKey\": \"ps3689\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps2642\",\r\n \"primaryKey\": \"ps2935\",\r\n \"secondaryKey\": \"ps9155\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps4599\",\r\n \"primaryKey\": \"ps5900\",\r\n \"secondaryKey\": \"ps3689\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2e93b56c-7510-4ee0-b534-2bc52700de7e" + "ff58fe99-f9c1-49f4-876c-909454d1ebe2" ], "If-Match": [ "*" @@ -481,10 +481,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -501,7 +501,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABARQ=\"" + "\"AAAAAAAADNU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,7 +510,7 @@ "nosniff" ], "x-ms-request-id": [ - "c062acc2-ed09-4dd3-a369-f6c65a37cbe2" + "61d5d738-b414-4026-be2d-331d55d3fd9e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -519,16 +519,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "8cc2cc45-692b-4652-943d-b79bfd2bec73" + "61d5d738-b414-4026-be2d-331d55d3fd9e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001630Z:8cc2cc45-692b-4652-943d-b79bfd2bec73" + "WESTUS:20220401T190254Z:61d5d738-b414-4026-be2d-331d55d3fd9e" ], "Date": [ - "Tue, 13 Jul 2021 00:16:29 GMT" + "Fri, 01 Apr 2022 19:02:54 GMT" ], "Content-Length": [ - "1367" + "1404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,26 +537,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps9098\",\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/apis\",\r\n \"displayName\": \"ps2642\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:16:28.07Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps2935\",\r\n \"secondaryKey\": \"ps9155\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps84\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis\",\r\n \"displayName\": \"ps4599\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:02:53.913Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps5900\",\r\n \"secondaryKey\": \"ps3689\",\r\n \"stateComment\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e93b56c-7510-4ee0-b534-2bc52700de7e" + "ff58fe99-f9c1-49f4-876c-909454d1ebe2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -567,7 +567,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABARQ=\"" + "\"AAAAAAAADNU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,7 +576,7 @@ "nosniff" ], "x-ms-request-id": [ - "1e89abad-bd50-4795-8a0d-1d0f4cb17c84" + "6830d6eb-4311-4a94-8a30-e99e7f3f08ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -585,16 +585,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "d0f11173-0965-4022-997a-32a5e5049b3e" + "6830d6eb-4311-4a94-8a30-e99e7f3f08ef" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001630Z:d0f11173-0965-4022-997a-32a5e5049b3e" + "WESTUS:20220401T190254Z:6830d6eb-4311-4a94-8a30-e99e7f3f08ef" ], "Date": [ - "Tue, 13 Jul 2021 00:16:29 GMT" + "Fri, 01 Apr 2022 19:02:54 GMT" ], "Content-Length": [ - "877" + "904" ], "Content-Type": [ "application/json; charset=utf-8" @@ -603,26 +603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps9098\",\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\": \"ps2642\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:16:28.07Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps84\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis\",\r\n \"displayName\": \"ps4599\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:02:53.913Z\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?$filter=properties/scope%20eq%20'/apis'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/JGZpbHRlcj1wcm9wZXJ0aWVzL3Njb3BlJTIwZXElMjAnL2FwaXMnJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions?$filter=properties/scope%20eq%20'/apis'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zPyRmaWx0ZXI9cHJvcGVydGllcy9zY29wZSUyMGVxJTIwJy9hcGlzJyZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc7cde8f-f391-4338-82a7-199f857cac46" + "464dbf95-e0f8-4712-b333-d5e8a0cb962a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -639,7 +639,7 @@ "nosniff" ], "x-ms-request-id": [ - "48cdc693-2049-4b90-8a12-0d52532fe919" + "69e00277-d138-43fa-9f8d-f8228ac2555f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -648,16 +648,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "97046be7-0112-4af7-b03b-db45afd60a85" + "69e00277-d138-43fa-9f8d-f8228ac2555f" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001630Z:97046be7-0112-4af7-b03b-db45afd60a85" + "WESTUS:20220401T190255Z:69e00277-d138-43fa-9f8d-f8228ac2555f" ], "Date": [ - "Tue, 13 Jul 2021 00:16:29 GMT" + "Fri, 01 Apr 2022 19:02:55 GMT" ], "Content-Length": [ - "985" + "1012" ], "Content-Type": [ "application/json; charset=utf-8" @@ -666,17 +666,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/ps9098\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps9098\",\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\": \"ps2642\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:16:28.07Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps84\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis\",\r\n \"displayName\": \"ps4599\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:02:53.913Z\",\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/ps9098?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e34d40d-f01f-4ba8-a1c2-815644119187" + "de86db63-47d3-414c-99f2-56b054393fc3" ], "If-Match": [ "*" @@ -685,10 +685,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -705,7 +705,7 @@ "nosniff" ], "x-ms-request-id": [ - "a0813fcf-8e8b-429b-a1e6-d8875cbf2eb8" + "8d4897c7-1fc3-42f6-801a-658d25e3f3e4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -714,13 +714,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "7cd53f48-538f-47f6-b10d-297d6571af5d" + "8d4897c7-1fc3-42f6-801a-658d25e3f3e4" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001630Z:7cd53f48-538f-47f6-b10d-297d6571af5d" + "WESTUS:20220401T190255Z:8d4897c7-1fc3-42f6-801a-658d25e3f3e4" ], "Date": [ - "Tue, 13 Jul 2021 00:16:30 GMT" + "Fri, 01 Apr 2022 19:02:55 GMT" ], "Expires": [ "-1" @@ -735,16 +735,16 @@ ], "Names": { "": [ - "ps9098", - "ps8964", - "ps7489", - "ps818", - "ps2642", - "ps2935", - "ps9155" + "ps84", + "ps4883", + "ps101", + "ps1764", + "ps4599", + "ps5900", + "ps3689" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 25d3318d8f6b..632b518dd2e2 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "163dfbdf-efb2-4f4d-9566-32b91274096a" + "26890a97-283f-4730-b409-c298dffdf5a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "7818b46a-3cc9-496d-941b-4cf03db7948b" + "0b910d61-1406-4640-b1b5-9b161fe89cbc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "f1804831-0f2b-447b-b6ff-7b5d15056a8b" + "0b910d61-1406-4640-b1b5-9b161fe89cbc" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001322Z:f1804831-0f2b-447b-b6ff-7b5d15056a8b" + "WESTCENTRALUS:20220401T190000Z:0b910d61-1406-4640-b1b5-9b161fe89cbc" ], "Date": [ - "Tue, 13 Jul 2021 00:13:22 GMT" + "Fri, 01 Apr 2022 19:00:00 GMT" ], "Content-Length": [ - "2859" + "2939" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "-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/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/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/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:17:12.643Z\",\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 \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T23:29:31.403Z\",\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 \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e79af4ba-5885-43f3-b5be-e49113543cb2" + "5f68c240-ab26-46bd-802b-4d5c20b50bd7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACOo=\"" + "\"AAAAAAAACO8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -99,7 +99,7 @@ "nosniff" ], "x-ms-request-id": [ - "f3d4d768-0b6e-446d-bace-b6a3400c6f6f" + "edfc4783-3930-46be-8e6a-9965ec6419cb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -108,16 +108,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "b6e6f143-a4da-475b-b185-070425a67a33" + "edfc4783-3930-46be-8e6a-9965ec6419cb" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001322Z:b6e6f143-a4da-475b-b185-070425a67a33" + "WESTCENTRALUS:20220401T190001Z:edfc4783-3930-46be-8e6a-9965ec6419cb" ], "Date": [ - "Tue, 13 Jul 2021 00:13:22 GMT" + "Fri, 01 Apr 2022 19:00:01 GMT" ], "Content-Length": [ - "931" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,26 +126,26 @@ "-1" ] }, - "ResponseBody": "{\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMS9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0af2edb9-4bf0-4df2-8143-a340f6c9a4b2" + "e7c7b113-d4c0-4b99-8f44-a0d4f14798cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -156,7 +156,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACOo=\"" + "\"AAAAAAAACO8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -165,7 +165,7 @@ "nosniff" ], "x-ms-request-id": [ - "413a966e-547f-492e-bc3e-212ade719a7c" + "71fe4158-5b3f-4e46-825b-fe9fc6ee0c04" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -174,13 +174,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "dbba592c-842f-4ffd-b01a-a776a42447dc" + "71fe4158-5b3f-4e46-825b-fe9fc6ee0c04" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001322Z:dbba592c-842f-4ffd-b01a-a776a42447dc" + "WESTCENTRALUS:20220401T190001Z:71fe4158-5b3f-4e46-825b-fe9fc6ee0c04" ], "Date": [ - "Tue, 13 Jul 2021 00:13:22 GMT" + "Fri, 01 Apr 2022 19:00:01 GMT" ], "Content-Length": [ "99" @@ -192,26 +192,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"a0d34bc2bc8b44c89e95163bb2bdf46b\",\r\n \"secondaryKey\": \"fd1d7dd4b20b4528aef6a93e1b91fe95\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"bfdd6f84c4744c02b83bd20dfcb0e3a7\",\r\n \"secondaryKey\": \"39643ff2202b4130a6635b654a282ff3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a46bf76-e383-4ca9-bdad-33250afae1a2" + "3c6de01b-e99a-4f84-8e66-05b0c115ae4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -222,7 +222,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACOs=\"" + "\"AAAAAAAACPA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "x-ms-request-id": [ - "5dd12459-3b44-4631-bb89-c93b3e84c707" + "cc28467c-f8b2-459c-9c64-1763f21e9be3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,16 +240,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "094540f7-2f6a-48b6-be68-fcf48861b1dc" + "cc28467c-f8b2-459c-9c64-1763f21e9be3" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001323Z:094540f7-2f6a-48b6-be68-fcf48861b1dc" + "WESTCENTRALUS:20220401T190001Z:cc28467c-f8b2-459c-9c64-1763f21e9be3" ], "Date": [ - "Tue, 13 Jul 2021 00:13:23 GMT" + "Fri, 01 Apr 2022 19:00:01 GMT" ], "Content-Length": [ - "933" + "963" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,26 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMi9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3afed9c7-95aa-40ce-943a-2d24be838ce2" + "55a0a282-18ea-40eb-9e1d-12183b68ca6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -288,7 +288,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACOs=\"" + "\"AAAAAAAACPA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "x-ms-request-id": [ - "fcf1714c-6d36-4f43-a7c7-57f732dfd459" + "e05a2acd-687d-46f4-b7e4-83bccb7f1f9d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,13 +306,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "a8c977bf-fd59-4382-9083-77d39677c2b7" + "e05a2acd-687d-46f4-b7e4-83bccb7f1f9d" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001323Z:a8c977bf-fd59-4382-9083-77d39677c2b7" + "WESTCENTRALUS:20220401T190002Z:e05a2acd-687d-46f4-b7e4-83bccb7f1f9d" ], "Date": [ - "Tue, 13 Jul 2021 00:13:23 GMT" + "Fri, 01 Apr 2022 19:00:01 GMT" ], "Content-Length": [ "99" @@ -324,26 +324,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"64fc222570e6440e9f42a919448b9c5f\",\r\n \"secondaryKey\": \"a376e57b76384853ae2f526820806f9d\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"d70ce4a5f963431c862fc3f2ace165e1\",\r\n \"secondaryKey\": \"39441707cffb445aac14308fe4931086\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL21hc3Rlcj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfc65629-1bf1-479f-a2db-aacebbf8d8d2" + "03797c6a-0e5e-4aa3-94b4-55e883f9c33b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -354,7 +354,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACP8=\"" + "\"AAAAAAAACQo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "x-ms-request-id": [ - "17b06b3a-aef7-4954-aafa-12b22c7f9ace" + "3bb0567d-65b9-4059-bfd0-c176a9a586f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -372,16 +372,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "2893dc58-2a6c-4f36-899f-cfdc2b52ccec" + "3bb0567d-65b9-4059-bfd0-c176a9a586f5" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001323Z:2893dc58-2a6c-4f36-899f-cfdc2b52ccec" + "WESTCENTRALUS:20220401T190002Z:3bb0567d-65b9-4059-bfd0-c176a9a586f5" ], "Date": [ - "Tue, 13 Jul 2021 00:13:23 GMT" + "Fri, 01 Apr 2022 19:00:01 GMT" ], "Content-Length": [ - "737" + "757" ], "Content-Type": [ "application/json; charset=utf-8" @@ -390,26 +390,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:17:12.643Z\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T23:29:31.403Z\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL21hc3Rlci9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "011384e2-c7dc-4523-b709-5755bbd3124a" + "cfcd74d6-b7e7-4822-ad1c-16b8ee0e7ad4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -420,7 +420,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACP8=\"" + "\"AAAAAAAACQo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +429,7 @@ "nosniff" ], "x-ms-request-id": [ - "2fa5217c-e885-4380-8ee6-ec7871491955" + "ebd79620-adfb-4f53-adb1-18dc557bcd2c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,13 +438,13 @@ "1197" ], "x-ms-correlation-request-id": [ - "6e500eed-62fe-4bb3-bf35-781c97e369f7" + "ebd79620-adfb-4f53-adb1-18dc557bcd2c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001323Z:6e500eed-62fe-4bb3-bf35-781c97e369f7" + "WESTCENTRALUS:20220401T190002Z:ebd79620-adfb-4f53-adb1-18dc557bcd2c" ], "Date": [ - "Tue, 13 Jul 2021 00:13:23 GMT" + "Fri, 01 Apr 2022 19:00:02 GMT" ], "Content-Length": [ "99" @@ -456,17 +456,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"7a85d57e060b450fa087af871acc9be6\",\r\n \"secondaryKey\": \"4cc63f6a55ec4d0b9bc01ab8614fecd7\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"db4b8df5d4254894b79493b1dd44ecb6\",\r\n \"secondaryKey\": \"bd0dd760bdaf4dbfa8fccdaf4619f630\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptionsLimit\": 100\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9b167b1c-b266-4c95-bce5-988373958ca8" + "35f44d04-5b9c-41e4-a98e-b74adbc18363" ], "If-Match": [ "*" @@ -475,10 +475,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,7 +495,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA//c=\"" + "\"AAAAAAAADA4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,7 +504,7 @@ "nosniff" ], "x-ms-request-id": [ - "b4d40c74-641d-4275-9a60-04973e8b99b9" + "8b71a893-3ad1-44a3-be6c-b3a7e973e9cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -513,16 +513,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "6c661855-25cc-4ffc-8776-e3ad1c5e4b42" + "8b71a893-3ad1-44a3-be6c-b3a7e973e9cf" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001323Z:6c661855-25cc-4ffc-8776-e3ad1c5e4b42" + "WESTCENTRALUS:20220401T190003Z:8b71a893-3ad1-44a3-be6c-b3a7e973e9cf" ], "Date": [ - "Tue, 13 Jul 2021 00:13:23 GMT" + "Fri, 01 Apr 2022 19:00:03 GMT" ], "Content-Length": [ - "577" + "587" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,26 +531,26 @@ "-1" ] }, - "ResponseBody": "{\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 \"groups\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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 \"groups\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"scope\": \"/products/starter\",\r\n \"displayName\": \"ps3509\",\r\n \"primaryKey\": \"ps8556\",\r\n \"secondaryKey\": \"ps9821\",\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\": \"ps1086\",\r\n \"primaryKey\": \"ps5940\",\r\n \"secondaryKey\": \"ps9034\",\r\n \"state\": \"active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b9a3dd39-4b7e-4c9e-8cfe-17e6d0c91939" + "514b7724-3b49-435c-8818-5a34fde44d7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -567,7 +567,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAFA=\"" + "\"AAAAAAAADBU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,7 +576,7 @@ "nosniff" ], "x-ms-request-id": [ - "e2e31a2c-20ac-4202-b741-707af4026b9c" + "06704fd0-fe29-4130-9c3b-d930e341eec6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -585,16 +585,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "a00ad990-e9c7-4775-a3bb-30921fec39e9" + "06704fd0-fe29-4130-9c3b-d930e341eec6" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001325Z:a00ad990-e9c7-4775-a3bb-30921fec39e9" + "WESTCENTRALUS:20220401T190005Z:06704fd0-fe29-4130-9c3b-d930e341eec6" ], "Date": [ - "Tue, 13 Jul 2021 00:13:25 GMT" + "Fri, 01 Apr 2022 19:00:05 GMT" ], "Content-Length": [ - "1384" + "1424" ], "Content-Type": [ "application/json; charset=utf-8" @@ -603,17 +603,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps4781\",\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\": \"ps3509\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6009065Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps8556\",\r\n \"secondaryKey\": \"ps9821\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps1086\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.5377144Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps5940\",\r\n \"secondaryKey\": \"ps9034\",\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/ps4781?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps1314\",\r\n \"primaryKey\": \"ps2454\",\r\n \"secondaryKey\": \"ps4942\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps4757\",\r\n \"primaryKey\": \"ps6666\",\r\n \"secondaryKey\": \"ps1510\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1b252f27-292f-4c75-9be8-802fda6856b2" + "deecc6e4-fe9b-44ac-9fc8-a62bbf1aed26" ], "If-Match": [ "*" @@ -622,10 +622,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -642,7 +642,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAFQ=\"" + "\"AAAAAAAADBk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -651,25 +651,25 @@ "nosniff" ], "x-ms-request-id": [ - "6857ddbb-bdb8-4585-a981-c3fead1852a8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a7d94c5a-de9f-4118-ae66-6a137b884ca7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "0ccc4e7d-a241-4a24-b92c-5bfcc8f96f0f" + "a7d94c5a-de9f-4118-ae66-6a137b884ca7" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001326Z:0ccc4e7d-a241-4a24-b92c-5bfcc8f96f0f" + "WESTCENTRALUS:20220401T190007Z:a7d94c5a-de9f-4118-ae66-6a137b884ca7" ], "Date": [ - "Tue, 13 Jul 2021 00:13:26 GMT" + "Fri, 01 Apr 2022 19:00:07 GMT" ], "Content-Length": [ - "1441" + "1483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,26 +678,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps4781\",\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\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps2454\",\r\n \"secondaryKey\": \"ps4942\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps6666\",\r\n \"secondaryKey\": \"ps1510\",\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/ps4781?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b252f27-292f-4c75-9be8-802fda6856b2" + "deecc6e4-fe9b-44ac-9fc8-a62bbf1aed26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -708,7 +708,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAFQ=\"" + "\"AAAAAAAADBk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,7 +717,7 @@ "nosniff" ], "x-ms-request-id": [ - "18cb3366-a6a0-4ded-a37c-c97d3727eac5" + "79de116c-ffb6-483f-8510-124d09f8bc80" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -726,16 +726,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "048fd4a7-2cfd-4762-b949-28b1ded4d7e0" + "79de116c-ffb6-483f-8510-124d09f8bc80" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001326Z:048fd4a7-2cfd-4762-b949-28b1ded4d7e0" + "WESTCENTRALUS:20220401T190008Z:79de116c-ffb6-483f-8510-124d09f8bc80" ], "Date": [ - "Tue, 13 Jul 2021 00:13:26 GMT" + "Fri, 01 Apr 2022 19:00:07 GMT" ], "Content-Length": [ - "951" + "983" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,26 +744,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps4781\",\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\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\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/ps4781/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Ny9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2157dbcb-6ccd-49e0-985e-f2879ae21153" + "bfbde45a-16ad-4f8d-94a1-3baaa501f745" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -774,7 +774,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAFQ=\"" + "\"AAAAAAAADBk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -783,7 +783,7 @@ "nosniff" ], "x-ms-request-id": [ - "dcca35e3-13a1-49e8-bb80-d259ed05ffad" + "e822efc9-3cc3-42bf-aa05-524f89051273" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -792,13 +792,13 @@ "1196" ], "x-ms-correlation-request-id": [ - "c2fcdb0f-9936-47b7-b320-f42e7a4608a6" + "e822efc9-3cc3-42bf-aa05-524f89051273" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001326Z:c2fcdb0f-9936-47b7-b320-f42e7a4608a6" + "WESTCENTRALUS:20220401T190008Z:e822efc9-3cc3-42bf-aa05-524f89051273" ], "Date": [ - "Tue, 13 Jul 2021 00:13:26 GMT" + "Fri, 01 Apr 2022 19:00:08 GMT" ], "Content-Length": [ "47" @@ -810,26 +810,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"ps2454\",\r\n \"secondaryKey\": \"ps4942\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ps6666\",\r\n \"secondaryKey\": \"ps1510\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/subscriptions?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ec21bf7-c1dd-489c-9acf-261b38b77315" + "bc29a60c-08e7-432d-949e-00a3fda2bc5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -846,7 +846,7 @@ "nosniff" ], "x-ms-request-id": [ - "d95f345d-bc72-42a3-a20e-4be20dfa9b3f" + "dcb46fdd-b0c5-4b0e-80af-09b74c6466a2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -855,16 +855,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "97ff9133-d408-4ee3-885d-03a0d216075b" + "dcb46fdd-b0c5-4b0e-80af-09b74c6466a2" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001327Z:97ff9133-d408-4ee3-885d-03a0d216075b" + "WESTCENTRALUS:20220401T190009Z:dcb46fdd-b0c5-4b0e-80af-09b74c6466a2" ], "Date": [ - "Tue, 13 Jul 2021 00:13:27 GMT" + "Fri, 01 Apr 2022 19:00:08 GMT" ], "Content-Length": [ - "2121" + "2183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -873,26 +873,26 @@ "-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/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps4781\",\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\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\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/users/1/subscriptions?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/subscriptions?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy8xL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fc331b0-1c8c-40a3-8523-618d7c993f1c" + "5a88c286-bfa7-4ed2-9b6b-e1152e5291db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -909,7 +909,7 @@ "nosniff" ], "x-ms-request-id": [ - "ea9ff1d5-d411-459b-9783-d0fbbc7146b5" + "51ad5ede-8007-47a4-a0cb-5750909d4c5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -918,16 +918,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "1677d554-17dc-47e9-8934-c854dce7b4e7" + "51ad5ede-8007-47a4-a0cb-5750909d4c5c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001328Z:1677d554-17dc-47e9-8934-c854dce7b4e7" + "WESTCENTRALUS:20220401T190010Z:51ad5ede-8007-47a4-a0cb-5750909d4c5c" ], "Date": [ - "Tue, 13 Jul 2021 00:13:28 GMT" + "Fri, 01 Apr 2022 19:00:09 GMT" ], "Content-Length": [ - "3119" + "3211" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,26 +936,26 @@ "-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/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps4781\",\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\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\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 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?$filter=properties/scope%20eq%20'/products/starter'%20and%20properties/ownerId%20eq%20'1'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/JGZpbHRlcj1wcm9wZXJ0aWVzL3Njb3BlJTIwZXElMjAnL3Byb2R1Y3RzL3N0YXJ0ZXInJTIwYW5kJTIwcHJvcGVydGllcy9vd25lcklkJTIwZXElMjAnMScmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions?$filter=properties/scope%20eq%20'/products/starter'%20and%20properties/ownerId%20eq%20'1'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zPyRmaWx0ZXI9cHJvcGVydGllcy9zY29wZSUyMGVxJTIwJy9wcm9kdWN0cy9zdGFydGVyJyUyMGFuZCUyMHByb3BlcnRpZXMvb3duZXJJZCUyMGVxJTIwJzEnJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05118c6a-095a-4dd3-9f1c-623cce29ca04" + "0f93f8e0-0a76-4f9c-92fd-df989db6874e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -972,7 +972,7 @@ "nosniff" ], "x-ms-request-id": [ - "dc180a39-38d8-4b46-9fe9-d6ca3b6c0c98" + "3fd6adfa-e589-4156-ab52-2900894072df" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -981,16 +981,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "c8b08084-0e25-470e-86c2-61522b5a1dde" + "3fd6adfa-e589-4156-ab52-2900894072df" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001328Z:c8b08084-0e25-470e-86c2-61522b5a1dde" + "WESTCENTRALUS:20220401T190010Z:3fd6adfa-e589-4156-ab52-2900894072df" ], "Date": [ - "Tue, 13 Jul 2021 00:13:28 GMT" + "Fri, 01 Apr 2022 19:00:10 GMT" ], "Content-Length": [ - "2069" + "2131" ], "Content-Type": [ "application/json; charset=utf-8" @@ -999,17 +999,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/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps4781\",\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\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\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/ps4781?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afd42db6-7dc6-4eaa-8777-d735a6a5bc13" + "4b2fa883-b129-4838-8c39-2ba9af43aa9e" ], "If-Match": [ "*" @@ -1018,10 +1018,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1038,7 +1038,7 @@ "nosniff" ], "x-ms-request-id": [ - "ce13bc32-72d5-4731-bfa8-26f6094505ba" + "7636ca6e-e9e0-4b0e-83cb-9c752f74dc47" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1047,13 +1047,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "d5c8c2a0-9b8e-497c-9021-caf99a38e859" + "7636ca6e-e9e0-4b0e-83cb-9c752f74dc47" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001329Z:d5c8c2a0-9b8e-497c-9021-caf99a38e859" + "WESTCENTRALUS:20220401T190011Z:7636ca6e-e9e0-4b0e-83cb-9c752f74dc47" ], "Date": [ - "Tue, 13 Jul 2021 00:13:29 GMT" + "Fri, 01 Apr 2022 19:00:10 GMT" ], "Expires": [ "-1" @@ -1068,16 +1068,16 @@ ], "Names": { "": [ - "ps4781", - "ps3509", - "ps8556", - "ps9821", - "ps1314", - "ps2454", - "ps4942" + "ps7787", + "ps1086", + "ps5940", + "ps9034", + "ps4757", + "ps6666", + "ps1510" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 21bbd7c2456b..e09d49229428 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38a96fc9-38d3-42aa-a129-42ad9f00bfc4" + "a405a31f-1894-4726-929b-4f882ffded5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -27,7 +27,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAEwAAAAAAAAAAA==\"" + "\"AAAAAAAACHoAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -36,7 +36,7 @@ "nosniff" ], "x-ms-request-id": [ - "8dec4d77-1a49-44b8-99cb-97f520996535" + "b569738d-fc96-4fd7-ae40-4684bc763232" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -45,16 +45,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "adee698a-183a-4d0d-86a6-9926de562d53" + "b569738d-fc96-4fd7-ae40-4684bc763232" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T204803Z:adee698a-183a-4d0d-86a6-9926de562d53" + "WESTCENTRALUS:20220401T185954Z:b569738d-fc96-4fd7-ae40-4684bc763232" ], "Date": [ - "Thu, 15 Jul 2021 20:48:03 GMT" + "Fri, 01 Apr 2022 18:59:54 GMT" ], "Content-Length": [ - "382" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39d81ba8-6f56-4e27-a22f-8505ea9d3158" + "4b3c40e3-9233-4f50-8a32-7e492616056c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABApEAAAAAAAAAAA==\"" + "\"AAAAAAAADAwAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,7 +102,7 @@ "nosniff" ], "x-ms-request-id": [ - "e39281f5-fb93-4e3a-9ef9-e250a0e72e89" + "0e88a884-1cac-4875-8c46-55b4cfe5ec31" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,16 +111,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "3a409d95-dbd4-42ab-ab5a-90e69e9f15b4" + "0e88a884-1cac-4875-8c46-55b4cfe5ec31" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T204804Z:3a409d95-dbd4-42ab-ab5a-90e69e9f15b4" + "WESTCENTRALUS:20220401T185955Z:0e88a884-1cac-4875-8c46-55b4cfe5ec31" ], "Date": [ - "Thu, 15 Jul 2021 20:48:03 GMT" + "Fri, 01 Apr 2022 18:59:55 GMT" ], "Content-Length": [ - "381" + "391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03cdff3d-e505-443a-882d-f0a5e301c877" + "8d7a5785-1a48-4bcc-9ccc-74d0f0c861f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABApIAAAAAAAAAAA==\"" + "\"AAAAAAAADA0AAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "x-ms-request-id": [ - "a897c541-21e7-4209-83a4-80bafb55fe07" + "feec0dcb-aad3-4228-a769-c388dc5fdc7d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "657fea32-c96a-400b-9cbe-1ad59813479b" + "feec0dcb-aad3-4228-a769-c388dc5fdc7d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T204804Z:657fea32-c96a-400b-9cbe-1ad59813479b" + "WESTCENTRALUS:20220401T185956Z:feec0dcb-aad3-4228-a769-c388dc5fdc7d" ], "Date": [ - "Thu, 15 Jul 2021 20:48:04 GMT" + "Fri, 01 Apr 2022 18:59:56 GMT" ], "Content-Length": [ - "382" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,17 +195,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "39d81ba8-6f56-4e27-a22f-8505ea9d3158" + "4b3c40e3-9233-4f50-8a32-7e492616056c" ], "If-Match": [ "*" @@ -214,10 +214,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -234,7 +234,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABApEAAAAAAAAAAA==\"" + "\"AAAAAAAADAwAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,7 +243,7 @@ "nosniff" ], "x-ms-request-id": [ - "cd725128-4592-4e8d-9436-25dcf7ce891f" + "c1af7781-7360-4bac-ab10-3a655ae2750c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -252,16 +252,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "f9c2e945-da1c-41c5-8f9f-e7957886df23" + "c1af7781-7360-4bac-ab10-3a655ae2750c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T204804Z:f9c2e945-da1c-41c5-8f9f-e7957886df23" + "WESTCENTRALUS:20220401T185955Z:c1af7781-7360-4bac-ab10-3a655ae2750c" ], "Date": [ - "Thu, 15 Jul 2021 20:48:03 GMT" + "Fri, 01 Apr 2022 18:59:55 GMT" ], "Content-Length": [ - "553" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,17 +270,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": \"ZNPswfVur5MiVUfGGr4CKd+dwLYETxNdJ4fNgwXVAsqRe5eHqK2FGeMCCc/sDXfThhVzMbAI3n7fLE79sRhwKw==\",\r\n \"secondaryKey\": \"fgb9HFXYivWgcDnOI5RSSZGd3U5O+xv9jIUoVZ6xHgtS4WBywJtuco5z6BHDlBM4Q7NDuDdR4rbd0y4hAk4bwQ==\",\r\n \"enabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": \"sMKlD5Vspecr4DbjJRlphBky/7OfIVibaX+yp1/5qL2daV3OxpCUR64fUfLSRJH8ZVezpdSD5U93395Z7t7cwg==\",\r\n \"secondaryKey\": \"4/4VShDWjvlomWYPiHZbquelv5sHPSAzUD1SgRy0UxQpssrB3EjzSJmOumMr6JUz+peU3HVDpQMKKs+je76cBQ==\",\r\n \"enabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "03cdff3d-e505-443a-882d-f0a5e301c877" + "8d7a5785-1a48-4bcc-9ccc-74d0f0c861f7" ], "If-Match": [ "*" @@ -289,10 +289,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -309,7 +309,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABApIAAAAAAAAAAA==\"" + "\"AAAAAAAADA0AAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,7 +318,7 @@ "nosniff" ], "x-ms-request-id": [ - "ab22be59-e09a-4b7a-a581-9aaaa77421fa" + "4e406dd6-39fe-40ae-8017-511a56187ea6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -327,16 +327,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "ace96c14-982d-4eb5-96e4-fa6e1efd6775" + "4e406dd6-39fe-40ae-8017-511a56187ea6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210715T204804Z:ace96c14-982d-4eb5-96e4-fa6e1efd6775" + "WESTCENTRALUS:20220401T185956Z:4e406dd6-39fe-40ae-8017-511a56187ea6" ], "Date": [ - "Thu, 15 Jul 2021 20:48:03 GMT" + "Fri, 01 Apr 2022 18:59:56 GMT" ], "Content-Length": [ - "554" + "564" ], "Content-Type": [ "application/json; charset=utf-8" @@ -345,12 +345,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": \"ZNPswfVur5MiVUfGGr4CKd+dwLYETxNdJ4fNgwXVAsqRe5eHqK2FGeMCCc/sDXfThhVzMbAI3n7fLE79sRhwKw==\",\r\n \"secondaryKey\": \"fgb9HFXYivWgcDnOI5RSSZGd3U5O+xv9jIUoVZ6xHgtS4WBywJtuco5z6BHDlBM4Q7NDuDdR4rbd0y4hAk4bwQ==\",\r\n \"enabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": \"sMKlD5Vspecr4DbjJRlphBky/7OfIVibaX+yp1/5qL2daV3OxpCUR64fUfLSRJH8ZVezpdSD5U93395Z7t7cwg==\",\r\n \"secondaryKey\": \"4/4VShDWjvlomWYPiHZbquelv5sHPSAzUD1SgRy0UxQpssrB3EjzSJmOumMr6JUz+peU3HVDpQMKKs+je76cBQ==\",\r\n \"enabled\": false\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 887c8208f309..d2bd6a1a257a 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 @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/gitaccess/listSecrets?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9naXRhY2Nlc3MvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/gitaccess/listSecrets?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvZ2l0YWNjZXNzL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c4f22bc-05e1-481e-b36a-7e3c6f4c8bb9" + "573a10a9-e072-4365-9d83-5e5094dab464" ], "Accept-Language": [ "en-US" @@ -15,8 +15,8 @@ "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -27,7 +27,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACHkAAAAAAAAAAA==\"" + "\"AAAAAAAACHwAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -36,7 +36,7 @@ "nosniff" ], "x-ms-request-id": [ - "775cd57f-235b-4387-b4c0-78eefd82bc3b" + "d02d0eba-d776-495a-b1ba-f3639ca9ff38" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -45,13 +45,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "8d77ebd1-656b-4fd8-b922-7c7724b4a283" + "d02d0eba-d776-495a-b1ba-f3639ca9ff38" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222435Z:8d77ebd1-656b-4fd8-b922-7c7724b4a283" + "WESTUS:20220406T002609Z:d02d0eba-d776-495a-b1ba-f3639ca9ff38" ], "Date": [ - "Fri, 17 Sep 2021 22:24:35 GMT" + "Wed, 06 Apr 2022 00:26:08 GMT" ], "Content-Length": [ "271" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/tenant/gitAccess\",\r\n \"principalId\": \"git\",\r\n \"primaryKey\": \"u35LIftSq1MOvsXWMXixVAi8aONxtSJJxQ3mVHbEpagUqYF9ZBxolsZkra4zX19zC0GayLx/PZnNEE6sfZp0lw==\",\r\n \"secondaryKey\": \"Bg8alqazxozwt0J5ba7teCNKjfWQ2qMO0dTxeTkiO2PlxfTR9YPDq5wpKu1Zfh7nI6kO+FcF1T26G6lIVHZrAw==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"/tenant/gitAccess\",\r\n \"principalId\": \"git\",\r\n \"primaryKey\": \"rldMvFlCuN/i5460jwyDD5+GVw+A71hdNJiADzDvGPqjucNc7qSBBumyedPMjQHaaRFWdy/G5+Xm/Aa6WPhqeA==\",\r\n \"secondaryKey\": \"Gd3WaaKbNpRvPXfG9y0YkJOy4YjndxEcxVS+HnkenlKdPeVMmgiNeZNCc72XnWP1qxldgzwRjAHrIxnyhx0o2Q==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fa324d6-a354-469b-af16-c3fd85797afc" + "919ad17a-96ff-4cce-b8e0-a303c5fd6d6d" ], "Accept-Language": [ "en-US" @@ -81,8 +81,8 @@ "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -99,7 +99,7 @@ "nosniff" ], "x-ms-request-id": [ - "44cfc284-c356-4287-9315-f1ac96ecef80" + "24c486dd-51db-4df5-9bc1-9997a8984fbc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -108,16 +108,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "1ed46aec-b2cf-478f-bc2d-346a1d856192" + "24c486dd-51db-4df5-9bc1-9997a8984fbc" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222436Z:1ed46aec-b2cf-478f-bc2d-346a1d856192" + "WESTUS:20220406T002609Z:24c486dd-51db-4df5-9bc1-9997a8984fbc" ], "Date": [ - "Fri, 17 Sep 2021 22:24:36 GMT" + "Wed, 06 Apr 2022 00:26:08 GMT" ], "Content-Length": [ - "810" + "829" ], "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/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"bb062fbbd292ba1fd99e7af77d4c78bed459c65f\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2021-07-28T21:26:25.0687094Z\",\r\n \"configurationChangeDate\": \"2021-07-28T21:26:25.0687094Z\",\r\n \"lastOperationId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101cb6946346111804bdc10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"3bf9713ea534863db41ad8921cd2b7192aeb829d\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2022-04-06T00:25:02.3462962Z\",\r\n \"configurationChangeDate\": \"2022-04-06T00:13:59.7725429Z\",\r\n \"lastOperationId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cddfa01234e10f00b7b82\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adca889f-b81e-43ba-9c36-2bf375783107" + "30851e79-eb9c-4042-ba2a-47e0a71bb05b" ], "Accept-Language": [ "en-US" @@ -144,8 +144,8 @@ "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "nosniff" ], "x-ms-request-id": [ - "08fad1d5-4d62-4c55-aa5b-0d19cf73e142" + "81dd92ec-367c-489f-8e1d-6a53f514e989" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "4bebfd26-e5f0-47b1-9ef5-65a51fd3333a" + "81dd92ec-367c-489f-8e1d-6a53f514e989" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222541Z:4bebfd26-e5f0-47b1-9ef5-65a51fd3333a" + "WESTUS:20220406T002710Z:81dd92ec-367c-489f-8e1d-6a53f514e989" ], "Date": [ - "Fri, 17 Sep 2021 22:25:40 GMT" + "Wed, 06 Apr 2022 00:27:09 GMT" ], "Content-Length": [ - "809" + "829" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,17 +189,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"f30346b6e6e515a9b933b3a9547abde67c2defd6\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2021-09-17T22:25:28.4185288Z\",\r\n \"configurationChangeDate\": \"2021-07-28T21:26:25.0531137Z\",\r\n \"lastOperationId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"238138b01f8730a9e0cc29401e7504cff8b317aa\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2022-04-06T00:26:44.4567126Z\",\r\n \"configurationChangeDate\": \"2022-04-06T00:13:59.7725429Z\",\r\n \"lastOperationId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "446a16e8-51a2-4f7a-99b1-8569708202fd" + "d47a0f23-29a7-4344-b015-f3a28a8c047b" ], "Accept-Language": [ "en-US" @@ -207,8 +207,8 @@ "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "nosniff" ], "x-ms-request-id": [ - "6f6712b0-066a-4ebf-8aee-08c65e7a1087" + "d6f8f279-55a8-4bb5-b82e-c6d623cb2a3d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -234,16 +234,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "9516f197-d0d6-4bc6-8286-4e906d9ab9bb" + "d6f8f279-55a8-4bb5-b82e-c6d623cb2a3d" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222712Z:9516f197-d0d6-4bc6-8286-4e906d9ab9bb" + "WESTUS:20220406T002841Z:d6f8f279-55a8-4bb5-b82e-c6d623cb2a3d" ], "Date": [ - "Fri, 17 Sep 2021 22:27:12 GMT" + "Wed, 06 Apr 2022 00:28:40 GMT" ], "Content-Length": [ - "810" + "830" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,17 +252,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"f30346b6e6e515a9b933b3a9547abde67c2defd6\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2021-09-17T22:26:59.6693037Z\",\r\n \"configurationChangeDate\": \"2021-09-17T22:26:59.6693037Z\",\r\n \"lastOperationId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"238138b01f8730a9e0cc29401e7504cff8b317aa\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2022-04-06T00:28:36.1295102Z\",\r\n \"configurationChangeDate\": \"2022-04-06T00:28:36.1295102Z\",\r\n \"lastOperationId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/save?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3NhdmU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/save?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9zYXZlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "69319c90-9651-4877-a38c-df30ecc997b8" + "3c7d1932-c888-452e-a564-a56347870f3b" ], "Accept-Language": [ "en-US" @@ -270,8 +270,8 @@ "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -288,7 +288,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "x-ms-request-id": [ - "2ed72760-6539-473c-82e3-8569bd081e3b" + "0ae6b1cc-d536-489a-a11e-5e74e11e3b9f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,13 +306,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "2796e9b0-05d6-4499-ba99-79d00b99e3ff" + "0ae6b1cc-d536-489a-a11e-5e74e11e3b9f" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222440Z:2796e9b0-05d6-4499-ba99-79d00b99e3ff" + "WESTUS:20220406T002609Z:0ae6b1cc-d536-489a-a11e-5e74e11e3b9f" ], "Date": [ - "Fri, 17 Sep 2021 22:24:40 GMT" + "Wed, 06 Apr 2022 00:26:08 GMT" ], "Content-Length": [ "33" @@ -324,23 +324,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614515a54634610d2c80371d\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde2101234e10f00b7b84\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1YTU0NjM0NjEwZDJjODAzNzFkP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTIxMDEyMzRlMTBmMDBiN2I4ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69319c90-9651-4877-a38c-df30ecc997b8" + "3c7d1932-c888-452e-a564-a56347870f3b" ], "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -351,7 +351,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -360,7 +360,7 @@ "nosniff" ], "x-ms-request-id": [ - "a8a8bee4-51a8-4270-80f6-95137218a71f" + "2073dd46-724a-43cd-b21b-92f3fe3414a5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,13 +369,13 @@ "11998" ], "x-ms-correlation-request-id": [ - "f5dc8517-f6a1-4128-ad6d-5337f7633749" + "2073dd46-724a-43cd-b21b-92f3fe3414a5" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222510Z:f5dc8517-f6a1-4128-ad6d-5337f7633749" + "WESTUS:20220406T002639Z:2073dd46-724a-43cd-b21b-92f3fe3414a5" ], "Date": [ - "Fri, 17 Sep 2021 22:25:10 GMT" + "Wed, 06 Apr 2022 00:26:39 GMT" ], "Content-Length": [ "335" @@ -387,23 +387,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614515a54634610d2c80371d\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515a54634610d2c80371d\",\r\n \"properties\": {\r\n \"status\": \"InProgress\",\r\n \"started\": \"2021-09-17T22:24:37.023Z\",\r\n \"updated\": \"2021-09-17T22:24:37.023Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde2101234e10f00b7b84\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde2101234e10f00b7b84\",\r\n \"properties\": {\r\n \"status\": \"InProgress\",\r\n \"started\": \"2022-04-06T00:26:09.483Z\",\r\n \"updated\": \"2022-04-06T00:26:09.483Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1YTU0NjM0NjEwZDJjODAzNzFkP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTIxMDEyMzRlMTBmMDBiN2I4ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69319c90-9651-4877-a38c-df30ecc997b8" + "3c7d1932-c888-452e-a564-a56347870f3b" ], "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -420,25 +420,25 @@ "nosniff" ], "x-ms-request-id": [ - "76a34f15-cfef-4791-a03b-11623a9a3f67" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "c9b86120-0201-48cc-ae7e-47d6ded2943c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], "x-ms-correlation-request-id": [ - "a47a0d5b-5308-45ac-9ec1-ff6cff0e6760" + "c9b86120-0201-48cc-ae7e-47d6ded2943c" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222540Z:a47a0d5b-5308-45ac-9ec1-ff6cff0e6760" + "WESTUS:20220406T002709Z:c9b86120-0201-48cc-ae7e-47d6ded2943c" ], "Date": [ - "Fri, 17 Sep 2021 22:25:39 GMT" + "Wed, 06 Apr 2022 00:27:09 GMT" ], "Content-Length": [ - "456" + "455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -447,23 +447,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614515a54634610d2c80371d\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515a54634610d2c80371d\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:24:37.023Z\",\r\n \"updated\": \"2021-09-17T22:25:28.373Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit f30346b6e6e515a9b933b3a9547abde67c2defd6.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde2101234e10f00b7b84\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde2101234e10f00b7b84\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:26:09.483Z\",\r\n \"updated\": \"2022-04-06T00:26:44.45Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 238138b01f8730a9e0cc29401e7504cff8b317aa.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1YTU0NjM0NjEwZDJjODAzNzFkP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTIxMDEyMzRlMTBmMDBiN2I4ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69319c90-9651-4877-a38c-df30ecc997b8" + "3c7d1932-c888-452e-a564-a56347870f3b" ], "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -480,7 +480,7 @@ "nosniff" ], "x-ms-request-id": [ - "92143973-83e6-4c29-b190-b734f63e6726" + "79c229c3-9f91-4360-a3e1-a3544ecb256c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -489,16 +489,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "9d5214c4-9ba8-452c-a3b0-7e64feea4ca3" + "79c229c3-9f91-4360-a3e1-a3544ecb256c" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222541Z:9d5214c4-9ba8-452c-a3b0-7e64feea4ca3" + "WESTUS:20220406T002710Z:79c229c3-9f91-4360-a3e1-a3544ecb256c" ], "Date": [ - "Fri, 17 Sep 2021 22:25:40 GMT" + "Wed, 06 Apr 2022 00:27:09 GMT" ], "Content-Length": [ - "456" + "455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614515a54634610d2c80371d\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515a54634610d2c80371d\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:24:37.023Z\",\r\n \"updated\": \"2021-09-17T22:25:28.373Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit f30346b6e6e515a9b933b3a9547abde67c2defd6.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde2101234e10f00b7b84\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde2101234e10f00b7b84\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:26:09.483Z\",\r\n \"updated\": \"2022-04-06T00:26:44.45Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 238138b01f8730a9e0cc29401e7504cff8b317aa.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/validate?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/validate?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f1a4076-3ee1-4a86-81d2-13367d15de10" + "7d2d77ec-cc93-46d3-b8a5-7f2ccf9f21b8" ], "Accept-Language": [ "en-US" @@ -525,8 +525,8 @@ "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,7 +543,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515e54634610d2c80371f?api-version=2020-12-01" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde5e01234e10f00b7b86?api-version=2021-08-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,7 +552,7 @@ "nosniff" ], "x-ms-request-id": [ - "c8fd690d-6328-4d7c-a8f6-7c52bbdf17ed" + "19d261ca-cc8a-41eb-9ed5-68cd3f9e3a4e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -561,13 +561,13 @@ "1197" ], "x-ms-correlation-request-id": [ - "e44a9e4f-e4bd-48b6-b598-8cdd0ed7d30f" + "19d261ca-cc8a-41eb-9ed5-68cd3f9e3a4e" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222541Z:e44a9e4f-e4bd-48b6-b598-8cdd0ed7d30f" + "WESTUS:20220406T002710Z:19d261ca-cc8a-41eb-9ed5-68cd3f9e3a4e" ], "Date": [ - "Fri, 17 Sep 2021 22:25:40 GMT" + "Wed, 06 Apr 2022 00:27:10 GMT" ], "Content-Length": [ "33" @@ -579,23 +579,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614515e54634610d2c80371f\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde5e01234e10f00b7b86\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515e54634610d2c80371f?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1ZTU0NjM0NjEwZDJjODAzNzFmP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde5e01234e10f00b7b86?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTVlMDEyMzRlMTBmMDBiN2I4Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f1a4076-3ee1-4a86-81d2-13367d15de10" + "7d2d77ec-cc93-46d3-b8a5-7f2ccf9f21b8" ], "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -612,7 +612,7 @@ "nosniff" ], "x-ms-request-id": [ - "906f3040-5c49-499f-9bda-a0de30349c25" + "41a4d711-96ea-4984-b817-3479687b19ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -621,16 +621,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "0654ca53-6875-40a1-a319-909888819743" + "41a4d711-96ea-4984-b817-3479687b19ae" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222611Z:0654ca53-6875-40a1-a319-909888819743" + "WESTUS:20220406T002740Z:41a4d711-96ea-4984-b817-3479687b19ae" ], "Date": [ - "Fri, 17 Sep 2021 22:26:10 GMT" + "Wed, 06 Apr 2022 00:27:39 GMT" ], "Content-Length": [ - "378" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -639,23 +639,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614515e54634610d2c80371f\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515e54634610d2c80371f\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:25:41.45Z\",\r\n \"updated\": \"2021-09-17T22:25:59.733Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde5e01234e10f00b7b86\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde5e01234e10f00b7b86\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:27:10.273Z\",\r\n \"updated\": \"2022-04-06T00:27:23.697Z\",\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 }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515e54634610d2c80371f?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1ZTU0NjM0NjEwZDJjODAzNzFmP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde5e01234e10f00b7b86?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTVlMDEyMzRlMTBmMDBiN2I4Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f1a4076-3ee1-4a86-81d2-13367d15de10" + "7d2d77ec-cc93-46d3-b8a5-7f2ccf9f21b8" ], "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -672,7 +672,7 @@ "nosniff" ], "x-ms-request-id": [ - "54297c8b-b314-4780-9d28-c5bbad2f0d8b" + "2661da71-5b34-4ed3-9340-483330e3268d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -681,16 +681,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "73f3c7bb-a261-4774-810e-3c97f1891b2d" + "2661da71-5b34-4ed3-9340-483330e3268d" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222611Z:73f3c7bb-a261-4774-810e-3c97f1891b2d" + "WESTUS:20220406T002740Z:2661da71-5b34-4ed3-9340-483330e3268d" ], "Date": [ - "Fri, 17 Sep 2021 22:26:10 GMT" + "Wed, 06 Apr 2022 00:27:39 GMT" ], "Content-Length": [ - "378" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,17 +699,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614515e54634610d2c80371f\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515e54634610d2c80371f\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:25:41.45Z\",\r\n \"updated\": \"2021-09-17T22:25:59.733Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde5e01234e10f00b7b86\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde5e01234e10f00b7b86\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:27:10.273Z\",\r\n \"updated\": \"2022-04-06T00:27:23.697Z\",\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 }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/deploy?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL2RlcGxveT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/deploy?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9kZXBsb3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "08de2e7d-2d35-4be6-a795-600799503663" + "4d0b2104-9803-4790-8c19-4cab8b55eb4a" ], "Accept-Language": [ "en-US" @@ -717,8 +717,8 @@ "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -735,7 +735,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,7 +744,7 @@ "nosniff" ], "x-ms-request-id": [ - "0c10a36c-3ec6-4160-ba4a-7983beede41e" + "7d2bc757-a238-4b5d-9a5f-dd984c8b35a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -753,13 +753,13 @@ "1196" ], "x-ms-correlation-request-id": [ - "ddfd81ea-54d5-402e-8dd2-ce5781e60ee6" + "7d2bc757-a238-4b5d-9a5f-dd984c8b35a9" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222612Z:ddfd81ea-54d5-402e-8dd2-ce5781e60ee6" + "WESTUS:20220406T002740Z:7d2bc757-a238-4b5d-9a5f-dd984c8b35a9" ], "Date": [ - "Fri, 17 Sep 2021 22:26:11 GMT" + "Wed, 06 Apr 2022 00:27:39 GMT" ], "Content-Length": [ "33" @@ -771,23 +771,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614516034634610d2c803721\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde7c01234e10f00b7b88\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE2MDM0NjM0NjEwZDJjODAzNzIxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTdjMDEyMzRlMTBmMDBiN2I4OD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08de2e7d-2d35-4be6-a795-600799503663" + "4d0b2104-9803-4790-8c19-4cab8b55eb4a" ], "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -798,7 +798,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,7 +807,7 @@ "nosniff" ], "x-ms-request-id": [ - "b03d25d7-9040-46fe-93e0-95787005ec81" + "7330e166-7932-40ef-ae51-8d2efd788079" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -816,16 +816,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "9b8e24ee-55fc-4cfe-b353-3359383d5582" + "7330e166-7932-40ef-ae51-8d2efd788079" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222642Z:9b8e24ee-55fc-4cfe-b353-3359383d5582" + "WESTUS:20220406T002810Z:7330e166-7932-40ef-ae51-8d2efd788079" ], "Date": [ - "Fri, 17 Sep 2021 22:26:42 GMT" + "Wed, 06 Apr 2022 00:28:10 GMT" ], "Content-Length": [ - "331" + "335" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,23 +834,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614516034634610d2c803721\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614516034634610d2c803721\",\r\n \"properties\": {\r\n \"status\": \"InProgress\",\r\n \"started\": \"2021-09-17T22:26:11.9Z\",\r\n \"updated\": \"2021-09-17T22:26:11.9Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde7c01234e10f00b7b88\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde7c01234e10f00b7b88\",\r\n \"properties\": {\r\n \"status\": \"InProgress\",\r\n \"started\": \"2022-04-06T00:27:40.763Z\",\r\n \"updated\": \"2022-04-06T00:27:40.763Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE2MDM0NjM0NjEwZDJjODAzNzIxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTdjMDEyMzRlMTBmMDBiN2I4OD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08de2e7d-2d35-4be6-a795-600799503663" + "4d0b2104-9803-4790-8c19-4cab8b55eb4a" ], "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -867,7 +867,7 @@ "nosniff" ], "x-ms-request-id": [ - "838769af-5638-4573-b2a6-559456c8fd6c" + "67981f8b-56f2-4f3d-aef6-2f8c81e95381" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -876,16 +876,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "8b25a8d8-5841-4cb1-8bb9-a3f8b9891cdb" + "67981f8b-56f2-4f3d-aef6-2f8c81e95381" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222712Z:8b25a8d8-5841-4cb1-8bb9-a3f8b9891cdb" + "WESTUS:20220406T002841Z:67981f8b-56f2-4f3d-aef6-2f8c81e95381" ], "Date": [ - "Fri, 17 Sep 2021 22:27:12 GMT" + "Wed, 06 Apr 2022 00:28:40 GMT" ], "Content-Length": [ - "559" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -894,23 +894,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614516034634610d2c803721\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614516034634610d2c803721\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:26:11.9Z\",\r\n \"updated\": \"2021-09-17T22:26:59.657Z\",\r\n \"resultInfo\": \"Latest commit f30346b6e6e515a9b933b3a9547abde67c2defd6 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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde7c01234e10f00b7b88\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde7c01234e10f00b7b88\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:27:40.763Z\",\r\n \"updated\": \"2022-04-06T00:28:36.117Z\",\r\n \"resultInfo\": \"Latest commit 238138b01f8730a9e0cc29401e7504cff8b317aa 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 }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE2MDM0NjM0NjEwZDJjODAzNzIxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTdjMDEyMzRlMTBmMDBiN2I4OD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08de2e7d-2d35-4be6-a795-600799503663" + "4d0b2104-9803-4790-8c19-4cab8b55eb4a" ], "User-Agent": [ "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -927,7 +927,7 @@ "nosniff" ], "x-ms-request-id": [ - "18e6959c-7713-49cf-ab1c-f59dd3bbdba9" + "c790c6ba-e30a-4bd4-b20e-123e14a71832" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -936,16 +936,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "56084912-545a-4f3a-bd1f-68d50d6de8b7" + "c790c6ba-e30a-4bd4-b20e-123e14a71832" ], "x-ms-routing-request-id": [ - "WESTUS:20210917T222712Z:56084912-545a-4f3a-bd1f-68d50d6de8b7" + "WESTUS:20220406T002841Z:c790c6ba-e30a-4bd4-b20e-123e14a71832" ], "Date": [ - "Fri, 17 Sep 2021 22:27:12 GMT" + "Wed, 06 Apr 2022 00:28:40 GMT" ], "Content-Length": [ - "559" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -954,12 +954,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"614516034634610d2c803721\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614516034634610d2c803721\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:26:11.9Z\",\r\n \"updated\": \"2021-09-17T22:26:59.657Z\",\r\n \"resultInfo\": \"Latest commit f30346b6e6e515a9b933b3a9547abde67c2defd6 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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"624cde7c01234e10f00b7b88\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde7c01234e10f00b7b88\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:27:40.763Z\",\r\n \"updated\": \"2022-04-06T00:28:36.117Z\",\r\n \"resultInfo\": \"Latest commit 238138b01f8730a9e0cc29401e7504cff8b317aa 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 }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file 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 c09e4ecd0058..2ffa0002f17a 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d301947-a8a0-40bb-928a-1e5a44a3ebbe" + "8825a423-60bd-4075-a315-4fb65c19b44c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "nosniff" ], "x-ms-request-id": [ - "1f4e54ae-b53e-4542-8d6f-a707b4575647" + "79a376e3-c5e1-45c8-ab1b-cb7bfde61efe" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "7e9019f3-7cbb-418f-aa61-1eb53f54f379" + "79a376e3-c5e1-45c8-ab1b-cb7bfde61efe" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001303Z:7e9019f3-7cbb-418f-aa61-1eb53f54f379" + "WESTUS:20220401T185941Z:79a376e3-c5e1-45c8-ab1b-cb7bfde61efe" ], "Date": [ - "Tue, 13 Jul 2021 00:13:02 GMT" + "Fri, 01 Apr 2022 18:59:40 GMT" ], "Content-Length": [ - "664" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "-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\",\r\n \"type\": \"Microsoft.ApiManagement/service/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 \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/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\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.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/1?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzE/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy8xP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a03b655d-be53-4386-9a8c-c00108fd3bc2" + "d24d65ac-ef9e-4c03-ae63-94cc0ba564b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAA//8AAAAAAAAIdA==\"" + "\"AAAAAAAAC8EAAAAAAAAIdw==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -99,7 +99,7 @@ "nosniff" ], "x-ms-request-id": [ - "9745b657-723a-49a8-be13-f5cd06f5eb3b" + "a776828f-7be9-490f-b1ce-be97e277c640" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -108,16 +108,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "a2b17ebb-6619-4f73-8bd1-d9719d23f69e" + "a776828f-7be9-490f-b1ce-be97e277c640" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001303Z:a2b17ebb-6619-4f73-8bd1-d9719d23f69e" + "WESTUS:20220401T185941Z:a776828f-7be9-490f-b1ce-be97e277c640" ], "Date": [ - "Tue, 13 Jul 2021 00:13:03 GMT" + "Fri, 01 Apr 2022 18:59:40 GMT" ], "Content-Length": [ - "548" + "558" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,32 +126,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/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 \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/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\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.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/ps3935?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps1314\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps1767\",\r\n \"lastName\": \"ps9322\",\r\n \"password\": \"ps3004\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps1095\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps4834\",\r\n \"lastName\": \"ps306\",\r\n \"password\": \"ps5184\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6b81693e-d462-4aae-a62e-f7d873789b9c" + "3738b4ab-0f68-4219-a464-b2f90a1a2f46" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "195" + "194" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABADAAAAAAAAEAMg==\"" + "\"AAAAAAAAC/AAAAAAAAAL8g==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "x-ms-request-id": [ - "d45b2458-8f1f-49a3-a954-ad2eadbbddb7" + "c94b7c8d-72fc-424e-a8a7-7d5d2f66233e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -180,16 +180,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "4f0dad0e-2af7-4b82-a27d-73d092255227" + "c94b7c8d-72fc-424e-a8a7-7d5d2f66233e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001305Z:4f0dad0e-2af7-4b82-a27d-73d092255227" + "WESTUS:20220401T185944Z:c94b7c8d-72fc-424e-a8a7-7d5d2f66233e" ], "Date": [ - "Tue, 13 Jul 2021 00:13:04 GMT" + "Fri, 01 Apr 2022 18:59:44 GMT" ], "Content-Length": [ - "1054" + "1073" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,26 +198,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps1767\",\r\n \"lastName\": \"ps9322\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps1314\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps4834\",\r\n \"lastName\": \"ps306\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps1095\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/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/ps3935?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b81693e-d462-4aae-a62e-f7d873789b9c" + "3738b4ab-0f68-4219-a464-b2f90a1a2f46" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -228,7 +228,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABADAAAAAAAAEAMg==\"" + "\"AAAAAAAAC/AAAAAAAAAL8g==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "x-ms-request-id": [ - "c23ca108-8e32-4161-9376-8c93d1231f0d" + "59bf3992-c2a8-4e2c-b783-e7f103a33fe2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -246,16 +246,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "acbfaf29-0b42-49c8-8f5e-1ee0a2cd55f7" + "59bf3992-c2a8-4e2c-b783-e7f103a33fe2" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001305Z:acbfaf29-0b42-49c8-8f5e-1ee0a2cd55f7" + "WESTUS:20220401T185944Z:59bf3992-c2a8-4e2c-b783-e7f103a33fe2" ], "Date": [ - "Tue, 13 Jul 2021 00:13:04 GMT" + "Fri, 01 Apr 2022 18:59:44 GMT" ], "Content-Length": [ - "580" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,26 +264,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps1767\",\r\n \"lastName\": \"ps9322\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps1314\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps4834\",\r\n \"lastName\": \"ps306\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps1095\",\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/ps3935?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ad5fc32-f89c-4936-98b6-e9434cf05654" + "079ab263-1f23-4160-878e-f671345c2bd3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -294,7 +294,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABADkAAAAAAAEAOg==\"" + "\"AAAAAAAAC/kAAAAAAAAL+g==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "x-ms-request-id": [ - "85111135-3d01-4ae7-90c1-a2a45bda9272" + "3d741967-6a2e-4326-bd5b-40ff4a16204c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,16 +312,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "044ad5ae-c23a-4e3d-afd5-88d4355fa697" + "3d741967-6a2e-4326-bd5b-40ff4a16204c" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001307Z:044ad5ae-c23a-4e3d-afd5-88d4355fa697" + "WESTUS:20220401T185947Z:3d741967-6a2e-4326-bd5b-40ff4a16204c" ], "Date": [ - "Tue, 13 Jul 2021 00:13:06 GMT" + "Fri, 01 Apr 2022 18:59:46 GMT" ], "Content-Length": [ - "588" + "598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,26 +330,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\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/ps3935?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4212090e-1c7a-4973-8c78-e9aff77bcc48" + "1c8e39dc-4f66-4c22-9450-14cbbf512cac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -360,7 +360,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAD4AAAAAAAEAPw==\"" + "\"AAAAAAAAC/4AAAAAAAAL/w==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "x-ms-request-id": [ - "91abb12e-f6b5-4590-b445-4a35e7c63a32" + "37576b0e-4bae-4b91-9f7d-e67071827782" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -378,16 +378,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "73c44c2f-1ad5-4c62-b545-ce1a193039b6" + "37576b0e-4bae-4b91-9f7d-e67071827782" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001308Z:73c44c2f-1ad5-4c62-b545-ce1a193039b6" + "WESTUS:20220401T185948Z:37576b0e-4bae-4b91-9f7d-e67071827782" ], "Date": [ - "Tue, 13 Jul 2021 00:13:07 GMT" + "Fri, 01 Apr 2022 18:59:47 GMT" ], "Content-Length": [ - "589" + "599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -396,26 +396,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\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/ps3935?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a727d44-9ce9-4668-b561-7593ce56305f" + "39f428da-cb7c-4143-b485-e67ca275b041" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -426,7 +426,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAEMAAAAAAAEARA==\"" + "\"AAAAAAAADAQAAAAAAAAMBQ==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,7 +435,7 @@ "nosniff" ], "x-ms-request-id": [ - "10df76ce-8600-419c-be02-b55f928acbca" + "a70e86cc-a8be-4703-a51c-69b1e8ffbd3a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,16 +444,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "936f1e7a-d18f-4ca2-b894-db9f6dad15ec" + "a70e86cc-a8be-4703-a51c-69b1e8ffbd3a" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001309Z:936f1e7a-d18f-4ca2-b894-db9f6dad15ec" + "WESTUS:20220401T185948Z:a70e86cc-a8be-4703-a51c-69b1e8ffbd3a" ], "Date": [ - "Tue, 13 Jul 2021 00:13:08 GMT" + "Fri, 01 Apr 2022 18:59:48 GMT" ], "Content-Length": [ - "588" + "598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,26 +462,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\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/ps3935?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f5ad92-0d86-48d7-b268-64fded65915d" + "d6c4e13c-f6b1-491e-b281-23c45b37f799" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -498,7 +498,7 @@ "nosniff" ], "x-ms-request-id": [ - "735c4d06-5388-4a2c-9db7-3e057bfe2fe8" + "5176e302-cdf6-4568-870a-7260c347d4dc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -507,13 +507,13 @@ "11988" ], "x-ms-correlation-request-id": [ - "e0a40e3f-c96c-4c72-83ba-f342f3ecf7cf" + "5176e302-cdf6-4568-870a-7260c347d4dc" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001310Z:e0a40e3f-c96c-4c72-83ba-f342f3ecf7cf" + "WESTUS:20220401T185950Z:5176e302-cdf6-4568-870a-7260c347d4dc" ], "Date": [ - "Tue, 13 Jul 2021 00:13:10 GMT" + "Fri, 01 Apr 2022 18:59:50 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/ps3935?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps5771\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps3863\",\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps3765\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps1967\",\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4ad5fc32-f89c-4936-98b6-e9434cf05654" + "079ab263-1f23-4160-878e-f671345c2bd3" ], "If-Match": [ "*" @@ -544,10 +544,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,7 +564,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABADk=\"" + "\"AAAAAAAAC/k=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,7 +573,7 @@ "nosniff" ], "x-ms-request-id": [ - "3a344b31-2e2e-4921-84b5-72664d92bc36" + "80a56a97-5772-4f51-89e9-6ac96295d81e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -582,16 +582,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "86fd3d1f-a93b-49f3-8345-00eebef86b1f" + "80a56a97-5772-4f51-89e9-6ac96295d81e" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001307Z:86fd3d1f-a93b-49f3-8345-00eebef86b1f" + "WESTUS:20220401T185946Z:80a56a97-5772-4f51-89e9-6ac96295d81e" ], "Date": [ - "Tue, 13 Jul 2021 00:13:06 GMT" + "Fri, 01 Apr 2022 18:59:46 GMT" ], "Content-Length": [ - "607" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,17 +600,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"groups\": [],\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"groups\": [],\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/ps3935?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Blocked\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4212090e-1c7a-4973-8c78-e9aff77bcc48" + "1c8e39dc-4f66-4c22-9450-14cbbf512cac" ], "If-Match": [ "*" @@ -619,10 +619,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -639,7 +639,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAD4=\"" + "\"AAAAAAAAC/4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -648,7 +648,7 @@ "nosniff" ], "x-ms-request-id": [ - "bbf094d3-7d0c-4850-b133-3a06caf1308c" + "ef82cbc4-6087-4552-b148-4edbefbdf967" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -657,16 +657,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "bfeaf44f-1e1f-4ebb-ae1a-961438626e95" + "ef82cbc4-6087-4552-b148-4edbefbdf967" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001308Z:bfeaf44f-1e1f-4ebb-ae1a-961438626e95" + "WESTUS:20220401T185947Z:ef82cbc4-6087-4552-b148-4edbefbdf967" ], "Date": [ - "Tue, 13 Jul 2021 00:13:07 GMT" + "Fri, 01 Apr 2022 18:59:47 GMT" ], "Content-Length": [ - "608" + "618" ], "Content-Type": [ "application/json; charset=utf-8" @@ -675,17 +675,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"groups\": [],\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"groups\": [],\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/ps3935?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7a727d44-9ce9-4668-b561-7593ce56305f" + "39f428da-cb7c-4143-b485-e67ca275b041" ], "If-Match": [ "*" @@ -694,10 +694,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -714,7 +714,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAABAEM=\"" + "\"AAAAAAAADAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,7 +723,7 @@ "nosniff" ], "x-ms-request-id": [ - "3dac3e77-c73a-4e31-932f-6587dcb69c83" + "7980745f-48d1-4c7e-9ac3-caea642c7e76" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -732,16 +732,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "9d2fd1c8-6035-4d14-a4a9-fe7417b010b2" + "7980745f-48d1-4c7e-9ac3-caea642c7e76" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001308Z:9d2fd1c8-6035-4d14-a4a9-fe7417b010b2" + "WESTUS:20220401T185948Z:7980745f-48d1-4c7e-9ac3-caea642c7e76" ], "Date": [ - "Tue, 13 Jul 2021 00:13:08 GMT" + "Fri, 01 Apr 2022 18:59:48 GMT" ], "Content-Length": [ - "607" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -750,26 +750,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"groups\": [],\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"groups\": [],\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?$filter=email%20eq%20'changed.contoso@microsoft.com'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9ZW1haWwlMjBlcSUyMCdjaGFuZ2VkLmNvbnRvc29AbWljcm9zb2Z0LmNvbScmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=email%20eq%20'changed.contoso@microsoft.com'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPWVtYWlsJTIwZXElMjAnY2hhbmdlZC5jb250b3NvQG1pY3Jvc29mdC5jb20nJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4d9e91f-a492-4fa5-a90c-32fcf29da7ac" + "9e25bc73-e70f-4ae5-831e-5a4505ee2ff3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -786,7 +786,7 @@ "nosniff" ], "x-ms-request-id": [ - "260ba041-200d-414a-8201-6a02cdb195ec" + "1696b317-4067-4bbc-a90e-222b683e1244" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -795,16 +795,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "95df991f-0a2d-4f2c-a9db-f18d89cbce01" + "1696b317-4067-4bbc-a90e-222b683e1244" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001307Z:95df991f-0a2d-4f2c-a9db-f18d89cbce01" + "WESTUS:20220401T185947Z:1696b317-4067-4bbc-a90e-222b683e1244" ], "Date": [ - "Tue, 13 Jul 2021 00:13:06 GMT" + "Fri, 01 Apr 2022 18:59:47 GMT" ], "Content-Length": [ - "704" + "714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -813,26 +813,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\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'ps2011'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAncHMyMDExJyZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=firstName%20eq%20'ps3247'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPWZpcnN0TmFtZSUyMGVxJTIwJ3BzMzI0NycmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a41964c2-9a18-41eb-8483-c50d922b9460" + "6b0353d7-ff33-44ea-b28f-174203bbb59a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -849,7 +849,7 @@ "nosniff" ], "x-ms-request-id": [ - "5d399993-7391-4445-b102-d761a45223cc" + "dd8dad29-50e7-4c18-a017-551ddce5a29d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -858,16 +858,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "6ed1654b-6e9a-4608-919c-c61439cda629" + "dd8dad29-50e7-4c18-a017-551ddce5a29d" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001307Z:6ed1654b-6e9a-4608-919c-c61439cda629" + "WESTUS:20220401T185947Z:dd8dad29-50e7-4c18-a017-551ddce5a29d" ], "Date": [ - "Tue, 13 Jul 2021 00:13:07 GMT" + "Fri, 01 Apr 2022 18:59:47 GMT" ], "Content-Length": [ - "704" + "714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,26 +876,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\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'ps3881'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczM4ODEnJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=lastName%20eq%20'ps8364'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPWxhc3ROYW1lJTIwZXElMjAncHM4MzY0JyZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65f095c6-663e-453c-b642-01d89a597587" + "ab6036c7-7671-4e5b-bc73-4a6457b829a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -912,7 +912,7 @@ "nosniff" ], "x-ms-request-id": [ - "e1c25300-8d4e-4320-911f-6c2a21ad9784" + "c40c9152-c697-4d27-bff1-a05eabbc4fde" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -921,16 +921,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "9f98632f-232b-4dfe-9c47-f8c39a8889ae" + "c40c9152-c697-4d27-bff1-a05eabbc4fde" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001307Z:9f98632f-232b-4dfe-9c47-f8c39a8889ae" + "WESTUS:20220401T185947Z:c40c9152-c697-4d27-bff1-a05eabbc4fde" ], "Date": [ - "Tue, 13 Jul 2021 00:13:07 GMT" + "Fri, 01 Apr 2022 18:59:47 GMT" ], "Content-Length": [ - "704" + "714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -939,26 +939,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\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'ps3881'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczM4ODEnJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=lastName%20eq%20'ps8364'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPWxhc3ROYW1lJTIwZXElMjAncHM4MzY0JyZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecd128d6-f057-4185-8853-518f434a6497" + "281a5346-069b-4a8d-9a99-250161358704" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -975,7 +975,7 @@ "nosniff" ], "x-ms-request-id": [ - "c284cc0c-cb38-4fbb-87a1-89191c7e0dab" + "9d3f534f-116c-4c78-8e3d-122074d3d8ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -984,16 +984,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "ca9f74d3-c656-4d5e-b90e-3d1fbebc240b" + "9d3f534f-116c-4c78-8e3d-122074d3d8ee" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001307Z:ca9f74d3-c656-4d5e-b90e-3d1fbebc240b" + "WESTUS:20220401T185947Z:9d3f534f-116c-4c78-8e3d-122074d3d8ee" ], "Date": [ - "Tue, 13 Jul 2021 00:13:07 GMT" + "Fri, 01 Apr 2022 18:59:47 GMT" ], "Content-Length": [ - "704" + "714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,26 +1002,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\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=state%20eq%20'blocked'&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9c3RhdGUlMjBlcSUyMCdibG9ja2VkJyZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=state%20eq%20'blocked'&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPXN0YXRlJTIwZXElMjAnYmxvY2tlZCcmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6052e95a-2d9b-4505-95c9-44aa0ad51a46" + "28a260a3-9f09-40f1-b693-a42727dff14d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1038,7 +1038,7 @@ "nosniff" ], "x-ms-request-id": [ - "4fc030be-3670-4aaa-ae77-c65c4fca372d" + "42138ba6-3adc-4490-8446-e4ae7b2acd90" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1047,16 +1047,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "e799e5f9-2b3b-4138-862b-4e41a430797b" + "42138ba6-3adc-4490-8446-e4ae7b2acd90" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001308Z:e799e5f9-2b3b-4138-862b-4e41a430797b" + "WESTUS:20220401T185948Z:42138ba6-3adc-4490-8446-e4ae7b2acd90" ], "Date": [ - "Tue, 13 Jul 2021 00:13:08 GMT" + "Fri, 01 Apr 2022 18:59:48 GMT" ], "Content-Length": [ - "705" + "715" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1065,26 +1065,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\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/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\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/ps3935/generateSsoUrl?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695/generateSsoUrl?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTUvZ2VuZXJhdGVTc29Vcmw/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25161051-dbc9-4d19-ade1-88e7979a4dbf" + "8b09267f-1407-459e-8efd-759cd845a1dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1101,7 +1101,7 @@ "nosniff" ], "x-ms-request-id": [ - "c4bf6654-19f5-449d-9702-c534fe1f4307" + "22bdd7ad-a4b1-4e88-bd4e-e04ce8471a37" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1110,13 +1110,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "6c8a2911-0846-46bc-9a59-e41247c72a31" + "22bdd7ad-a4b1-4e88-bd4e-e04ce8471a37" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001309Z:6c8a2911-0846-46bc-9a59-e41247c72a31" + "WESTUS:20220401T185948Z:22bdd7ad-a4b1-4e88-bd4e-e04ce8471a37" ], "Date": [ - "Tue, 13 Jul 2021 00:13:08 GMT" + "Fri, 01 Apr 2022 18:59:48 GMT" ], "Content-Length": [ "201" @@ -1128,26 +1128,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps3935%26202107130018%26zcSUv97b%2bcevQDWDNgS8Q3KrugjcpYEX5m2WraVnpWsFAWchWLjSb%2bIqEuZ2ef9YbZqth1R%2baFInFeAZYrsEWg%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservicetest.portal.azure-api.net/signin-sso?token=ps8695%26202204011904%26CRBCtgtuP43IzdhLPpuLO98K%2bCNxAAawvKa3yRNFwW9YOYr0pNwN1xzwZMfp70XD3PAPop5KlgPzm1bsJgbPMg%3d%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935/token?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNS90b2tlbj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695/token?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTUvdG9rZW4/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2021-07-13T08:13:09.5127289Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2022-04-02T02:59:49.2215643Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "515492dd-cfae-40dc-b8e8-47b6ffd2a904" + "87abdb0d-5bb6-4bb7-9c38-d0b3aff76853" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1170,7 +1170,7 @@ "nosniff" ], "x-ms-request-id": [ - "a7395d12-2c61-404c-bce4-e1f898caba05" + "82de67f1-e02d-4d44-ba3a-c1a0a2aa4e10" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1179,13 +1179,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "cbbc9da8-9a98-43cf-8fa8-ac874bbb001f" + "82de67f1-e02d-4d44-ba3a-c1a0a2aa4e10" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001309Z:cbbc9da8-9a98-43cf-8fa8-ac874bbb001f" + "WESTUS:20220401T185949Z:82de67f1-e02d-4d44-ba3a-c1a0a2aa4e10" ], "Date": [ - "Tue, 13 Jul 2021 00:13:08 GMT" + "Fri, 01 Apr 2022 18:59:49 GMT" ], "Content-Length": [ "120" @@ -1197,17 +1197,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps3935&202107130813&jiix0a8o76n/DoFYjOrWnmw7w/31TVmEQjFidVErgTZ2Z0zgxtxhpi/QxT1+DTDPo9SbbZzNiQy46SDsGxPzmQ==\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps8695&202204020259&RYtTI9IANZzcH66rKEgG4Hii1/KZmMoIUw3EbVEfuHdG1r+X3ssdW2Twvz/io6Pf1ksl/gLkQYCjW+qrcHMTrg==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?deleteSubscriptions=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?deleteSubscriptions=true&api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/ZGVsZXRlU3Vic2NyaXB0aW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cff32cc0-796d-42ab-9c07-a7a11e769552" + "ec1c65a8-2c17-454d-8ba0-c66be835d421" ], "If-Match": [ "*" @@ -1216,10 +1216,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0" ] }, "ResponseHeaders": { @@ -1236,7 +1236,7 @@ "nosniff" ], "x-ms-request-id": [ - "57feac0c-243b-4fbd-83e6-1a4336daf8b4" + "a1300c26-4b97-41fd-8299-11defdd94cba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1245,13 +1245,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "7f9a1961-83f0-4370-bb0c-0913eb6147e4" + "a1300c26-4b97-41fd-8299-11defdd94cba" ], "x-ms-routing-request-id": [ - "WESTUS:20210713T001310Z:7f9a1961-83f0-4370-bb0c-0913eb6147e4" + "WESTUS:20220401T185950Z:a1300c26-4b97-41fd-8299-11defdd94cba" ], "Date": [ - "Tue, 13 Jul 2021 00:13:10 GMT" + "Fri, 01 Apr 2022 18:59:50 GMT" ], "Expires": [ "-1" @@ -1266,18 +1266,18 @@ ], "Names": { "": [ - "ps3935", - "ps1767", - "ps9322", - "ps3004", - "ps1314", - "ps2011", - "ps3881", - "ps3863", - "ps5771" + "ps8695", + "ps4834", + "ps306", + "ps5184", + "ps1095", + "ps3247", + "ps8364", + "ps1967", + "ps3765" ] }, "Variables": { - "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15" } } \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj index 3d6a29545e14..5848f450c5e2 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj +++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj @@ -1,4 +1,4 @@ - + ApiManagement @@ -13,7 +13,7 @@ - + diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs index eca81c9ef5a7..c2fdda6228ce 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs @@ -100,14 +100,18 @@ private static void ConfigureMappings() cfg .CreateMap() .ForMember(dest => dest.ContentType, opt => opt.MapFrom(src => src.ContentType)) - .ForMember(dest => dest.Sample, opt => opt.MapFrom(src => src.Sample)) + .ForMember(dest => dest.Examples, opt => opt.Ignore()) .ForMember(dest => dest.FormParameters, opt => opt.Ignore()) .ForMember(dest => dest.SchemaId, opt => opt.MapFrom(src => src.SchemaId)) .ForMember(dest => dest.TypeName, opt => opt.MapFrom(src => src.TypeName)) .AfterMap((src, dest) => dest.FormParameters = src.FormParameters == null || !src.FormParameters.Any() ? null - : ToParameterContract(src.FormParameters)); + : ToParameterContract(src.FormParameters)) + .AfterMap((src, dest) => + dest.Examples = src.Examples == null || !src.Examples.Any() + ? null + : ToExampleContract(src.Examples)); cfg .CreateMap() @@ -205,14 +209,18 @@ private static void ConfigureMappings() cfg .CreateMap() .ForMember(dest => dest.ContentType, opt => opt.MapFrom(src => src.ContentType)) - .ForMember(dest => dest.Sample, opt => opt.MapFrom(src => src.Sample)) + .ForMember(dest => dest.Examples, opt => opt.Ignore()) .ForMember(dest => dest.FormParameters, opt => opt.Ignore()) .ForMember(dest => dest.SchemaId, opt => opt.MapFrom(src => src.SchemaId)) .ForMember(dest => dest.TypeName, opt => opt.MapFrom(src => src.TypeName)) .AfterMap((src, dest) => dest.FormParameters = src.FormParameters == null || !src.FormParameters.Any() ? null - : ToParameterContract(src.FormParameters)); + : ToParameterContract(src.FormParameters)) + .AfterMap((src, dest) => + dest.Examples = src.Examples == null || !src.Examples.Any() + ? null + : ToExampleContract(src.Examples)); cfg .CreateMap() @@ -426,7 +434,7 @@ private static void ConfigureMappings() cfg .CreateMap() .ForMember(dest => dest.Enabled, opt => opt.MapFrom(src => src.Enabled)) - .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.PrincipalId)) + .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id)) .ForMember(dest => dest.PrimaryKey, opt => opt.MapFrom(src => src.PrimaryKey)) .ForMember(dest => dest.SecondaryKey, opt => opt.MapFrom(src => src.SecondaryKey)); @@ -647,6 +655,20 @@ private static void ConfigureMappings() cfg .CreateMap() .ForMember(dest => dest.ClientSecret, opt => opt.MapFrom(src => src.ClientSecret)); + + cfg + .CreateMap() + .ForMember(dest => dest.Value , opt => opt.MapFrom(src => src.Value)) + .ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description)) + .ForMember(dest => dest.ExternalValue, opt => opt.MapFrom(src => src.ExternalValue)) + .ForMember(dest => dest.Summary, opt => opt.MapFrom(src => src.Summary)); + + cfg + .CreateMap() + .ForMember(dest => dest.Value, opt => opt.MapFrom(src => src.Value)) + .ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description)) + .ForMember(dest => dest.ExternalValue, opt => opt.MapFrom(src => src.ExternalValue)) + .ForMember(dest => dest.Summary, opt => opt.MapFrom(src => src.Summary)); }); _mapper = config.CreateMapper(); @@ -783,7 +805,7 @@ public PsApiManagementApi ApiCreate( Description = description, ServiceUrl = serviceUrl, Path = urlSuffix, - Protocols = Mapper.Map>(urlSchema), + Protocols = Mapper.Map>(urlSchema), }; if (!string.IsNullOrWhiteSpace(authorizationServerId)) @@ -922,7 +944,7 @@ public PsApiManagementApi ApiSet( if (urlSchema != null) { urlSchema = urlSchema.Distinct().ToArray(); - api.Protocols = Mapper.Map>(urlSchema); + api.Protocols = Mapper.Map>(urlSchema); } if (subscriptionRequired) @@ -1008,7 +1030,7 @@ public void ApiImportFromFile( if (protocols != null) { - apiCreateOrUpdateParams.Protocols = Mapper.Map>(protocols); + apiCreateOrUpdateParams.Protocols = Mapper.Map>(protocols); } if (!string.IsNullOrEmpty(serviceUrl)) @@ -1070,7 +1092,7 @@ public void ApiImportFromUrl( if (protocols != null) { - createOrUpdateContract.Protocols = Mapper.Map>(protocols); + createOrUpdateContract.Protocols = Mapper.Map>(protocols); } if (!string.IsNullOrEmpty(serviceUrl)) @@ -4140,6 +4162,39 @@ static PsApiManagementRepresentation[] ToRepresentationContract(IList ToExampleContract(PsApiManagementParameterExample[] examples) + { + if (examples == null || !examples.Any()) + { + return null; + } + + var examplesList = new Dictionary(); + + foreach (var example in examples) + { + examplesList.Add("default", Mapper.Map(example)); + } + + return examplesList; + } + + static PsApiManagementParameterExample[] ToExampleContract(IDictionary examples) + { + if (examples == null || !examples.Any()) + { + return null; + } + + var examplesList = new List(); + foreach (var example in examples) + { + examplesList.Add(Mapper.Map(example.Value)); + } + + return examplesList.ToArray(); + } #endregion #region Gateways diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementParameterExample.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementParameterExample.cs new file mode 100644 index 000000000000..44b5c204ba2a --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementParameterExample.cs @@ -0,0 +1,27 @@ +// +// 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 PsApiManagementParameterExample + { + public string Summary { get; set; } + + public object Value { get; set; } + + public string ExternalValue { get; set; } + + public string Description { get; set; } + } +} \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs index 29cdcb596692..5cf338b9d112 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +using System.Collections.Generic; using Microsoft.Azure.Management.ApiManagement.Models; namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models @@ -20,7 +21,7 @@ public class PsApiManagementRepresentation { public string ContentType { get; set; } - public string Sample { get; set; } + public PsApiManagementParameterExample[] Examples { get; set; } public PsApiManagementParameter[] FormParameters { get; set; } diff --git a/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj b/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj index 73b92a699f9d..aa3e9f9e4ea9 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 529cc8243801..46e0652737cc 100644 --- a/src/ApiManagement/ApiManagement/ApiManagement.csproj +++ b/src/ApiManagement/ApiManagement/ApiManagement.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md index b794e63ee469..1ddfd6368ad6 100644 --- a/src/ApiManagement/ApiManagement/ChangeLog.md +++ b/src/ApiManagement/ApiManagement/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -Added warning message for upcoming breaking change. + [Breaking change] Sample has been replaced by Examples in New-AzApiManagementOperation and Set-AzApiManagementOperation ## Version 2.3.1 * Fixed a bug in `Get-AzApiManagementTenantGitAccess` cmdlet. diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementOperation.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementOperation.md index fe8918b28bdf..c23c9064d319 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementOperation.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementOperation.md @@ -57,7 +57,12 @@ $Header.Type = 'string' $Request.Headers = @($Header) $RequestRepresentation = New-Object -TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation $RequestRepresentation.ContentType = 'application/json' -$RequestRepresentation.Sample = '{ "propName": "propValue" }' +$exp = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample +$exp.Value = "default" +$exp.Description = "My default request example" +$exp.ExternalValue = "https://contoso.com" +$exp.Summary = "default" +$RequestRepresentation.Examples = @($exp) $Request.Representations = @($requestRepresentation) $Response = New-Object -TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse $Response.StatusCode = 204 From eabd83396804e1d910094a108bb2fc278c715bc5 Mon Sep 17 00:00:00 2001 From: Kacie Kang Date: Wed, 20 Apr 2022 14:58:05 -0700 Subject: [PATCH 8/9] suppress --- .../Exceptions/Az.ApiManagement/BreakingChangeIssues.csv | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 tools/StaticAnalysis/Exceptions/Az.ApiManagement/BreakingChangeIssues.csv diff --git a/tools/StaticAnalysis/Exceptions/Az.ApiManagement/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.ApiManagement/BreakingChangeIssues.csv new file mode 100644 index 000000000000..6ce126b6c436 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.ApiManagement/BreakingChangeIssues.csv @@ -0,0 +1,2 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Az.ApiManagement","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementOperation","Get-AzApiManagementOperation","0","3010","The property 'Sample' of type 'Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation' has been removed.","Add the property 'Sample' back to type 'Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation'." From 5bf33137f5470addeecd14981efd24279d895de8 Mon Sep 17 00:00:00 2001 From: Kacie <35987382+KacieKK@users.noreply.github.com> Date: Wed, 20 Apr 2022 15:23:02 -0700 Subject: [PATCH 9/9] Update ChangeLog.md --- src/ApiManagement/ApiManagement/ChangeLog.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md index f76f474745cf..dec844ed4dba 100644 --- a/src/ApiManagement/ApiManagement/ChangeLog.md +++ b/src/ApiManagement/ApiManagement/ChangeLog.md @@ -18,7 +18,6 @@ - Additional information about change #1 --> ## Upcoming Release - [Breaking change] Sample has been replaced by Examples in `New-AzApiManagementOperation` and `Set-AzApiManagementOperation`