diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj index ae95ab59040f..7e89509be6dc 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/Resources/petstoreOpenApi.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/Resources/petstoreOpenApi.json new file mode 100644 index 000000000000..3ee1ba35b15b --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/Resources/petstoreOpenApi.json @@ -0,0 +1,1064 @@ +{ + "openapi": "3.0.0", + "servers": [ + { + "url": "http://petstore.swagger.io/v2" + } + ], + "info": { + "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.", + "version": "1.0.0", + "title": "Swagger Petstore", + "termsOfService": "http://swagger.io/terms/", + "contact": { + "email": "apiteam@swagger.io" + }, + "license": { + "name": "Apache 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + }, + "tags": [ + { + "name": "pet", + "description": "Everything about your Pets", + "externalDocs": { + "description": "Find out more", + "url": "http://swagger.io" + } + }, + { + "name": "store", + "description": "Access to Petstore orders" + }, + { + "name": "user", + "description": "Operations about user", + "externalDocs": { + "description": "Find out more about our store", + "url": "http://swagger.io" + } + } + ], + "paths": { + "/pet": { + "post": { + "tags": [ + "pet" + ], + "summary": "Add a new pet to the store", + "description": "", + "operationId": "addPet", + "responses": { + "405": { + "description": "Invalid input" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/Pet" + }, + "parameters": [] + }, + "put": { + "tags": [ + "pet" + ], + "summary": "Update an existing pet", + "description": "", + "operationId": "updatePet", + "responses": { + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Pet not found" + }, + "405": { + "description": "Validation exception" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/Pet" + }, + "parameters": [] + } + }, + "/pet/findByStatus": { + "get": { + "tags": [ + "pet" + ], + "summary": "Finds Pets by status", + "description": "Multiple status values can be provided with comma separated strings", + "operationId": "findPetsByStatus", + "parameters": [ + { + "name": "status", + "in": "query", + "description": "Status values that need to be considered for filter", + "required": true, + "explode": true, + "schema": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "available", + "pending", + "sold" + ], + "default": "available" + } + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Pet" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Pet" + } + } + } + } + }, + "400": { + "description": "Invalid status value" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ] + } + }, + "/pet/findByTags": { + "get": { + "tags": [ + "pet" + ], + "summary": "Finds Pets by tags", + "description": "Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.", + "operationId": "findPetsByTags", + "parameters": [ + { + "name": "tags", + "in": "query", + "description": "Tags to filter by", + "required": true, + "explode": true, + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Pet" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Pet" + } + } + } + } + }, + "400": { + "description": "Invalid tag value" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "deprecated": true + } + }, + "/pet/{petId}": { + "get": { + "tags": [ + "pet" + ], + "summary": "Find pet by ID", + "description": "Returns a single pet", + "operationId": "getPetById", + "parameters": [ + { + "name": "petId", + "in": "path", + "description": "ID of pet to return", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/Pet" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/Pet" + } + } + } + }, + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Pet not found" + } + }, + "security": [ + { + "api_key": [] + } + ] + }, + "post": { + "tags": [ + "pet" + ], + "summary": "Updates a pet in the store with form data", + "description": "", + "operationId": "updatePetWithForm", + "parameters": [ + { + "name": "petId", + "in": "path", + "description": "ID of pet that needs to be updated", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "405": { + "description": "Invalid input" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "requestBody": { + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Updated name of the pet", + "type": "string" + }, + "status": { + "description": "Updated status of the pet", + "type": "string" + } + } + } + } + } + } + }, + "delete": { + "tags": [ + "pet" + ], + "summary": "Deletes a pet", + "description": "", + "operationId": "deletePet", + "parameters": [ + { + "name": "api_key", + "in": "header", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "petId", + "in": "path", + "description": "Pet id to delete", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Pet not found" + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ] + } + }, + "/pet/{petId}/uploadImage": { + "post": { + "tags": [ + "pet" + ], + "summary": "uploads an image", + "description": "", + "operationId": "uploadFile", + "parameters": [ + { + "name": "petId", + "in": "path", + "description": "ID of pet to update", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApiResponse" + } + } + } + } + }, + "security": [ + { + "petstore_auth": [ + "write:pets", + "read:pets" + ] + } + ], + "requestBody": { + "content": { + "application/octet-stream": { + "schema": { + "type": "string", + "format": "binary" + } + } + } + } + } + }, + "/store/inventory": { + "get": { + "tags": [ + "store" + ], + "summary": "Returns pet inventories by status", + "description": "Returns a map of status codes to quantities", + "operationId": "getInventory", + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "integer", + "format": "int32" + } + } + } + } + } + }, + "security": [ + { + "api_key": [] + } + ], + "parameters": [] + } + }, + "/store/order": { + "post": { + "tags": [ + "store" + ], + "summary": "Place an order for a pet", + "description": "", + "operationId": "placeOrder", + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/Order" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/Order" + } + } + } + }, + "400": { + "description": "Invalid Order" + } + }, + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Order" + } + } + }, + "description": "order placed for purchasing the pet", + "required": true + }, + "parameters": [] + } + }, + "/store/order/{orderId}": { + "get": { + "tags": [ + "store" + ], + "summary": "Find purchase order by ID", + "description": "For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions", + "operationId": "getOrderById", + "parameters": [ + { + "name": "orderId", + "in": "path", + "description": "ID of pet that needs to be fetched", + "required": true, + "schema": { + "type": "integer", + "format": "int64", + "minimum": 1, + "maximum": 10 + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/Order" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/Order" + } + } + } + }, + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Order not found" + } + } + }, + "delete": { + "tags": [ + "store" + ], + "summary": "Delete purchase order by ID", + "description": "For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors", + "operationId": "deleteOrder", + "parameters": [ + { + "name": "orderId", + "in": "path", + "description": "ID of the order that needs to be deleted", + "required": true, + "schema": { + "type": "integer", + "format": "int64", + "minimum": 1 + } + } + ], + "responses": { + "400": { + "description": "Invalid ID supplied" + }, + "404": { + "description": "Order not found" + } + } + } + }, + "/user": { + "post": { + "tags": [ + "user" + ], + "summary": "Create user", + "description": "This can only be done by the logged in user.", + "operationId": "createUser", + "responses": { + "default": { + "description": "successful operation" + } + }, + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + }, + "description": "Created user object", + "required": true + }, + "parameters": [] + } + }, + "/user/createWithArray": { + "post": { + "tags": [ + "user" + ], + "summary": "Creates list of users with given input array", + "description": "", + "operationId": "createUsersWithArrayInput", + "responses": { + "default": { + "description": "successful operation" + } + }, + "requestBody": { + "$ref": "#/components/requestBodies/UserArray" + }, + "parameters": [] + } + }, + "/user/createWithList": { + "post": { + "tags": [ + "user" + ], + "summary": "Creates list of users with given input array", + "description": "", + "operationId": "createUsersWithListInput", + "responses": { + "default": { + "description": "successful operation" + } + }, + "requestBody": { + "$ref": "#/components/requestBodies/UserArray" + }, + "parameters": [] + } + }, + "/user/login": { + "get": { + "tags": [ + "user" + ], + "summary": "Logs user into the system", + "description": "", + "operationId": "loginUser", + "parameters": [ + { + "name": "username", + "in": "query", + "description": "The user name for login", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "password", + "in": "query", + "description": "The password for login in clear text", + "required": true, + "schema": { + "type": "string", + "format": "password" + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "headers": { + "X-Rate-Limit": { + "description": "calls per hour allowed by the user", + "schema": { + "type": "integer", + "format": "int32" + } + }, + "X-Expires-After": { + "description": "date in UTC when token expires", + "schema": { + "type": "string", + "format": "date-time" + } + } + }, + "content": { + "application/xml": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "400": { + "description": "Invalid username/password supplied" + } + } + } + }, + "/user/logout": { + "get": { + "tags": [ + "user" + ], + "summary": "Logs out current logged in user session", + "description": "", + "operationId": "logoutUser", + "responses": { + "default": { + "description": "successful operation" + } + }, + "parameters": [] + } + }, + "/user/{username}": { + "get": { + "tags": [ + "user" + ], + "summary": "Get user by user name", + "description": "", + "operationId": "getUserByName", + "parameters": [ + { + "name": "username", + "in": "path", + "description": "The name that needs to be fetched. Use user1 for testing. ", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "successful operation", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/User" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + } + }, + "400": { + "description": "Invalid username supplied" + }, + "404": { + "description": "User not found" + } + } + }, + "put": { + "tags": [ + "user" + ], + "summary": "Updated user", + "description": "This can only be done by the logged in user.", + "operationId": "updateUser", + "parameters": [ + { + "name": "username", + "in": "path", + "description": "name that need to be updated", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "400": { + "description": "Invalid user supplied" + }, + "404": { + "description": "User not found" + } + }, + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + }, + "description": "Updated user object", + "required": true + } + }, + "delete": { + "tags": [ + "user" + ], + "summary": "Delete user", + "description": "This can only be done by the logged in user.", + "operationId": "deleteUser", + "parameters": [ + { + "name": "username", + "in": "path", + "description": "The name that needs to be deleted", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "400": { + "description": "Invalid username supplied" + }, + "404": { + "description": "User not found" + } + } + } + } + }, + "externalDocs": { + "description": "See AsyncAPI example", + "url": "https://mermade.github.io/shins/asyncapi.html" + }, + "components": { + "schemas": { + "Order": { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "petId": { + "type": "integer", + "format": "int64" + }, + "quantity": { + "type": "integer", + "format": "int32" + }, + "shipDate": { + "type": "string", + "format": "date-time" + }, + "status": { + "type": "string", + "description": "Order Status", + "enum": [ + "placed", + "approved", + "delivered" + ] + }, + "complete": { + "type": "boolean", + "default": false + } + }, + "xml": { + "name": "Order" + } + }, + "Category": { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "name": { + "type": "string" + } + }, + "xml": { + "name": "Category" + } + }, + "User": { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "username": { + "type": "string" + }, + "firstName": { + "type": "string" + }, + "lastName": { + "type": "string" + }, + "email": { + "type": "string" + }, + "password": { + "type": "string" + }, + "phone": { + "type": "string" + }, + "userStatus": { + "type": "integer", + "format": "int32", + "description": "User Status" + } + }, + "xml": { + "name": "User" + } + }, + "Tag": { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "name": { + "type": "string" + } + }, + "xml": { + "name": "Tag" + } + }, + "Pet": { + "type": "object", + "required": [ + "name", + "photoUrls" + ], + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "category": { + "$ref": "#/components/schemas/Category" + }, + "name": { + "type": "string", + "example": "doggie" + }, + "photoUrls": { + "type": "array", + "xml": { + "name": "photoUrl", + "wrapped": true + }, + "items": { + "type": "string" + } + }, + "tags": { + "type": "array", + "xml": { + "name": "tag", + "wrapped": true + }, + "items": { + "$ref": "#/components/schemas/Tag" + } + }, + "status": { + "type": "string", + "description": "pet status in the store", + "enum": [ + "available", + "pending", + "sold" + ] + } + }, + "xml": { + "name": "Pet" + } + }, + "ApiResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer", + "format": "int32" + }, + "type": { + "type": "string" + }, + "message": { + "type": "string" + } + } + } + }, + "requestBodies": { + "Pet": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Pet" + } + }, + "application/xml": { + "schema": { + "$ref": "#/components/schemas/Pet" + } + } + }, + "description": "Pet object that needs to be added to the store", + "required": true + }, + "UserArray": { + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/User" + } + } + } + }, + "description": "List of user object", + "required": true + } + }, + "securitySchemes": { + "petstore_auth": { + "type": "oauth2", + "flows": { + "implicit": { + "authorizationUrl": "http://petstore.swagger.io/oauth/dialog", + "scopes": { + "write:pets": "modify pets in your account", + "read:pets": "read your pets" + } + } + } + }, + "api_key": { + "type": "apiKey", + "name": "api_key", + "in": "header" + } + }, + "links": {}, + "callbacks": {} + }, + "security": [] +} \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs index eea2cd13ab75..98e1e7ea1784 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs @@ -47,7 +47,7 @@ public ApiManagementTests(Xunit.Abstractions.ITestOutputHelper output) { var resourceManagementClient = ApiManagementHelper.GetResourceManagementClient(context); ResourceGroupName = "powershelltest"; - Location = "West US"; + Location = "CentralUSEUAP"; if (string.IsNullOrWhiteSpace(ResourceGroupName)) { @@ -102,6 +102,13 @@ public void ApiImportExportOpenApiTest() RunPowerShellTest("Api-ImportExportOpenApiTest"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ApiImportExportOpenApiJsonTest() + { + RunPowerShellTest("Api-ImportExportOpenApiJsonTest"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void ApiSchemaCrudOnSwaggerApiTest() diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 index 6140db94f8a4..665c8243852c 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 @@ -537,6 +537,55 @@ function Api-ImportExportOpenApiTest { } } +<# +.SYNOPSIS +Tests API import from OpenApi Json type and export Api. +#> +function Api-ImportExportOpenApiJsonTest { + Param($resourceGroupName, $serviceName) + + $context = New-AzApiManagementContext -ResourceGroupName $resourceGroupName -ServiceName $serviceName + $jsonPath1 = Join-Path (Join-Path "$TestOutputRoot" "Resources") "petstoreOpenApi.json" + $path1 = "openapifromFile" + $openApiId1 = getAssetName + + try { + # import api from file + $api = Import-AzApiManagementApi -Context $context -ApiId $openApiId1 -SpecificationPath $jsonPath1 -SpecificationFormat OpenApi -Path $path1 + + Assert-AreEqual $openApiId1 $api.ApiId + Assert-AreEqual $path1 $api.Path + + # get openapi schema + $apiSchemas = Get-AzApiManagementApiSchema -Context $context -ApiId $openApiId1 + Assert-NotNull $apiSchemas + Assert-AreEqual 1 $apiSchemas.Count + Assert-AreEqual OpenApiComponents $apiSchemas[0].SchemaDocumentContentType + Assert-AreEqual $openApiId1 $apiSchemas[0].ApiId + + $newName = "apimPetstore" + $newDescription = "Open api via Apim" + $api = Set-AzApiManagementApi -InputObject $api -Name $newName -Description $newDescription -ServiceUrl $api.ServiceUrl -Protocols $api.Protocols -PassThru + Assert-AreEqual $openApiId1 $api.ApiId + Assert-AreEqual $path1 $api.Path + Assert-AreEqual $newName $api.Name + Assert-AreEqual $newDescription $api.Description + Assert-AreEqual 'Http' $api.ApiType + + # commented as powershell test framework on running test in playback mode, throws 403, as the exported link of file + # gets expired + # export api to pipeline + #$result = Export-AzApiManagementApi -Context $context -ApiId $openApiId1 -SpecificationFormat OpenApiJson + #Assert-NotNull $result + #Assert-True {$result -like '*= 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": [ + "f55b94b6-334b-4421-b7b5-b9ce62dcb43b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "42629" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps324?api-version=2019-01-01&asyncId=5e5427456f56470f90c9a6a7&asyncCode=201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4598cbf3-eab3-45c8-bc03-1adf5e1c80ba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "ffac5e06-c24c-4f3a-a6cd-f5c4d53d3676" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T194302Z:ffac5e06-c24c-4f3a-a6cd-f5c4d53d3676" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 19:43:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps324?api-version=2019-01-01&asyncId=5e5427456f56470f90c9a6a7&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVlNTQyNzQ1NmY1NjQ3MGY5MGM5YTZhNyZhc3luY0NvZGU9MjAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAADOs=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "53aea05c-4c7a-44ec-a7af-eb2225063611" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "31b363ed-7089-4863-9dd0-be0c655d5296" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T194332Z:31b363ed-7089-4863-9dd0-be0c655d5296" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 19:43:31 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps324\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps324\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps324?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c80b1f2-358b-4b64-81ae-e6225c5617f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAADOs=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8844f7eb-52a6-4d27-820f-e72e68e3222d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "0ec04374-276a-42a5-bf0f-235dfc7799b6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T194332Z:0ec04374-276a-42a5-bf0f-235dfc7799b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 19:43:31 GMT" + ], + "Content-Length": [ + "1047" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps324\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps324\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps324/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjQvc2NoZW1hcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62543389-a78b-413d-80d6-b72a989bc2b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "16b28899-078f-44a3-863b-bdc632b088b0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "dad9fc84-6d51-4e54-b8d8-f14002d9fe4a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T194332Z:dad9fc84-6d51-4e54-b8d8-f14002d9fe4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 19:43:32 GMT" + ], + "Content-Length": [ + "10857" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps324/schemas/5e5427456f56470f90c9a6a6\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5e5427456f56470f90c9a6a6\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"Order\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"petId\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"quantity\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"shipDate\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\"\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"placed\",\r\n \"approved\",\r\n \"delivered\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"Order Status\"\r\n },\r\n \"complete\": {\r\n \"type\": \"boolean\",\r\n \"default\": false\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Order\"\r\n }\r\n },\r\n \"Category\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Category\"\r\n }\r\n },\r\n \"User\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"username\": {\r\n \"type\": \"string\"\r\n },\r\n \"firstName\": {\r\n \"type\": \"string\"\r\n },\r\n \"lastName\": {\r\n \"type\": \"string\"\r\n },\r\n \"email\": {\r\n \"type\": \"string\"\r\n },\r\n \"password\": {\r\n \"type\": \"string\"\r\n },\r\n \"phone\": {\r\n \"type\": \"string\"\r\n },\r\n \"userStatus\": {\r\n \"type\": \"integer\",\r\n \"description\": \"User Status\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"User\"\r\n }\r\n },\r\n \"Tag\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Tag\"\r\n }\r\n },\r\n \"Pet\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"ApiResponse\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"type\": {\r\n \"type\": \"string\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"Pet-petId-UploadImagePostRequest\": {\r\n \"type\": \"string\",\r\n \"format\": \"binary\"\r\n },\r\n \"StoreInventoryGet200ApplicationJsonResponse\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"UserLoginGet200ApplicationXmlResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"UserLoginGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"PetRequest-json\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"PetRequest-xml\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"UserArrayRequest-json\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/User\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps324%3Brev%3D1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjQlM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8b85f57-b679-485e-ad6a-a41d11a27d7d" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "488" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAADTA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e46b2e53-f18a-4e5d-a524-eafa6bfb580f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "edff7cd2-f4a0-48ca-8b1b-1cae1a670665" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T194333Z:edff7cd2-f4a0-48ca-8b1b-1cae1a670665" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 19:43:32 GMT" + ], + "Content-Length": [ + "792" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps324\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps324\",\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/ps324?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjQ/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cafbba39-0066-4ba4-b798-ea8a46b65278" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "39446db5-f3ff-4a10-b79f-660cfcfe6148" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "7b6a77f4-210c-46d6-a99d-5ff3fbc3f46a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T194333Z:7b6a77f4-210c-46d6-a99d-5ff3fbc3f46a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 19:43:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "": [ + "ps324" + ] + }, + "Variables": { + "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + } +} \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json index 4bf1e30381c9..64837b4b23a0 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,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1638?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNjM4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6434?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NDM0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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+json\"\r\n }\r\n}", + "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": [ - "2b417c6d-bd9d-4df0-97cb-48d5754aa948" + "1eb7eca4-ff0a-4f59-8db7-3826356bb169" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8316" + "8311" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1638?api-version=2019-01-01&asyncId=5e1e25d9787c9503c06a54ef&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6434?api-version=2019-01-01&asyncId=5e5409dd6f56470f90c9a5fc&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b404cfa9-8eb1-450c-9d01-7dd881918104" + "ad77c860-5be3-409d-84cb-045777c2047c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "53465c2e-4df4-4ed1-b147-1ae3b71ab02b" + "d2f7d952-73db-4cad-a76d-c163c8fba8aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203433Z:53465c2e-4df4-4ed1-b147-1ae3b71ab02b" + "WESTUS:20200224T173733Z:d2f7d952-73db-4cad-a76d-c163c8fba8aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:34:32 GMT" + "Mon, 24 Feb 2020 17:37:32 GMT" ], "Expires": [ "-1" @@ -70,16 +70,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1638?api-version=2019-01-01&asyncId=5e1e25d9787c9503c06a54ef&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNjM4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTFlMjVkOTc4N2M5NTAzYzA2YTU0ZWYmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6434?api-version=2019-01-01&asyncId=5e5409dd6f56470f90c9a5fc&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NDM0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MDlkZDZmNTY0NzBmOTBjOWE1ZmMmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAM9c=\"" + "\"AAAAAAAACi0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc329d2f-8960-449b-9be2-e5b49c5cd48d" + "aefc225c-18ca-46d0-8be1-b7430b63c8be" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,19 +105,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "32bcb151-3a14-465a-9380-53c227b23c37" + "3da1704b-4c0f-446d-b8db-537180bc222b" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203504Z:32bcb151-3a14-465a-9380-53c227b23c37" + "WESTUS:20200224T173804Z:3da1704b-4c0f-446d-b8db-537180bc222b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:35:03 GMT" + "Mon, 24 Feb 2020 17:38:03 GMT" ], "Content-Length": [ - "1346" + "1381" ], "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/ps1638\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1638\",\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 \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6434\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6434\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1638?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNjM4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6434?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NDM0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92e1825e-e0c1-45af-9416-50ea59ff3c2c" + "f99a57f6-48ab-4582-8399-380ebcc892c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAM9c=\"" + "\"AAAAAAAACi0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b55309d3-17f8-476b-8856-3632a2c47663" + "8f18ac20-4e45-43b5-a6cb-a3cc8fa929c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,19 +171,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "cd32e97f-197c-4d79-9003-da22d1eb9240" + "1f9804b4-d852-45de-8ab5-4b74d8698fa8" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203504Z:cd32e97f-197c-4d79-9003-da22d1eb9240" + "WESTUS:20200224T173804Z:1f9804b4-d852-45de-8ab5-4b74d8698fa8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:35:04 GMT" + "Mon, 24 Feb 2020 17:38:03 GMT" ], "Content-Length": [ - "1346" + "1381" ], "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/apis/ps1638\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1638\",\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 \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6434\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6434\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7056?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1445?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNDQ1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromUrl\",\r\n \"value\": \"https://raw.githubusercontent.com/OAI/OpenAPI-Specification/OpenAPI.next/examples/v3.0/petstore.yaml\",\r\n \"format\": \"openapi-link\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dac13eea-50af-4a76-a51f-6c35fd853050" + "58a20b95-82e5-42b9-8325-add4e106d605" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,13 +228,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7056?api-version=2019-01-01&asyncId=5e1e25f8787c9503c06a54f4&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1445?api-version=2019-01-01&asyncId=5e5409fc6f56470f90c9a601&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92ddfdbb-96a6-488a-8a7f-552da2ae072c" + "7dfbf75f-667f-4e77-ac18-0176f9836d45" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "90b110de-5b7c-4541-b2e0-79333a0ab738" + "297653fa-c8d9-43e6-8fae-5700db6a423a" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203504Z:90b110de-5b7c-4541-b2e0-79333a0ab738" + "WESTUS:20200224T173804Z:297653fa-c8d9-43e6-8fae-5700db6a423a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:35:04 GMT" + "Mon, 24 Feb 2020 17:38:04 GMT" ], "Expires": [ "-1" @@ -265,16 +265,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7056?api-version=2019-01-01&asyncId=5e1e25f8787c9503c06a54f4&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTFlMjVmODc4N2M5NTAzYzA2YTU0ZjQmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1445?api-version=2019-01-01&asyncId=5e5409fc6f56470f90c9a601&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNDQ1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MDlmYzZmNTY0NzBmOTBjOWE2MDEmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -285,34 +285,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAM+c=\"" + "\"AAAAAAAACj8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "842a1ee4-6997-466e-a489-976830c1fde2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "1412441a-8d09-416c-aae5-6d9b7a04682a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "464284da-360a-417d-bb33-02fdd67bb54a" + "ab413069-04e8-462b-b301-fbc57ada6a55" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203535Z:464284da-360a-417d-bb33-02fdd67bb54a" + "WESTUS:20200224T173835Z:ab413069-04e8-462b-b301-fbc57ada6a55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:35:34 GMT" + "Mon, 24 Feb 2020 17:38:34 GMT" ], "Content-Length": [ - "724" + "759" ], "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/ps7056\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7056\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1445\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1445\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7056?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1445?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNDQ1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94419e56-62d7-461c-9e17-dfcc598fbfaa" + "b7991b1c-cdb1-4ae0-a245-043ee3672c25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -351,34 +351,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAM+c=\"" + "\"AAAAAAAACj8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c13070bc-55cc-4adb-a5dc-8e6964da8711" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "61ab4a6e-4d6a-49e0-be80-d1ae1c7691b9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "39aa4dc8-7a07-4935-b5ab-be4c5a87fddc" + "0412ed02-2b21-4a91-8231-6813b9a7a562" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203535Z:39aa4dc8-7a07-4935-b5ab-be4c5a87fddc" + "WESTUS:20200224T173835Z:0412ed02-2b21-4a91-8231-6813b9a7a562" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:35:34 GMT" + "Mon, 24 Feb 2020 17:38:34 GMT" ], "Content-Length": [ - "724" + "759" ], "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/ps7056\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7056\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1445\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1445\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1638/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNjM4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6434/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NDM0L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0913f2c7-f9f9-4d02-b7b5-2500eb8249a0" + "346bfde6-887c-4039-b57f-0e5d8c6a4209" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -420,7 +420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e12ac43d-60ec-4f40-b3b2-055ab890d2ba" + "10f75c90-d6ea-476a-a5a6-2385136219d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -429,19 +429,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "65e82ddc-1667-448a-9f9d-c0602924ecf2" + "8636d8d4-b555-4fc8-b77e-4857aa316780" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203538Z:65e82ddc-1667-448a-9f9d-c0602924ecf2" + "WESTUS:20200224T173835Z:8636d8d4-b555-4fc8-b77e-4857aa316780" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:35:37 GMT" + "Mon, 24 Feb 2020 17:38:35 GMT" ], "Content-Length": [ - "3819" + "2515" ], "Content-Type": [ "application/json; charset=utf-8" @@ -450,17 +450,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1638/schemas/5e1e25d9787c9503c06a54ee\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5e1e25d9787c9503c06a54ee\",\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-RecordsPostRequest\": {\r\n \"required\": [\r\n \"criteria\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"criteria\": {\r\n \"type\": \"string\",\r\n \"description\": \"Uses Lucene Query Syntax in the format of propertyName:value, propertyName:[num1 TO num2] and date range format: propertyName:[yyyyMMdd TO yyyyMMdd]. In the response please see the 'docs' element which has the list of record objects. Each record structure would consist of all the fields and their corresponding values.\",\r\n \"default\": \"*:*\"\r\n },\r\n \"start\": {\r\n \"type\": \"integer\",\r\n \"description\": \"Starting record number. Default value is 0.\",\r\n \"default\": 0\r\n },\r\n \"rows\": {\r\n \"type\": \"integer\",\r\n \"description\": \"Specify number of rows to be returned. If you run the search with default values, in the response you will see 'numFound' attribute which will tell the number of records available in the dataset.\",\r\n \"default\": 100\r\n }\r\n }\r\n },\r\n \"-dataset--version-RecordsPost200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"object\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6434/schemas/5e5409dd6f56470f90c9a5fb\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5e5409dd6f56470f90c9a5fb\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"dataSetList\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"total\": {\r\n \"type\": \"integer\"\r\n },\r\n \"apis\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"apiKey\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a dataset parameter value\"\r\n },\r\n \"apiVersionNumber\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a version parameter value\"\r\n },\r\n \"apiUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"The URL describing the dataset's fields\",\r\n \"format\": \"uriref\"\r\n },\r\n \"apiDocumentationUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"A URL to the API console for each API\",\r\n \"format\": \"uriref\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"-dataset--version-FieldsGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-FieldsGet404ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-RecordsPost200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"object\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7056%3Brev%3D1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MDU2JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1445%3Brev%3D1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNDQ1JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "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 \"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": [ - "0da1e8e5-d2ef-49d6-8c95-65b9b53c1a43" + "f16f6f71-3850-4605-ab50-fd5dfd82a10f" ], "If-Match": [ "*" @@ -469,16 +469,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "452" + "487" ] }, "ResponseHeaders": { @@ -489,13 +489,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAM/c=\"" + "\"AAAAAAAACk8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16d3b79f-8f8e-4fe2-b1fa-1be4173340fd" + "e0739279-3f81-417d-ab6a-4f4014ccefad" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,19 +504,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "3e53dc08-d4eb-408e-9bae-d0dad7347cb9" + "7f961ec1-8e2c-4532-b3c2-2ea35931961a" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203546Z:3e53dc08-d4eb-408e-9bae-d0dad7347cb9" + "WESTUS:20200224T173836Z:7f961ec1-8e2c-4532-b3c2-2ea35931961a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:35:45 GMT" + "Mon, 24 Feb 2020 17:38:35 GMT" ], "Content-Length": [ - "758" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7056\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7056\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1445\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1445\",\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/ps1638?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNjM4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6434?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NDM0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "776ccac4-ec1e-4c82-8d2d-1d092b156224" + "d6064f47-7097-4f9e-8308-cf76353536b4" ], "If-Match": [ "*" @@ -544,10 +544,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -561,7 +561,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4fdeba7-c500-4e49-ac8c-f08cfae5f0ae" + "a7382d99-2305-49cc-935e-3b6c4ed86f21" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -570,16 +570,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "630ab47c-fb82-406f-8209-e1b63d81932a" + "e52d6a82-34ca-45c8-bff1-7bb91d74bfae" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203546Z:630ab47c-fb82-406f-8209-e1b63d81932a" + "WESTUS:20200224T173836Z:e52d6a82-34ca-45c8-bff1-7bb91d74bfae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:35:45 GMT" + "Mon, 24 Feb 2020 17:38:35 GMT" ], "Expires": [ "-1" @@ -592,13 +592,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7056?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MDU2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1445?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNDQ1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a86d4bb-d864-4bc1-b56b-10919871aadb" + "57350b67-111a-44cd-92f5-598ac901a67b" ], "If-Match": [ "*" @@ -607,10 +607,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -624,7 +624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86ef0541-45ea-4666-8e37-c9097d5056d7" + "cd971d0d-1339-4fec-ac24-8fda425d3c45" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,16 +633,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "37a57d16-f2e5-46d4-98a9-5bcce3dc6934" + "1bc25b87-bd99-483e-8a26-fc050d35b7cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T203546Z:37a57d16-f2e5-46d4-98a9-5bcce3dc6934" + "WESTUS:20200224T173836Z:1bc25b87-bd99-483e-8a26-fc050d35b7cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:35:46 GMT" + "Mon, 24 Feb 2020 17:38:35 GMT" ], "Expires": [ "-1" @@ -657,8 +657,8 @@ ], "Names": { "": [ - "ps1638", - "ps7056" + "ps6434", + "ps1445" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json index 3eb61eaf5cb5..d517ff51ce53 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/ps9425?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NDI1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9285?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5Mjg1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "345f34f1-92c1-4dd1-891f-b0d26d777278" + "03883151-aa02-44de-8a30-2d188814ca56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,31 +33,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9425?api-version=2019-01-01&asyncId=5e1e2749787c9503c06a54fc&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9285?api-version=2019-01-01&asyncId=5e5408a56f56470f90c9a5bb&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89c4daf0-6718-4d15-8fc5-beb150edab39" + "d97f7c12-bd20-41e2-afd6-4fbaeb846767" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "9ea1d007-ad35-4a4e-a797-3ba5e460edc9" + "84037179-c6ad-48be-b8d6-4443490a9113" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204042Z:9ea1d007-ad35-4a4e-a797-3ba5e460edc9" + "WESTUS:20200224T173222Z:84037179-c6ad-48be-b8d6-4443490a9113" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:40:42 GMT" + "Mon, 24 Feb 2020 17:32:22 GMT" ], "Expires": [ "-1" @@ -70,16 +70,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9425?api-version=2019-01-01&asyncId=5e1e2749787c9503c06a54fc&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NDI1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTFlMjc0OTc4N2M5NTAzYzA2YTU0ZmMmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9285?api-version=2019-01-01&asyncId=5e5408a56f56470f90c9a5bb&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5Mjg1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MDhhNTZmNTY0NzBmOTBjOWE1YmImYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,34 +90,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANAE=\"" + "\"AAAAAAAACQ0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d439d01d-27c6-4621-8358-cb5d4d3f315a" + "9ebea140-a1a5-4246-9aaa-f25b8a7df67d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "34ba5749-7d14-46a6-9e02-2ebf113eec8d" + "fed1ac91-677b-46cb-ba79-022e280de4a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204112Z:34ba5749-7d14-46a6-9e02-2ebf113eec8d" + "WESTUS:20200224T173252Z:fed1ac91-677b-46cb-ba79-022e280de4a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:41:12 GMT" + "Mon, 24 Feb 2020 17:32:52 GMT" ], "Content-Length": [ - "849" + "884" ], "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/ps9425\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9425\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9285\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9285\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9425?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NDI1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9285?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5Mjg1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cbd8661-63ce-4080-a8e6-4ea6a9b95819" + "0dabfd7e-bf6f-406f-9c78-94705a3f5e91" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -156,34 +156,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANAE=\"" + "\"AAAAAAAACQ0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b3f3e12-4bc7-4485-a32f-27507e8ad729" + "745e897f-7b8e-4d6f-8571-ef6022992815" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "abd2a8ad-ddb8-41cc-b8e7-6d446405c33e" + "68526ef1-973b-4934-b31f-6b0273d42870" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204112Z:abd2a8ad-ddb8-41cc-b8e7-6d446405c33e" + "WESTUS:20200224T173253Z:68526ef1-973b-4934-b31f-6b0273d42870" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:41:12 GMT" + "Mon, 24 Feb 2020 17:32:52 GMT" ], "Content-Length": [ - "849" + "884" ], "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/apis/ps9425\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9425\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9285\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9285\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps211?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6924?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTI0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "71996185-c722-4ced-9ca9-9c14de1deee7" + "a64ba5a5-8902-45d1-ad31-212f8b21b9de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,31 +228,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps211?api-version=2019-01-01&asyncId=5e1e2769787c9503c06a5501&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6924?api-version=2019-01-01&asyncId=5e5408c56f56470f90c9a5c0&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b97e6d88-8250-467d-8465-7880669bd2c5" + "980aa5c2-1e3d-4ac1-a9cd-7ff18ea86522" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "ed00eca4-6389-47db-a858-faa299f9c4cb" + "2f927ab2-35fa-45c4-b6cf-6ab67f5e592e" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204113Z:ed00eca4-6389-47db-a858-faa299f9c4cb" + "WESTUS:20200224T173253Z:2f927ab2-35fa-45c4-b6cf-6ab67f5e592e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:41:12 GMT" + "Mon, 24 Feb 2020 17:32:53 GMT" ], "Expires": [ "-1" @@ -265,16 +265,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps211?api-version=2019-01-01&asyncId=5e1e2769787c9503c06a5501&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVlMWUyNzY5Nzg3Yzk1MDNjMDZhNTUwMSZhc3luY0NvZGU9MjAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6924?api-version=2019-01-01&asyncId=5e5408c56f56470f90c9a5c0&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTI0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MDhjNTZmNTY0NzBmOTBjOWE1YzAmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -285,34 +285,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANB4=\"" + "\"AAAAAAAACSo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45fd83ef-2bbd-4fae-8603-2c71d4b4b51e" + "10ced57c-1b90-4849-b5f8-f9eb9d44970b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], "x-ms-correlation-request-id": [ - "d3be05d1-e977-4181-b7d0-9a0656f3c3cb" + "b9e4e7ce-7e96-446e-96ba-44bd47f70135" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204143Z:d3be05d1-e977-4181-b7d0-9a0656f3c3cb" + "WESTUS:20200224T173323Z:b9e4e7ce-7e96-446e-96ba-44bd47f70135" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:41:42 GMT" + "Mon, 24 Feb 2020 17:33:23 GMT" ], "Content-Length": [ - "1009" + "1046" ], "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/ps211\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps211\",\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 \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6924\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6924\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps211?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6924?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTI0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25c02a0e-cdf9-47d2-b9d2-e844fc60d092" + "a89a23c2-52c9-4648-9931-8d052b5ce0a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -351,34 +351,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANB4=\"" + "\"AAAAAAAACSo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01f97288-9462-43b2-bc59-67343baee851" + "e5dc9f66-81bd-47fc-b60d-9f4a291c4a79" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-correlation-request-id": [ - "0c938cfa-9dfa-4687-9e65-100ab050e182" + "5e0697f6-3938-4b5e-b00d-e869ceed9c6b" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204143Z:0c938cfa-9dfa-4687-9e65-100ab050e182" + "WESTUS:20200224T173324Z:5e0697f6-3938-4b5e-b00d-e869ceed9c6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:41:42 GMT" + "Mon, 24 Feb 2020 17:33:23 GMT" ], "Content-Length": [ - "1009" + "1046" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,17 +387,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps211\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps211\",\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 \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6924\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6924\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps211%3Brev%3D1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMTElM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6924%3Brev%3D1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTI0JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "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 \"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": [ - "42c101c0-e094-441d-b423-e038705b0b40" + "541e5c92-82dc-40ad-8400-5b90edbde63a" ], "If-Match": [ "*" @@ -406,16 +406,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "474" + "509" ] }, "ResponseHeaders": { @@ -426,34 +426,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANGI=\"" + "\"AAAAAAAACXM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f733ea34-733b-41b0-a56f-a186d87b03b3" + "8b42deb1-115b-4546-8b40-2b7503097cfd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "09b7ae90-0ad8-49e2-aedb-c868a5404147" + "de22816e-8455-4d95-88b0-e1640ea18ac0" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204144Z:09b7ae90-0ad8-49e2-aedb-c868a5404147" + "WESTUS:20200224T173332Z:de22816e-8455-4d95-88b0-e1640ea18ac0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:41:43 GMT" + "Mon, 24 Feb 2020 17:33:31 GMT" ], "Content-Length": [ - "778" + "815" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,17 +462,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps211\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps211\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Swagger api via Apim\",\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6924\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6924\",\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/ps9425?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NDI1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9285?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5Mjg1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c6280b3-68ff-4b7a-a049-1b37e78ef1d7" + "8bf5c597-ebb7-4113-846b-7cd8f1660234" ], "If-Match": [ "*" @@ -481,10 +481,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -498,7 +498,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f92947d7-8801-4313-a29c-f8884bf5bfb1" + "3b246f28-1e32-4099-b862-c45225b76c60" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -507,16 +507,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "da51b8fe-0c69-49b3-abec-2b77b219c4fd" + "bd36ab74-8a0e-41bd-ac08-7dd07c4c6f35" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204144Z:da51b8fe-0c69-49b3-abec-2b77b219c4fd" + "WESTUS:20200224T173334Z:bd36ab74-8a0e-41bd-ac08-7dd07c4c6f35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:41:43 GMT" + "Mon, 24 Feb 2020 17:33:33 GMT" ], "Expires": [ "-1" @@ -529,13 +529,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps211?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMTE/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6924?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTI0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ca86c19-cc55-4c55-b13b-0a5457daeb81" + "3fe13038-ebb7-4824-98c6-bdd5f4181d9e" ], "If-Match": [ "*" @@ -544,10 +544,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -561,7 +561,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36ff17fd-ffe6-4da0-b74c-5e0b1042b0a1" + "2cc1e54f-86fb-443f-ba0e-1ebdd788ee43" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -570,16 +570,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "17d0773b-ee4a-44d4-a1f5-70dde346fd7d" + "12a574b7-399a-4375-8c8b-d8214c58cb5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204144Z:17d0773b-ee4a-44d4-a1f5-70dde346fd7d" + "WESTUS:20200224T173334Z:12a574b7-399a-4375-8c8b-d8214c58cb5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:41:43 GMT" + "Mon, 24 Feb 2020 17:33:34 GMT" ], "Expires": [ "-1" @@ -594,8 +594,8 @@ ], "Names": { "": [ - "ps9425", - "ps211" + "ps9285", + "ps6924" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json index 1164d86940f7..7afbf5501f2c 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/ps8717?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzE3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7465?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "c9f5981e-2f35-49df-802f-1f953fbf7674" + "e82a2a44-7773-499c-98af-879d42ce58a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8717?api-version=2019-01-01&asyncId=5e1e27cd787c9503c06a551b&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7465?api-version=2019-01-01&asyncId=5e540b656f56470f90c9a66c&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "520443db-a1ca-4b22-b9f3-f778b7cf8384" + "f50ac32b-ebee-4e37-9f6f-3af8f735689f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "796628cb-3f23-42b2-8f41-7031df4ace4a" + "53b75522-9976-4f7b-bd50-00d8176ebe0e" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204253Z:796628cb-3f23-42b2-8f41-7031df4ace4a" + "WESTUS:20200224T174405Z:53b75522-9976-4f7b-bd50-00d8176ebe0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:42:52 GMT" + "Mon, 24 Feb 2020 17:44:04 GMT" ], "Expires": [ "-1" @@ -70,16 +70,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8717?api-version=2019-01-01&asyncId=5e1e27cd787c9503c06a551b&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzE3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTFlMjdjZDc4N2M5NTAzYzA2YTU1MWImYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7465?api-version=2019-01-01&asyncId=5e540b656f56470f90c9a66c&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MGI2NTZmNTY0NzBmOTBjOWE2NmMmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,34 +90,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANJM=\"" + "\"AAAAAAAAC6U=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f29ab343-1529-4ec6-95b0-280f93ece977" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "feab844a-482c-41d9-97b7-526cca711c51" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "560ba650-02b5-4821-902e-a25d389e1b94" + "eb1ef283-4847-4f93-b421-edd22e2b8264" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204323Z:560ba650-02b5-4821-902e-a25d389e1b94" + "WESTUS:20200224T174435Z:eb1ef283-4847-4f93-b421-edd22e2b8264" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:22 GMT" + "Mon, 24 Feb 2020 17:44:35 GMT" ], "Content-Length": [ - "757" + "792" ], "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/ps8717\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8717\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7465\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7465\",\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/ps8717?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzE3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7465?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dd8b29b-addf-4ee7-bcae-1307fe020694" + "2d375208-af0f-4438-b3fa-2ed14ceb0c39" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANJM=\"" + "\"AAAAAAAAC6U=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33b36ebf-c5c5-4b4b-ad12-4f6000ad0033" + "5fe653c5-d339-4b9b-aebc-6fbd371a9b0f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,19 +171,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "02959bf4-0910-4f40-94e3-71383a62f300" + "1984e4c6-2bf7-45cb-b589-4004a1ceed3e" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204323Z:02959bf4-0910-4f40-94e3-71383a62f300" + "WESTUS:20200224T174435Z:1984e4c6-2bf7-45cb-b589-4004a1ceed3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:23 GMT" + "Mon, 24 Feb 2020 17:44:35 GMT" ], "Content-Length": [ - "757" + "792" ], "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/apis/ps8717\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8717\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7465\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7465\",\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/ps8717/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzE3L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7465/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDY1L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99381d3c-191a-4a2e-bcad-2dba776fd901" + "52ed315e-043f-436c-a5ce-8538104599c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "002ff6aa-46b3-462b-8611-2bb868f496d2" + "5152a8f5-1ebf-4188-aa0b-f0487728af0c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -234,16 +234,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "e15e9d5d-4ff3-454a-9656-dc38be2f03e2" + "d4e8ffca-a7be-4eff-a574-55f93f38ab90" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204324Z:e15e9d5d-4ff3-454a-9656-dc38be2f03e2" + "WESTUS:20200224T174436Z:d4e8ffca-a7be-4eff-a574-55f93f38ab90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:23 GMT" + "Mon, 24 Feb 2020 17:44:36 GMT" ], "Content-Length": [ "2909" @@ -255,17 +255,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8717/schemas/5e1e27cd787c9503c06a551a\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5e1e27cd787c9503c06a551a\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.wadl.grammars+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7465/schemas/5e540b656f56470f90c9a66b\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5e540b656f56470f90c9a66b\",\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/ps8717?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzE3P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7465?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDY1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c88b27e-9545-447b-b8bb-f4c8e92d6602" + "6c6c4915-494f-46b5-bd26-ead4e73c5a89" ], "If-Match": [ "*" @@ -274,10 +274,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e17928a-89fe-4d81-9787-995f4cbe0d78" + "6c22204c-d989-4b1b-8c2f-0a336564e733" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -300,16 +300,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "4638e854-30c7-4a26-9aad-b9184f2b1e00" + "1295b583-373d-40df-b8cb-af67efaa8957" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204324Z:4638e854-30c7-4a26-9aad-b9184f2b1e00" + "WESTUS:20200224T174436Z:1295b583-373d-40df-b8cb-af67efaa8957" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:23 GMT" + "Mon, 24 Feb 2020 17:44:36 GMT" ], "Expires": [ "-1" @@ -324,7 +324,7 @@ ], "Names": { "": [ - "ps8717" + "ps7465" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json index 705378756e71..e1866b010596 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/ps5821?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODIxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5715?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NzE1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "564eaf6c-9d56-417b-953f-7069f6f78da8" + "3a76db95-a30c-4500-9225-b0eb1f86e18c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5821?api-version=2019-01-01&asyncId=5e1e283c787c9503c06a5529&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5715?api-version=2019-01-01&asyncId=5e540a826f56470f90c9a63f&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "808cc129-a615-4c9f-9254-a0e07a325d63" + "13d0032a-a639-444c-9518-3084249674f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "2b0c106c-6c84-4238-8e75-078e56f7efb7" + "001fcf83-e483-4642-bc57-dc7275f3c6f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204444Z:2b0c106c-6c84-4238-8e75-078e56f7efb7" + "WESTUS:20200224T174019Z:001fcf83-e483-4642-bc57-dc7275f3c6f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:44:44 GMT" + "Mon, 24 Feb 2020 17:40:18 GMT" ], "Expires": [ "-1" @@ -70,16 +70,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5821?api-version=2019-01-01&asyncId=5e1e283c787c9503c06a5529&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODIxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTFlMjgzYzc4N2M5NTAzYzA2YTU1MjkmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5715?api-version=2019-01-01&asyncId=5e540a826f56470f90c9a63f&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NzE1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MGE4MjZmNTY0NzBmOTBjOWE2M2YmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,34 +90,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANMQ=\"" + "\"AAAAAAAACug=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30ab7045-c452-499a-bd6d-306598de8c72" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "93111715-d142-4d27-ba98-a133eafa3815" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], "x-ms-correlation-request-id": [ - "878cab96-ae78-4ac1-92ed-01bde96101b7" + "3b5f9c28-bc2f-4a01-8c71-41e87e255a10" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204514Z:878cab96-ae78-4ac1-92ed-01bde96101b7" + "WESTUS:20200224T174049Z:3b5f9c28-bc2f-4a01-8c71-41e87e255a10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:45:14 GMT" + "Mon, 24 Feb 2020 17:40:48 GMT" ], "Content-Length": [ - "751" + "786" ], "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/ps5821\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5821\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5715\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5715\",\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/ps5821?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODIxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5715?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NzE1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baf8a4bf-44cf-45bc-9a39-272c225ba980" + "44a2335d-ac0c-463c-bb61-8be7a786f7ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANMQ=\"" + "\"AAAAAAAACug=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de057f75-3bee-4e00-ab43-16d96eb24161" + "20611a5b-ab7c-4420-955c-806a35bb051b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,19 +171,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "e93c4204-15e2-4953-9446-6e0112ad76ff" + "af70982f-6b29-4536-b408-91b7426ed6e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204515Z:e93c4204-15e2-4953-9446-6e0112ad76ff" + "WESTUS:20200224T174049Z:af70982f-6b29-4536-b408-91b7426ed6e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:45:14 GMT" + "Mon, 24 Feb 2020 17:40:48 GMT" ], "Content-Length": [ - "751" + "786" ], "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/apis/ps5821\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5821\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5715\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5715\",\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/ps1241?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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": [ - "c703458a-f943-4ce0-b629-e74c23148bba" + "6a378d8a-bc37-4f28-b43b-9c13239268c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,13 +228,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1241?api-version=2019-01-01&asyncId=5e1e285b787c9503c06a5530&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777?api-version=2019-01-01&asyncId=5e540aa16f56470f90c9a646&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad1605bb-9062-4b43-b55d-467650109e53" + "925ec172-51bd-4106-b4a0-fb94f97801a3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "c17235ed-2864-4d72-8cd8-3fe2f91849b3" + "a9c6cc9c-06ff-453f-a6b8-263135cf074c" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204515Z:c17235ed-2864-4d72-8cd8-3fe2f91849b3" + "WESTUS:20200224T174049Z:a9c6cc9c-06ff-453f-a6b8-263135cf074c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:45:14 GMT" + "Mon, 24 Feb 2020 17:40:49 GMT" ], "Expires": [ "-1" @@ -265,16 +265,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1241?api-version=2019-01-01&asyncId=5e1e285b787c9503c06a5530&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTFlMjg1Yjc4N2M5NTAzYzA2YTU1MzAmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777?api-version=2019-01-01&asyncId=5e540aa16f56470f90c9a646&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVlNTQwYWExNmY1NjQ3MGY5MGM5YTY0NiZhc3luY0NvZGU9MjAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -285,34 +285,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANNI=\"" + "\"AAAAAAAACvc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2268996c-144d-424c-8f43-066edafc549f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "37f51734-0c78-49cb-a2f6-ab534ec846d9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "2ba2c449-6e8f-413a-a493-f6bcfceea47d" + "e9954c82-b71d-4445-9b53-13b0a0f909c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204545Z:2ba2c449-6e8f-413a-a493-f6bcfceea47d" + "WESTUS:20200224T174120Z:e9954c82-b71d-4445-9b53-13b0a0f909c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:45:45 GMT" + "Mon, 24 Feb 2020 17:41:19 GMT" ], "Content-Length": [ - "763" + "796" ], "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/ps1241\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1241\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps777\",\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/ps1241?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdf68824-c1f7-4c9b-895b-81fae0e35c9c" + "34fabef8-bfb1-42ad-a39c-f829755e841c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -351,34 +351,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANNI=\"" + "\"AAAAAAAACvc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1587cc53-82f4-418c-9dea-472a26ec231c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "8840ba9b-b831-49ca-88d8-07ba46242b2f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "f4b01ce7-8760-409a-8348-564e417d8a96" + "e393aebb-883b-4b1e-97c4-bf7a6ca98999" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204545Z:f4b01ce7-8760-409a-8348-564e417d8a96" + "WESTUS:20200224T174120Z:e393aebb-883b-4b1e-97c4-bf7a6ca98999" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:45:45 GMT" + "Mon, 24 Feb 2020 17:41:20 GMT" ], "Content-Length": [ - "763" + "796" ], "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/ps1241\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1241\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps777\",\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/ps1241/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMjQxL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzcvc2NoZW1hcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db782eb0-a89f-434b-8d6b-124afa16e20f" + "de5acb95-2a98-44c7-86cd-5a667e842fd1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -420,28 +420,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdfb5e12-fe82-48c1-a18e-b2b5a0c312e1" + "c7c89165-eb86-47d5-bed2-228a315e2953" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "x-ms-correlation-request-id": [ - "0c6caf66-d1ba-4e74-9021-ea35daafc768" + "69f8b76d-c560-4b33-97fe-62f7933d741c" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204748Z:0c6caf66-d1ba-4e74-9021-ea35daafc768" + "WESTUS:20200224T174120Z:69f8b76d-c560-4b33-97fe-62f7933d741c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:47:47 GMT" + "Mon, 24 Feb 2020 17:41:20 GMT" ], "Content-Length": [ - "15328" + "15324" ], "Content-Type": [ "application/json; charset=utf-8" @@ -450,17 +450,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1241/schemas/b9db9838-a5ac-4fbe-b376-fc72bfc2f185\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"b9db9838-a5ac-4fbe-b376-fc72bfc2f185\",\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/ps1241/schemas/bbf1a86e-262e-4c9a-8287-91cf05d6a13c\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"bbf1a86e-262e-4c9a-8287-91cf05d6a13c\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1241/schemas/c747e075-d862-46cf-9b11-5d49b991c64b\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c747e075-d862-46cf-9b11-5d49b991c64b\",\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/ps1241/schemas/f71f7f0b-3003-48a1-adbf-15915c77f2a8\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"f71f7f0b-3003-48a1-adbf-15915c77f2a8\",\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 \"count\": 4\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777/schemas/2882fec1-b549-40d0-a67c-ff82caee43a0\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2882fec1-b549-40d0-a67c-ff82caee43a0\",\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/ps777/schemas/8c7c6bd6-8f06-4024-bb6d-a488e08f6518\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"8c7c6bd6-8f06-4024-bb6d-a488e08f6518\",\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/ps777/schemas/91115dd0-fa5a-49dc-b792-ed79f36c725e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"91115dd0-fa5a-49dc-b792-ed79f36c725e\",\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/ps777/schemas/d46ed82f-77bf-4f63-819b-5ffe1fdcef56\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d46ed82f-77bf-4f63-819b-5ffe1fdcef56\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1241%3Brev%3D1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMjQxJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777%3Brev%3D1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzclM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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 \"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": [ - "b811a7f0-91c9-441c-8151-7892d74d2f51" + "eea2036b-bf63-4b34-bd7f-291bd72bd77f" ], "If-Match": [ "*" @@ -469,16 +469,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "473" + "508" ] }, "ResponseHeaders": { @@ -489,34 +489,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANOs=\"" + "\"AAAAAAAACw8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a9591c9-c5e6-4b95-8c39-95e77f467bfe" + "85c095ca-6165-4ade-8f2b-18812ad98f34" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "cabd84f8-b337-4d77-8d82-9997af6488f0" + "0d00e017-5b70-4e56-837b-00f74c6a00c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204748Z:cabd84f8-b337-4d77-8d82-9997af6488f0" + "WESTUS:20200224T174121Z:0d00e017-5b70-4e56-837b-00f74c6a00c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:47:48 GMT" + "Mon, 24 Feb 2020 17:41:21 GMT" ], "Content-Length": [ - "800" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1241\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1241\",\r\n \"properties\": {\r\n \"displayName\": \"apimSoap\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Soap api via Apim\",\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps777\",\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/ps5821?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODIxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5715?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NzE1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a332b1d-15a0-44c0-8e1d-eaeda05ab653" + "80ffb405-656c-4233-be06-399ca0d8ecc5" ], "If-Match": [ "*" @@ -544,10 +544,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -561,7 +561,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a84de910-e488-4148-a231-af7e9eaf31ea" + "93854ba2-7359-4433-a0dd-d6751fd96b67" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -570,16 +570,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "81fbb684-3dd3-42b5-a2ff-03d9a716d7fd" + "8e5544d5-b898-4a91-8661-1c6b23269bdb" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204749Z:81fbb684-3dd3-42b5-a2ff-03d9a716d7fd" + "WESTUS:20200224T174123Z:8e5544d5-b898-4a91-8661-1c6b23269bdb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:47:48 GMT" + "Mon, 24 Feb 2020 17:41:22 GMT" ], "Expires": [ "-1" @@ -592,13 +592,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1241?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMjQxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps777?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36a38546-1a1e-423a-801e-7b34bbf06b24" + "89dcd684-05fe-44e8-81d4-fd0eb906c26a" ], "If-Match": [ "*" @@ -607,10 +607,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -624,7 +624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2903658e-f1c9-42e0-85ee-cd3a21c4e21a" + "31cb7e78-c5cc-4024-9232-6f68f2964f1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,16 +633,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "a07176cb-2835-472e-acee-06f845318aa0" + "3556da40-fdf7-45f2-9d14-e6a31beb3d6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204749Z:a07176cb-2835-472e-acee-06f845318aa0" + "WESTUS:20200224T174123Z:3556da40-fdf7-45f2-9d14-e6a31beb3d6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:47:49 GMT" + "Mon, 24 Feb 2020 17:41:23 GMT" ], "Expires": [ "-1" @@ -657,8 +657,8 @@ ], "Names": { "": [ - "ps5821", - "ps1241" + "ps5715", + "ps777" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json index 0b73875b9c9e..4346f1cc81b6 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/ps7605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "d4179988-d740-4968-be7c-b6b5c3928c3a" + "a809e1fe-4b57-4949-9e0c-598337c4d9d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,31 +33,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605?api-version=2019-01-01&asyncId=5d9278b7787c9527240ff10b&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702?api-version=2019-01-01&asyncId=5e5408f26f56470f90c9a5c8&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1350f407-fc5a-40f4-b9b2-ce33b44c95df" + "9d2d540d-159c-46ef-b01e-920ed35fb43c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "eff506c1-6041-4205-aafe-693ce6bf8ea4" + "0464446a-741b-4b41-b7e3-26c86523c47a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215048Z:eff506c1-6041-4205-aafe-693ce6bf8ea4" + "WESTUS:20200224T173338Z:0464446a-741b-4b41-b7e3-26c86523c47a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:50:47 GMT" + "Mon, 24 Feb 2020 17:33:38 GMT" ], "Expires": [ "-1" @@ -70,16 +70,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605?api-version=2019-01-01&asyncId=5d9278b7787c9527240ff10b&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZDkyNzhiNzc4N2M5NTI3MjQwZmYxMGImYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702?api-version=2019-01-01&asyncId=5e5408f26f56470f90c9a5c8&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MDhmMjZmNTY0NzBmOTBjOWE1YzgmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,34 +90,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJT0=\"" + "\"AAAAAAAACXs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3195f263-cef2-4adf-8905-d17b2fab9b93" + "7cd9fd6a-9819-42c1-9422-59600ef7ee75" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], "x-ms-correlation-request-id": [ - "4d7199ea-0e62-4096-8f95-12bf7abdd66f" + "3b22d1e7-8f51-45ff-bff7-45aaff88a624" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215118Z:4d7199ea-0e62-4096-8f95-12bf7abdd66f" + "WESTUS:20200224T173408Z:3b22d1e7-8f51-45ff-bff7-45aaff88a624" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:17 GMT" + "Mon, 24 Feb 2020 17:34:08 GMT" ], "Content-Length": [ - "849" + "884" ], "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/ps7605\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7605\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9702\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc2d19dc-8d1f-4e8e-b03a-db26e41b6577" + "25d44274-03b2-4d84-8287-930aa925d148" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -156,34 +156,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJT0=\"" + "\"AAAAAAAACXs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08b6d903-637f-4310-8a13-db0f2bfa5b7b" + "e1489e89-9b31-4a59-9e68-eaaaa96eecab" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "81b8312f-824a-4913-9343-7d1bdd11491f" + "ebdf129e-c660-42fd-8798-ee2d72f1f110" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215118Z:81b8312f-824a-4913-9343-7d1bdd11491f" + "WESTUS:20200224T173409Z:ebdf129e-c660-42fd-8798-ee2d72f1f110" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:17 GMT" + "Mon, 24 Feb 2020 17:34:08 GMT" ], "Content-Length": [ - "849" + "884" ], "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/apis/ps7605\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7605\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9702\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ee54e83-36bc-4537-b8df-6e2f90275e67" + "0dbdc3fb-1155-40a8-b459-88166f3a16fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -222,34 +222,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJT0=\"" + "\"AAAAAAAACXs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79be0af1-a79a-4a5d-a52e-d50544daf6a4" + "aa383daa-7e39-4029-bf4a-123bfffa9eaf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-correlation-request-id": [ - "d847c5e1-2f83-4328-a12b-dfabde0248ce" + "0039db98-a848-4b9f-99aa-9da503ab4929" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215121Z:d847c5e1-2f83-4328-a12b-dfabde0248ce" + "WESTUS:20200224T173411Z:0039db98-a848-4b9f-99aa-9da503ab4929" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:20 GMT" + "Mon, 24 Feb 2020 17:34:11 GMT" ], "Content-Length": [ - "849" + "884" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,7 +258,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7605\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9702\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { @@ -268,16 +268,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3e6a492-4fb4-432a-9e77-872bc2317dce" + "49c26757-6325-4faf-bcf0-e3c0e0f4979c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e778638-9f2c-48b0-a72e-463ee9853663" + "31aad36e-dfc9-4ea8-b769-796198b61758" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "86f2fc1b-fe17-4ee8-85d3-791bb5971cd2" + "28f57ce5-7ecc-4753-b441-77855439c4a6" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215118Z:86f2fc1b-fe17-4ee8-85d3-791bb5971cd2" + "WESTUS:20200224T173409Z:28f57ce5-7ecc-4753-b441-77855439c4a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:18 GMT" + "Mon, 24 Feb 2020 17:34:08 GMT" ], "Content-Length": [ - "1287" + "1285" ], "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/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/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczc2MDU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps9702?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczk3MDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b5d656a-c175-47ef-aa0b-141675fb1bcb" + "7ccef0db-9f07-42d4-b3c2-9ab529e79cec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -351,34 +351,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJT0=\"" + "\"AAAAAAAACXs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ceade133-8dc1-4bcb-89ed-ca5aebdc8f05" + "836578b7-6b4c-41a8-9461-885ecd3d15b6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "7ff11e15-7d49-4a96-bdf6-5d56b7236b53" + "29e753ac-2d01-4788-89ea-0b571ff80a43" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215119Z:7ff11e15-7d49-4a96-bdf6-5d56b7236b53" + "WESTUS:20200224T173409Z:29e753ac-2d01-4788-89ea-0b571ff80a43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:18 GMT" + "Mon, 24 Feb 2020 17:34:09 GMT" ], "Content-Length": [ - "723" + "758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,7 +387,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7605\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps7605\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps9702\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps9702\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { @@ -397,16 +397,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7879d6ef-c395-4a0c-88da-d7ef1b0209c9" + "248609a4-a25b-495e-9f04-da9d63e05bc3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -420,28 +420,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "893dad8d-7a61-4114-a453-abe4da8cd72d" + "d3e2543b-a6f6-40ea-a209-deb110e9b7ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "c4d88c87-5fdd-4689-a4a3-6c0d38ecd244" + "94d83286-0869-4e97-9484-028c760f54d2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215120Z:c4d88c87-5fdd-4689-a4a3-6c0d38ecd244" + "WESTUS:20200224T173410Z:94d83286-0869-4e97-9484-028c760f54d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:19 GMT" + "Mon, 24 Feb 2020 17:34:09 GMT" ], "Content-Length": [ - "1532" + "1610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -450,26 +450,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 \"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/ps7605\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps7605\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps9702\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps9702\",\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/ps7605/operations?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a1af882-2b24-49fe-a16b-a07cd0e2f3d6" + "d99d21f3-d175-4f31-9b7c-d6f1aa65781c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -483,25 +483,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2918ec6c-4a03-4010-b0b0-9e8a55a24313" + "5a401a4a-137a-4f19-a7ab-25921801833c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-correlation-request-id": [ - "2c0486aa-2f72-4215-967f-0e76e8267e5f" + "67fc5387-630e-4f28-bb15-b6bd4217c90c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215120Z:2c0486aa-2f72-4215-967f-0e76e8267e5f" + "WESTUS:20200224T173411Z:67fc5387-630e-4f28-bb15-b6bd4217c90c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:20 GMT" + "Mon, 24 Feb 2020 17:34:10 GMT" ], "Content-Length": [ "18942" @@ -513,26 +513,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/ps7605/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/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/ps7605%3Brev%3D2?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1JTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702%3Brev%3D2?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps1542\",\r\n \"sourceApiId\": \"/apis/ps7605;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps4310\",\r\n \"sourceApiId\": \"/apis/ps9702;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "34a2c24e-26fc-4891-b13d-26ad4f599409" + "e8e1195e-9f0c-4b80-b06d-3385347a448e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -549,34 +549,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJV0=\"" + "\"AAAAAAAACZ0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55efdd28-000b-400e-a1c1-7f07eb5ef2a0" + "686b813d-1d35-4031-bafe-769ce8170d2e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "885f09bf-968c-449b-8a95-1c5ca99da32a" + "42a7f1fc-4b0b-4c04-aa8f-20dd308c416a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215123Z:885f09bf-968c-449b-8a95-1c5ca99da32a" + "WESTUS:20200224T173414Z:42a7f1fc-4b0b-4c04-aa8f-20dd308c416a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:23 GMT" + "Mon, 24 Feb 2020 17:34:13 GMT" ], "Content-Length": [ - "878" + "913" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585,20 +585,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7605;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 \"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\": \"ps1542\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9702;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\": \"ps4310\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605%3Brev%3D2?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1JTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702%3Brev%3D2?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -609,34 +609,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJV0=\"" + "\"AAAAAAAACZ0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8654f674-f6f1-4d1c-9fd0-7238f08600ae" + "ff0b56fb-7a72-4b4d-8305-b0b1db2ea2de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-correlation-request-id": [ - "1382adb0-80a6-49dc-82a5-82cb19dfe83c" + "5f1d07b4-16d0-4a2e-aeb7-46fc56c50d82" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215154Z:1382adb0-80a6-49dc-82a5-82cb19dfe83c" + "WESTUS:20200224T173444Z:5f1d07b4-16d0-4a2e-aeb7-46fc56c50d82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:53 GMT" + "Mon, 24 Feb 2020 17:34:43 GMT" ], "Content-Length": [ - "878" + "913" ], "Content-Type": [ "application/json; charset=utf-8" @@ -645,26 +645,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7605;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 \"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\": \"ps1542\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9702;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\": \"ps4310\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605%3Brev%3D2?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1JTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702%3Brev%3D2?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76c4484d-d36b-4f6a-bd32-2eb2befe86c6" + "3aa0e48d-afd3-4fbb-8770-1261039fd2ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -675,34 +675,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJV0=\"" + "\"AAAAAAAACZ0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de33b184-25a1-4816-a56c-0a2d646206fa" + "1034455f-b4e9-43fb-b9d9-cf2fa2a824de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11991" ], "x-ms-correlation-request-id": [ - "db5ce251-43be-4e1f-97d3-fc7cb3da12d2" + "bd9cf19f-51d7-4ffa-8200-670e138ea5f2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215154Z:db5ce251-43be-4e1f-97d3-fc7cb3da12d2" + "WESTUS:20200224T173444Z:bd9cf19f-51d7-4ffa-8200-670e138ea5f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:54 GMT" + "Mon, 24 Feb 2020 17:34:44 GMT" ], "Content-Length": [ - "878" + "913" ], "Content-Type": [ "application/json; charset=utf-8" @@ -711,26 +711,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7605;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 \"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\": \"ps1542\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9702;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\": \"ps4310\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605%3Brev%3D2/operations?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1JTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702%3Brev%3D2/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyJTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d249a205-b119-429a-bb77-f3347d8ac0b6" + "a449378f-fff4-452d-b4ed-e85c8373ba30" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -744,25 +744,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e61b08d3-e526-4796-aff6-aa90ca3ab441" + "4559c9c0-d332-47b1-85d0-0c7db2959adf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-correlation-request-id": [ - "0d146ae1-f291-48da-b21f-a1faeea64513" + "9ae68700-393b-437c-868e-c437fbed6ae3" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215154Z:0d146ae1-f291-48da-b21f-a1faeea64513" + "WESTUS:20200224T173444Z:9ae68700-393b-437c-868e-c437fbed6ae3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:54 GMT" + "Mon, 24 Feb 2020 17:34:44 GMT" ], "Content-Length": [ "16923" @@ -774,26 +774,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/ps7605;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5d9278b7787c9527240ff10a\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5e5408f26f56470f90c9a5c7\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702;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/ps7605/revisions?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1L3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/revisions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyL3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e6f5ea3-dd21-44f0-bad6-5d83946d542e" + "cda3a547-3d7b-41e1-aceb-6e0ac0a45dcb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -807,28 +807,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f9087f3-ac53-4ef2-b4a1-115f2787fd47" + "61bf9469-4d2c-4286-9ebe-3675136e0a4d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11990" ], "x-ms-correlation-request-id": [ - "bddd3aea-5944-434a-ba39-ee70cba44cb0" + "6a4bc9c4-3118-4f21-8910-7028fd9d28fa" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215155Z:bddd3aea-5944-434a-ba39-ee70cba44cb0" + "WESTUS:20200224T173445Z:6a4bc9c4-3118-4f21-8910-7028fd9d28fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:55 GMT" + "Mon, 24 Feb 2020 17:34:44 GMT" ], "Content-Length": [ - "499" + "498" ], "Content-Type": [ "application/json; charset=utf-8" @@ -837,26 +837,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/ps7605;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2019-09-30T21:51:22.613Z\",\r\n \"updatedDateTime\": \"2019-09-30T21:51:23.347Z\",\r\n \"description\": \"ps1542\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"apiId\": \"/apis/ps7605;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2019-09-30T21:50:47.907Z\",\r\n \"updatedDateTime\": \"2019-09-30T21:50:47.94Z\",\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 \"apiId\": \"/apis/ps9702;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2020-02-24T17:34:12.99Z\",\r\n \"updatedDateTime\": \"2020-02-24T17:34:13.85Z\",\r\n \"description\": \"ps4310\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"apiId\": \"/apis/ps9702;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2020-02-24T17:33:38.393Z\",\r\n \"updatedDateTime\": \"2020-02-24T17:33:38.423Z\",\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/ps7605/releases/ps5753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1L3JlbGVhc2VzL3BzNTc1Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/releases/ps6272?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyL3JlbGVhc2VzL3BzNjI3Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps7605;rev=2\",\r\n \"notes\": \"ps2645\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps9702;rev=2\",\r\n \"notes\": \"ps3494\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae9e1f41-7f7a-4ac8-b361-a12b480b3536" + "93ab0897-aa2e-4427-8548-7f792addcbb7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -873,31 +873,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJX8=\"" + "\"AAAAAAAACb8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1b441a9-c708-4ce3-9103-216cbfbce46a" + "470bf436-5ff1-4015-8492-9c48afd388aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "652cabd2-0c31-457c-bbb4-2fe5dc185b46" + "4b8a9764-88c4-400b-a58f-733419fd41af" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215156Z:652cabd2-0c31-457c-bbb4-2fe5dc185b46" + "WESTUS:20200224T173446Z:4b8a9764-88c4-400b-a58f-733419fd41af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:55 GMT" + "Mon, 24 Feb 2020 17:34:45 GMT" ], "Content-Length": [ "603" @@ -909,26 +909,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/releases/ps5753\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps5753\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605\",\r\n \"createdDateTime\": \"2019-09-30T21:51:55.6446613Z\",\r\n \"updatedDateTime\": \"2019-09-30T21:51:55.6446613Z\",\r\n \"notes\": \"ps2645\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/releases/ps6272\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6272\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702\",\r\n \"createdDateTime\": \"2020-02-24T17:34:45.7684062Z\",\r\n \"updatedDateTime\": \"2020-02-24T17:34:45.7684062Z\",\r\n \"notes\": \"ps3494\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/releases/ps5753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1L3JlbGVhc2VzL3BzNTc1Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/releases/ps6272?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyL3JlbGVhc2VzL3BzNjI3Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab363d36-991a-48a6-aa81-05789c0e8e6c" + "caa63330-4354-4aa8-8453-70ac47819516" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -939,34 +939,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJX8=\"" + "\"AAAAAAAACb8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a142d739-cee3-49ae-9f86-2684e1b55b52" + "3048d744-3f05-4e26-a2fe-0d378e73ad46" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11989" ], "x-ms-correlation-request-id": [ - "69dd1658-5270-42b0-a840-30c821c4f702" + "1711a9a2-2bfa-438b-9362-4d9b2222b870" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215156Z:69dd1658-5270-42b0-a840-30c821c4f702" + "WESTUS:20200224T173446Z:1711a9a2-2bfa-438b-9362-4d9b2222b870" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:55 GMT" + "Mon, 24 Feb 2020 17:34:45 GMT" ], "Content-Length": [ - "595" + "593" ], "Content-Type": [ "application/json; charset=utf-8" @@ -975,26 +975,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/releases/ps5753\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps5753\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605\",\r\n \"createdDateTime\": \"2019-09-30T21:51:55.643Z\",\r\n \"updatedDateTime\": \"2019-09-30T21:51:55.643Z\",\r\n \"notes\": \"ps2645\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/releases/ps6272\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6272\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702\",\r\n \"createdDateTime\": \"2020-02-24T17:34:45.77Z\",\r\n \"updatedDateTime\": \"2020-02-24T17:34:45.77Z\",\r\n \"notes\": \"ps3494\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/releases/ps5753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1L3JlbGVhc2VzL3BzNTc1Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/releases/ps6272?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyL3JlbGVhc2VzL3BzNjI3Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97862e91-fd6e-4625-b380-88f9cbceac17" + "9f0f82e4-e6b8-4424-b6c1-be6906fa57c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1005,34 +1005,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJYI=\"" + "\"AAAAAAAACcI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d625c2d-77a9-4a37-b637-27f6705340bb" + "400010c7-c418-4a77-b48a-b8ad3903943a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11988" ], "x-ms-correlation-request-id": [ - "0b56320c-3567-49da-b3af-a12e235b2baf" + "78fdf82a-e97f-47b1-af95-f310a444a977" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215156Z:0b56320c-3567-49da-b3af-a12e235b2baf" + "WESTUS:20200224T173446Z:78fdf82a-e97f-47b1-af95-f310a444a977" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:56 GMT" + "Mon, 24 Feb 2020 17:34:46 GMT" ], "Content-Length": [ - "595" + "593" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,17 +1041,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/releases/ps5753\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps5753\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605\",\r\n \"createdDateTime\": \"2019-09-30T21:51:55.643Z\",\r\n \"updatedDateTime\": \"2019-09-30T21:51:55.643Z\",\r\n \"notes\": \"ps7811\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/releases/ps6272\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6272\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702\",\r\n \"createdDateTime\": \"2020-02-24T17:34:45.77Z\",\r\n \"updatedDateTime\": \"2020-02-24T17:34:45.77Z\",\r\n \"notes\": \"ps3990\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/releases/ps5753?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1L3JlbGVhc2VzL3BzNTc1Mz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/releases/ps6272?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyL3JlbGVhc2VzL3BzNjI3Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605\",\r\n \"notes\": \"ps7811\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702\",\r\n \"notes\": \"ps3990\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0e8db13d-b2eb-48e4-b5b0-5e8b8f92cf54" + "3b93c843-dbb6-45a9-8f14-ab5cfbb271d8" ], "If-Match": [ "*" @@ -1060,10 +1060,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1083,25 +1083,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a5c1b02a-8fa6-4de2-880a-a3af218936a4" + "94d8f1c2-a503-4f47-8950-10803c7854d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-correlation-request-id": [ - "a7fb92de-e048-4d26-ab1b-374a130bff59" + "52b21dec-1b51-4293-8c83-d9b47464c1d5" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215156Z:a7fb92de-e048-4d26-ab1b-374a130bff59" + "WESTUS:20200224T173446Z:52b21dec-1b51-4293-8c83-d9b47464c1d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:56 GMT" + "Mon, 24 Feb 2020 17:34:46 GMT" ], "Expires": [ "-1" @@ -1111,22 +1111,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/releases?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1L3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/releases?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyL3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a387593-b6c0-4477-add1-2ed93fcb3290" + "f8a11a8b-cc41-4157-a1a6-d0aacac8e239" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1140,28 +1140,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa67793c-c2ec-4711-aea0-d02b9f8abd53" + "8e01f903-ee72-40f3-9593-3afcaa52adff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11987" ], "x-ms-correlation-request-id": [ - "013fcfd1-2be1-4ee1-9bc7-1ab3dda56042" + "d8455fb1-c960-4511-af67-303dfbe79f6a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215156Z:013fcfd1-2be1-4ee1-9bc7-1ab3dda56042" + "WESTUS:20200224T173447Z:d8455fb1-c960-4511-af67-303dfbe79f6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:56 GMT" + "Mon, 24 Feb 2020 17:34:46 GMT" ], "Content-Length": [ - "501" + "499" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1170,17 +1170,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605/releases/ps5753\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps5753\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2019-09-30T21:51:55.643Z\",\r\n \"updatedDateTime\": \"2019-09-30T21:51:55.643Z\",\r\n \"notes\": \"ps7811\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702/releases/ps6272\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6272\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2020-02-24T17:34:45.77Z\",\r\n \"updatedDateTime\": \"2020-02-24T17:34:45.77Z\",\r\n \"notes\": \"ps3990\"\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/ps7605%3Brev%3D1?deleteRevisions=false&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1JTNCcmV2JTNEMT9kZWxldGVSZXZpc2lvbnM9ZmFsc2UmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702%3Brev%3D1?deleteRevisions=false&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyJTNCcmV2JTNEMT9kZWxldGVSZXZpc2lvbnM9ZmFsc2UmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa80dbb8-04f6-4941-bee2-00810ad5b2da" + "00576034-0ed3-40dd-be3e-5b068b6de717" ], "If-Match": [ "*" @@ -1189,10 +1189,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1206,25 +1206,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28e486df-e38a-4ebe-9979-d429c308d107" + "a6b189df-abb0-4118-a786-7debe952cfe8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "32292d24-38ea-4290-adb5-6fc87f5cb33f" + "ab86c8d6-19a4-44d3-b136-81890596e0c5" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215157Z:32292d24-38ea-4290-adb5-6fc87f5cb33f" + "WESTUS:20200224T173447Z:ab86c8d6-19a4-44d3-b136-81890596e0c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:57 GMT" + "Mon, 24 Feb 2020 17:34:47 GMT" ], "Expires": [ "-1" @@ -1237,13 +1237,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7605?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NjA1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9702?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzAyP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c764dd0-9eec-44b0-8f8b-43a792028f16" + "447c0746-85f2-45ad-aed8-7c585fa99384" ], "If-Match": [ "*" @@ -1252,10 +1252,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1269,25 +1269,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1da912d-5055-470e-a578-59e9e8039e9b" + "9786fa44-b445-465a-b56a-8b565f3346d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "48400c14-b4b5-41f8-93cf-3e418bf7b6b5" + "a4774af6-ef06-4428-ac6a-d4998a34fa2e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215157Z:48400c14-b4b5-41f8-93cf-3e418bf7b6b5" + "WESTUS:20200224T173448Z:a4774af6-ef06-4428-ac6a-d4998a34fa2e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:51:57 GMT" + "Mon, 24 Feb 2020 17:34:47 GMT" ], "Expires": [ "-1" @@ -1302,11 +1302,11 @@ ], "Names": { "": [ - "ps7605", - "ps5753", - "ps1542", - "ps2645", - "ps7811" + "ps9702", + "ps6272", + "ps4310", + "ps3494", + "ps3990" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json index e8905ab7ac00..b203eba89108 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/ps7589?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1541\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2801\",\r\n \"query\": \"ps4256\"\r\n },\r\n \"displayName\": \"ps4123\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8151\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6366\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps4043\",\r\n \"query\": \"ps2637\"\r\n },\r\n \"displayName\": \"ps3365\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8237\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5225fe30-cca8-4007-b4b2-51104260dc56" + "4cbc06e2-a0e8-4d4c-9750-1d1919627986" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,34 +33,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1Q=\"" + "\"AAAAAAAAC/M=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75145590-6293-4b42-abe3-88bb9a1fbbd9" + "e62dc527-2985-4ca0-b8ef-153bd0d3d00a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "5b8537e4-b8f4-40d9-b7f2-9fb1faea1f2b" + "3cc561fe-de57-4dfc-b442-11f199b2cde0" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220236Z:5b8537e4-b8f4-40d9-b7f2-9fb1faea1f2b" + "WESTUS:20200224T174607Z:3cc561fe-de57-4dfc-b442-11f199b2cde0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:36 GMT" + "Mon, 24 Feb 2020 17:46:06 GMT" ], "Content-Length": [ - "704" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,20 +69,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7589\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7589\",\r\n \"properties\": {\r\n \"displayName\": \"ps4123\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1541\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8151\",\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\": \"ps2801\",\r\n \"query\": \"ps4256\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3779\",\r\n \"properties\": {\r\n \"displayName\": \"ps3365\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6366\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8237\",\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\": \"ps4043\",\r\n \"query\": \"ps2637\"\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/ps7589?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -93,34 +93,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1Q=\"" + "\"AAAAAAAAC/M=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "491ca4eb-761d-46a5-99bc-e7a3abbfdf9f" + "0d1a428f-78f0-4663-9ba0-9b121cfb267d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "07e083ec-6f28-42f8-bfe1-ded4a765e765" + "d92e6f48-206e-45e3-9c0c-802fb92ed163" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220306Z:07e083ec-6f28-42f8-bfe1-ded4a765e765" + "WESTUS:20200224T174637Z:d92e6f48-206e-45e3-9c0c-802fb92ed163" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:03:06 GMT" + "Mon, 24 Feb 2020 17:46:37 GMT" ], "Content-Length": [ - "704" + "739" ], "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/ps7589\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7589\",\r\n \"properties\": {\r\n \"displayName\": \"ps4123\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1541\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8151\",\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\": \"ps2801\",\r\n \"query\": \"ps4256\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3779\",\r\n \"properties\": {\r\n \"displayName\": \"ps3365\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6366\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8237\",\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\": \"ps4043\",\r\n \"query\": \"ps2637\"\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/ps7589/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "290e2069-da38-4a86-aea8-0cd066d18e3c" + "88ba94e3-ae0f-4b4f-ae78-0a568f048197" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -162,25 +162,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f6af983-c6a2-44cf-8b06-e9573b658036" + "9bda72fb-d01a-46c3-8de5-2a6dcbad28d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "7ffd05d8-05b9-4ce4-b4ab-6545a707eefb" + "810137aa-961d-4e18-8162-5ec35487a3fa" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220307Z:7ffd05d8-05b9-4ce4-b4ab-6545a707eefb" + "WESTUS:20200224T174637Z:810137aa-961d-4e18-8162-5ec35487a3fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:03:06 GMT" + "Mon, 24 Feb 2020 17:46:37 GMT" ], "Content-Length": [ "34" @@ -196,22 +196,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7589/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6fe9212-c202-4d51-a68b-c268a2c18d8c" + "6ae809ae-8317-4c78-8c0b-fbd4c872aed5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -225,25 +225,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "34d10422-46a4-4832-a948-48b8a7327d86" + "da4d8fc2-3229-43b6-8c07-5daa0dc62eb9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-correlation-request-id": [ - "a2a56722-908c-4934-843a-655afc5b630e" + "f0bd3348-2e03-4c73-972b-514b8370bff2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220308Z:a2a56722-908c-4934-843a-655afc5b630e" + "WESTUS:20200224T174638Z:f0bd3348-2e03-4c73-972b-514b8370bff2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:03:07 GMT" + "Mon, 24 Feb 2020 17:46:38 GMT" ], "Content-Length": [ "2007" @@ -255,26 +255,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/ps7589/schemas/ps4179\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4179\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas/ps3751\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3751\",\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/ps7589/schemas/ps4179?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5L3NjaGVtYXMvcHM0MTc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas/ps3751?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5L3NjaGVtYXMvcHMzNzUxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "d863d72f-3c87-413d-8615-5b878e76d6e4" + "dba9851d-4a82-45c9-9dbb-60f7c4ef4958" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -291,31 +291,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1g=\"" + "\"AAAAAAAAC/c=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "884bbfd9-d558-4e24-9998-c65a83a002f6" + "f1910137-e9f2-45d9-9da1-fe6c42986e36" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "5ffb232d-7f2f-45f6-a444-a297bc5ae098" + "67f0eca0-0638-4fa7-a868-152a754b870f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220307Z:5ffb232d-7f2f-45f6-a444-a297bc5ae098" + "WESTUS:20200224T174638Z:67f0eca0-0638-4fa7-a868-152a754b870f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:03:06 GMT" + "Mon, 24 Feb 2020 17:46:38 GMT" ], "Content-Length": [ "1699" @@ -327,17 +327,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7589/schemas/ps4179\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4179\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas/ps3751\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3751\",\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/ps7589/schemas/ps4179?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5L3NjaGVtYXMvcHM0MTc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas/ps3751?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5L3NjaGVtYXMvcHMzNzUxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\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}", "RequestHeaders": { "x-ms-client-request-id": [ - "96f724a8-3779-4595-bd5f-ddbbcbb23d7b" + "ecd38900-4480-4bb2-9521-27628fcb0a16" ], "If-Match": [ "*" @@ -346,10 +346,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,31 +366,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1k=\"" + "\"AAAAAAAAC/g=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f166d57c-fa30-40ff-ba10-c97f6b40a75a" + "0d89c3dd-cbed-48fc-b8f1-117a4004d6c6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "5771c355-3ea7-46ef-a0b3-6f7981ce80ee" + "7dc9bd6d-4dc6-4611-909f-ef054399a0a5" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220308Z:5771c355-3ea7-46ef-a0b3-6f7981ce80ee" + "WESTUS:20200224T174639Z:7dc9bd6d-4dc6-4611-909f-ef054399a0a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:03:07 GMT" + "Mon, 24 Feb 2020 17:46:38 GMT" ], "Content-Length": [ "1666" @@ -402,26 +402,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7589/schemas/ps4179\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4179\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas/ps3751\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3751\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7589/schemas/ps4179?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5L3NjaGVtYXMvcHM0MTc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas/ps3751?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5L3NjaGVtYXMvcHMzNzUxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b05234af-c12f-4fdd-be75-82ab9a9b2fa8" + "f38c7633-96e4-4c10-afdc-c7c21538b067" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -432,31 +432,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1g=\"" + "\"AAAAAAAAC/c=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f442d07-1484-46f3-afa7-dad245fd0384" + "6e088043-ef37-4be6-8e18-dcb02e60a534" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "3150d505-b90b-4f5e-9582-28dd4685c982" + "66426afd-d683-46b7-9ead-e6758c7fde81" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220307Z:3150d505-b90b-4f5e-9582-28dd4685c982" + "WESTUS:20200224T174638Z:66426afd-d683-46b7-9ead-e6758c7fde81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:03:07 GMT" + "Mon, 24 Feb 2020 17:46:38 GMT" ], "Content-Length": [ "1699" @@ -468,17 +468,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7589/schemas/ps4179\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4179\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas/ps3751\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3751\",\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/ps7589/schemas/ps4179?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5L3NjaGVtYXMvcHM0MTc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas/ps3751?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5L3NjaGVtYXMvcHMzNzUxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5929464f-cc5f-44e4-8f5e-9c825ed5827f" + "8d743bf7-0508-4053-88d8-054dad559f52" ], "If-Match": [ "*" @@ -487,10 +487,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -504,25 +504,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f233f96a-2b8c-4f0d-bf58-e48dfd816993" + "6ae028b4-bb26-4aab-ace8-a61246921af2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "053c7c25-3ba0-491e-86d7-9355746d4e4f" + "f47d075b-4cf4-470a-89b8-59a691add716" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220309Z:053c7c25-3ba0-491e-86d7-9355746d4e4f" + "WESTUS:20200224T174639Z:f47d075b-4cf4-470a-89b8-59a691add716" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:03:08 GMT" + "Mon, 24 Feb 2020 17:46:39 GMT" ], "Expires": [ "-1" @@ -535,13 +535,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7589/schemas/ps4179?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5L3NjaGVtYXMvcHM0MTc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779/schemas/ps3751?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5L3NjaGVtYXMvcHMzNzUxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c1e3952-24c5-46f8-be96-2f272f4b1f3f" + "f77f066f-46a4-4ee6-841e-53954851828e" ], "If-Match": [ "*" @@ -550,10 +550,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -567,25 +567,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b64cc83-a44c-465c-abcf-1f0de9926cf9" + "98e985ec-5ba6-45e5-8239-f5f9fbcc3507" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14998" ], "x-ms-correlation-request-id": [ - "01df3ad2-295c-42e0-b7a9-d75bd1dea7d3" + "fbf96cd5-849c-489a-8888-4443e8173759" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220309Z:01df3ad2-295c-42e0-b7a9-d75bd1dea7d3" + "WESTUS:20200224T174639Z:fbf96cd5-849c-489a-8888-4443e8173759" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:03:08 GMT" + "Mon, 24 Feb 2020 17:46:39 GMT" ], "Expires": [ "-1" @@ -595,13 +595,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7589?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTg5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3779?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzc5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93ef21ed-62bc-4267-848c-93f45986e77a" + "f4f5a475-a8b9-4a92-ad8e-9ed0f52d6e55" ], "If-Match": [ "*" @@ -610,10 +610,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -627,25 +627,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3d364e7-977c-4bff-97ce-93728ed7eeb8" + "9140e2d9-6c83-4449-94d8-2940832fec26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14997" ], "x-ms-correlation-request-id": [ - "bcee251f-817f-472e-b05d-adcc100fa1ab" + "0a05c3b0-6bad-42d8-bf7c-f3b0b2feeadd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220309Z:bcee251f-817f-472e-b05d-adcc100fa1ab" + "WESTUS:20200224T174639Z:0a05c3b0-6bad-42d8-bf7c-f3b0b2feeadd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:03:08 GMT" + "Mon, 24 Feb 2020 17:46:39 GMT" ], "Expires": [ "-1" @@ -660,13 +660,13 @@ ], "Names": { "": [ - "ps7589", - "ps4179", - "ps4123", - "ps1541", - "ps8151", - "ps2801", - "ps4256" + "ps3779", + "ps3751", + "ps3365", + "ps6366", + "ps8237", + "ps4043", + "ps2637" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json index eee388ae6038..d05c7f7260d6 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/ps2056?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MzM4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "6aaf4677-00e6-4e72-bf59-9b2e3023c239" + "8037cd4c-b856-484a-93d6-0d9f2c7d2b71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2056?api-version=2019-01-01&asyncId=5d927901787c9527240ff115&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338?api-version=2019-01-01&asyncId=5e54093f6f56470f90c9a5d2&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a33c362-ba0c-422e-909e-8f2cffa5f95f" + "efea457c-a84d-4bcb-9740-bd9f060b88a7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0a3c2796-1a51-4c76-b7f5-e03c46786630" + "e2442f8d-3492-4845-9858-0e716ae7935b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215201Z:0a3c2796-1a51-4c76-b7f5-e03c46786630" + "WESTUS:20200224T173455Z:e2442f8d-3492-4845-9858-0e716ae7935b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:00 GMT" + "Mon, 24 Feb 2020 17:34:54 GMT" ], "Expires": [ "-1" @@ -70,16 +70,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2056?api-version=2019-01-01&asyncId=5d927901787c9527240ff115&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZDkyNzkwMTc4N2M5NTI3MjQwZmYxMTUmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338?api-version=2019-01-01&asyncId=5e54093f6f56470f90c9a5d2&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MzM4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MDkzZjZmNTY0NzBmOTBjOWE1ZDImYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,34 +90,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJYo=\"" + "\"AAAAAAAACco=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69a4f38b-6be5-45fa-9cbf-69209ba19b29" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e242e93c-9ff6-4fbf-addb-5f56e7a76374" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "e321451a-ce1f-47f5-ab55-432b756ab5e4" + "22ff35ec-dce0-4796-9a42-5d0f5146a30f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215231Z:e321451a-ce1f-47f5-ab55-432b756ab5e4" + "WESTUS:20200224T173525Z:22ff35ec-dce0-4796-9a42-5d0f5146a30f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:31 GMT" + "Mon, 24 Feb 2020 17:35:24 GMT" ], "Content-Length": [ - "751" + "786" ], "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/ps2056\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2056\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7338\",\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/ps2056?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MzM4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c13b2561-3aad-4ee4-973d-438a5fc59800" + "3f1784c6-1647-41d5-9e5a-34288f544cae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJYo=\"" + "\"AAAAAAAACco=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c1cef59-05a9-4642-a1ac-9465ed41edcd" + "3a9a85f2-76c8-4723-b792-30aef6884e55" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,19 +171,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "3b9b7e61-5bbd-4ef0-9af2-0c25d8f1d266" + "88aabdf8-77d7-4dd5-a8e6-f545d60a7cb4" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215231Z:3b9b7e61-5bbd-4ef0-9af2-0c25d8f1d266" + "WESTUS:20200224T173525Z:88aabdf8-77d7-4dd5-a8e6-f545d60a7cb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:31 GMT" + "Mon, 24 Feb 2020 17:35:24 GMT" ], "Content-Length": [ - "751" + "786" ], "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/apis/ps2056\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2056\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7338\",\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/ps2056/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMDU2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MzM4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1681da38-094f-4610-beb9-c1c4dd7a24a3" + "2721ac17-6cb8-45c5-8e80-8c4abf1ff1ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f367350a-be19-4e6d-b274-eede6431ca30" + "f47a8e16-0ade-433c-b08f-9530d986ce05" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -234,16 +234,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "090944e0-55c4-4b0d-9264-e315910ef2de" + "41e745d4-ad3a-494a-a636-76ebb699246b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215232Z:090944e0-55c4-4b0d-9264-e315910ef2de" + "WESTUS:20200224T173526Z:41e745d4-ad3a-494a-a636-76ebb699246b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:31 GMT" + "Mon, 24 Feb 2020 17:35:25 GMT" ], "Content-Length": [ "6975" @@ -255,26 +255,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/ps2056/schemas/84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas/29fd975c-05be-49d6-bd99-9d115acbf80f\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"29fd975c-05be-49d6-bd99-9d115acbf80f\",\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/ps2056/schemas?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMDU2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MzM4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31ebca0b-c682-4880-8a2c-b979d528162c" + "dbfd6b9c-29e2-4c74-a8ad-e34c0e947fd7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -288,7 +288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39164b34-8b9c-458f-bbb5-980c630813db" + "005c5a51-4d52-471e-ab66-56653a2bd89d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -297,16 +297,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "cdf48325-0125-42f3-9b38-8a0344a01afd" + "439693b8-c829-4f90-a8b0-86d7fb0766a3" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215234Z:cdf48325-0125-42f3-9b38-8a0344a01afd" + "WESTUS:20200224T173528Z:439693b8-c829-4f90-a8b0-86d7fb0766a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:34 GMT" + "Mon, 24 Feb 2020 17:35:28 GMT" ], "Content-Length": [ "1960" @@ -318,26 +318,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/ps2056/schemas/84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas/29fd975c-05be-49d6-bd99-9d115acbf80f\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"29fd975c-05be-49d6-bd99-9d115acbf80f\",\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/ps2056/schemas/84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMDU2L3NjaGVtYXMvODRmMGU5Y2MtMWExYy00MGZhLTk1MDQtZmZhNTU0NGZmYmIxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas/29fd975c-05be-49d6-bd99-9d115acbf80f?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MzM4L3NjaGVtYXMvMjlmZDk3NWMtMDViZS00OWQ2LWJkOTktOWQxMTVhY2JmODBmP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "cd664224-5b1d-42b2-8278-9f0405b1b5e6" + "4fef9e37-1f32-4645-b20b-f7b7c7820e6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -354,13 +354,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJZk=\"" + "\"AAAAAAAACdg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "736c3d8e-019a-4916-a87f-77852be210d1" + "51526610-20e9-4daf-9c05-d547bb5a1011" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,16 +369,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "e8303163-3bf8-4009-af59-f566a76bea59" + "b0968dd4-7738-4011-9331-7b32c05d97ca" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215233Z:e8303163-3bf8-4009-af59-f566a76bea59" + "WESTUS:20200224T173528Z:b0968dd4-7738-4011-9331-7b32c05d97ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:33 GMT" + "Mon, 24 Feb 2020 17:35:28 GMT" ], "Content-Length": [ "1876" @@ -390,17 +390,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2056/schemas/84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas/29fd975c-05be-49d6-bd99-9d115acbf80f\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"29fd975c-05be-49d6-bd99-9d115acbf80f\",\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/ps2056/schemas/84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMDU2L3NjaGVtYXMvODRmMGU5Y2MtMWExYy00MGZhLTk1MDQtZmZhNTU0NGZmYmIxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas/29fd975c-05be-49d6-bd99-9d115acbf80f?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MzM4L3NjaGVtYXMvMjlmZDk3NWMtMDViZS00OWQ2LWJkOTktOWQxMTVhY2JmODBmP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "accdb4ce-e388-4e0b-b38a-fb2d80f10b5a" + "8f444a3d-5440-42ee-94ed-a4314d8641b9" ], "If-Match": [ "*" @@ -409,10 +409,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -429,13 +429,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJZo=\"" + "\"AAAAAAAACdk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74313473-ce6e-4109-8b68-95df662e6daa" + "a12e9b04-75dc-48cd-b7be-9d6bb7a65ea0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,16 +444,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "923f07eb-c73b-4fed-b8b0-b08848e39a8b" + "49be5e8f-9027-477f-b3ca-2f0ea03d2a23" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215234Z:923f07eb-c73b-4fed-b8b0-b08848e39a8b" + "WESTUS:20200224T173528Z:49be5e8f-9027-477f-b3ca-2f0ea03d2a23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:34 GMT" + "Mon, 24 Feb 2020 17:35:28 GMT" ], "Content-Length": [ "1855" @@ -465,26 +465,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2056/schemas/84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas/29fd975c-05be-49d6-bd99-9d115acbf80f\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"29fd975c-05be-49d6-bd99-9d115acbf80f\",\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/ps2056/schemas/84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMDU2L3NjaGVtYXMvODRmMGU5Y2MtMWExYy00MGZhLTk1MDQtZmZhNTU0NGZmYmIxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas/29fd975c-05be-49d6-bd99-9d115acbf80f?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MzM4L3NjaGVtYXMvMjlmZDk3NWMtMDViZS00OWQ2LWJkOTktOWQxMTVhY2JmODBmP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcbc9ce9-e50a-4440-9083-c8a7ec08861c" + "3d87e255-eeee-4380-9699-e4a6297402cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -495,13 +495,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJZk=\"" + "\"AAAAAAAACdg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8754edc2-5108-4601-82a4-e97e1c0e10e3" + "8367e1fb-8363-42a2-8979-eb717b6d7b4d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -510,16 +510,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "f8cb706d-2eb0-4a47-a629-357426bd6891" + "9d4f5eb8-1135-47a3-821e-3baacd3e72f8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215234Z:f8cb706d-2eb0-4a47-a629-357426bd6891" + "WESTUS:20200224T173528Z:9d4f5eb8-1135-47a3-821e-3baacd3e72f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:33 GMT" + "Mon, 24 Feb 2020 17:35:28 GMT" ], "Content-Length": [ "1876" @@ -531,17 +531,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2056/schemas/84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"84f0e9cc-1a1c-40fa-9504-ffa5544ffbb1\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338/schemas/29fd975c-05be-49d6-bd99-9d115acbf80f\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"29fd975c-05be-49d6-bd99-9d115acbf80f\",\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/ps2056?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMDU2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7338?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3MzM4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf67d06c-f020-4087-954c-2549ecfd7bc2" + "898a44f9-fdba-4ae0-8cd8-7a41c8a8a027" ], "If-Match": [ "*" @@ -550,10 +550,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -567,7 +567,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ebdfbaa-617b-46f7-92b0-7c39dd4ee3af" + "4b8396cb-9e25-4edb-a40d-5d31990a64d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -576,16 +576,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "e9cbeb3b-1cd9-445a-b700-ccf093bc846a" + "dfd13daf-a397-44e9-b601-19886c8ed35d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215235Z:e9cbeb3b-1cd9-445a-b700-ccf093bc846a" + "WESTUS:20200224T173528Z:dfd13daf-a397-44e9-b601-19886c8ed35d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:35 GMT" + "Mon, 24 Feb 2020 17:35:28 GMT" ], "Expires": [ "-1" @@ -600,8 +600,8 @@ ], "Names": { "": [ - "ps2056", - "ps9687" + "ps7338", + "ps7857" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json index 2a90a5828020..7b4961668a5f 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bae9485-c40f-414b-99ae-9e3a2cd5b23e" + "59685db8-85eb-4e58-97a3-2249eee3d460" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "209119e3-2522-46eb-847f-9cfa93479fca" + "2d394947-bd7d-4f0a-95e7-c92cdfd871ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "e8f2e343-7bec-48b8-b430-bb84667e02cb" + "04d83aa5-9355-43bb-9cc4-32d775c5c450" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214740Z:e8f2e343-7bec-48b8-b430-bb84667e02cb" + "WESTUS:20200224T174329Z:04d83aa5-9355-43bb-9cc4-32d775c5c450" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:47:40 GMT" + "Mon, 24 Feb 2020 17:43:28 GMT" ], "Content-Length": [ "34" @@ -64,28 +64,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7162?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzE2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2144\",\r\n \"versionQueryName\": \"ps584\",\r\n \"displayName\": \"ps7020\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8883\",\r\n \"versionQueryName\": \"ps8742\",\r\n \"displayName\": \"ps8889\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9107ded7-4988-4070-809c-155e67b95714" + "9f2677da-9728-4b30-b666-95406027e545" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "155" + "156" ] }, "ResponseHeaders": { @@ -96,34 +96,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJH0=\"" + "\"AAAAAAAAC3o=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32bc0dae-22c1-44de-b589-7916fdf78f34" + "596286dc-510f-4bd3-8652-6a9f575f5b99" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "d848fa9f-d7e9-44d1-aa69-dc4aeb60622a" + "b2fcfa54-d5b6-4336-bb1f-03bbf0ddfe61" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214741Z:d848fa9f-d7e9-44d1-aa69-dc4aeb60622a" + "WESTUS:20200224T174329Z:b2fcfa54-d5b6-4336-bb1f-03bbf0ddfe61" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:47:41 GMT" + "Mon, 24 Feb 2020 17:43:29 GMT" ], "Content-Length": [ - "448" + "447" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,17 +132,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7162\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7162\",\r\n \"properties\": {\r\n \"displayName\": \"ps7020\",\r\n \"description\": \"ps2144\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps584\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps501\",\r\n \"properties\": {\r\n \"displayName\": \"ps8889\",\r\n \"description\": \"ps8883\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8742\",\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/ps7162?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzE2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2144\",\r\n \"versionHeaderName\": \"ps590\",\r\n \"displayName\": \"ps7020\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8883\",\r\n \"versionHeaderName\": \"ps8378\",\r\n \"displayName\": \"ps8889\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88bb0bdb-2e05-4d1d-85f9-f94eeb739797" + "56e0fa01-1be9-40d1-8987-68b0b7bc915d" ], "If-Match": [ "*" @@ -151,16 +151,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "157" + "158" ] }, "ResponseHeaders": { @@ -171,34 +171,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJIA=\"" + "\"AAAAAAAAC30=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ae8c9bd-2e88-464e-a149-1e248d60712e" + "d47d6d3b-3b7b-47f8-83ef-2f2ace63f11b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "7c63f344-eeb9-4831-8555-82a306dc9bd1" + "51c00dbf-d68f-42e1-a7db-4e5e9e6ebcb5" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214741Z:7c63f344-eeb9-4831-8555-82a306dc9bd1" + "WESTUS:20200224T174330Z:51c00dbf-d68f-42e1-a7db-4e5e9e6ebcb5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:47:41 GMT" + "Mon, 24 Feb 2020 17:43:29 GMT" ], "Content-Length": [ - "449" + "448" ], "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/ps7162\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7162\",\r\n \"properties\": {\r\n \"displayName\": \"ps7020\",\r\n \"description\": \"ps2144\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps590\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps501\",\r\n \"properties\": {\r\n \"displayName\": \"ps8889\",\r\n \"description\": \"ps8883\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps8378\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7162?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzE2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46ea598c-dfe3-494b-aa05-8e017c0997ae" + "695d38b7-fd72-410f-8d93-66f5b2f428ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -237,34 +237,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJH0=\"" + "\"AAAAAAAAC3o=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9dae60cf-4737-4c55-994b-31f7cadd5418" + "8b1401f9-f100-4c44-8f5f-8a78265354ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "924a60a6-0c63-4889-a4cf-7a9015cbb1c2" + "1f1c38db-e168-4d07-b41f-836be023696c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214741Z:924a60a6-0c63-4889-a4cf-7a9015cbb1c2" + "WESTUS:20200224T174329Z:1f1c38db-e168-4d07-b41f-836be023696c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:47:41 GMT" + "Mon, 24 Feb 2020 17:43:29 GMT" ], "Content-Length": [ - "448" + "447" ], "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/ps7162\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7162\",\r\n \"properties\": {\r\n \"displayName\": \"ps7020\",\r\n \"description\": \"ps2144\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps584\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps501\",\r\n \"properties\": {\r\n \"displayName\": \"ps8889\",\r\n \"description\": \"ps8883\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8742\",\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/ps7162?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzE2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "301c880c-e9e2-4d7a-89cc-81f918e5ddd6" + "0d2e719e-6a06-4127-9e7c-4b01cdba8b49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -303,34 +303,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJIA=\"" + "\"AAAAAAAAC30=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a99b6d0-b9b3-4282-9b68-326b6c306a94" + "fe1911f7-dc86-4b1f-bb84-ef23966c7cc2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "3a296271-a3f6-48a7-954b-2b96672c717b" + "b3ef55fb-a667-4419-8449-a0d712a1f660" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214742Z:3a296271-a3f6-48a7-954b-2b96672c717b" + "WESTUS:20200224T174330Z:b3ef55fb-a667-4419-8449-a0d712a1f660" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:47:41 GMT" + "Mon, 24 Feb 2020 17:43:29 GMT" ], "Content-Length": [ - "449" + "448" ], "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/ps7162\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7162\",\r\n \"properties\": {\r\n \"displayName\": \"ps7020\",\r\n \"description\": \"ps2144\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps590\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps501\",\r\n \"properties\": {\r\n \"displayName\": \"ps8889\",\r\n \"description\": \"ps8883\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps8378\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps998?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5OTg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2703?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzAzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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": [ - "f5907bb0-16b8-464e-9010-15236e847187" + "b1f96288-4b90-4dc5-af89-3e5d16ea9ea8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,31 +375,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps998?api-version=2019-01-01&asyncId=5d9277fe787c9527240ff0ef&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2703?api-version=2019-01-01&asyncId=5e540b426f56470f90c9a665&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c36e82e3-b2e5-4e1d-b819-da8f4bfb7cff" + "7839e401-b937-43b0-a18e-6661a1ae6829" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "9d54210e-de22-44c6-8625-7bd0a9a8832a" + "e0ff9c0b-5f0b-42a7-9a74-b2b49e9f52ec" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214742Z:9d54210e-de22-44c6-8625-7bd0a9a8832a" + "WESTUS:20200224T174330Z:e0ff9c0b-5f0b-42a7-9a74-b2b49e9f52ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:47:42 GMT" + "Mon, 24 Feb 2020 17:43:30 GMT" ], "Expires": [ "-1" @@ -412,16 +412,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps998?api-version=2019-01-01&asyncId=5d9277fe787c9527240ff0ef&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5OTg/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVkOTI3N2ZlNzg3Yzk1MjcyNDBmZjBlZiZhc3luY0NvZGU9MjAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2703?api-version=2019-01-01&asyncId=5e540b426f56470f90c9a665&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzAzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MGI0MjZmNTY0NzBmOTBjOWE2NjUmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -432,34 +432,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJIQ=\"" + "\"AAAAAAAAC4A=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91fdc523-365c-4934-9e78-b3acd7f8f2c3" + "f93827fe-e555-45fc-a1f3-c27ab2e9a9e2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "0cd5ff52-3909-4124-b8f8-19e62a6391c5" + "224a30da-abfc-4dbf-92f2-f85df90523af" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214812Z:0cd5ff52-3909-4124-b8f8-19e62a6391c5" + "WESTUS:20200224T174400Z:224a30da-abfc-4dbf-92f2-f85df90523af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:48:11 GMT" + "Mon, 24 Feb 2020 17:43:59 GMT" ], "Content-Length": [ - "847" + "884" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,26 +468,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps998\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps998\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2703\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2703\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps998?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5OTg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2703?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzAzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04a9b323-1c60-45b2-aa2e-0b398a11cf64" + "a7f0cb80-6bf5-491a-9e12-4f3c6ee67368" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -498,34 +498,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJIQ=\"" + "\"AAAAAAAAC4A=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a68f3fec-74e8-43a5-ab4f-874cdca9bf5e" + "98bcd319-9026-4e3d-beba-1a55336086cb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "58b8acd5-954c-4aae-8bbd-5e331243bcd3" + "8bf2acde-354a-4ee2-a93a-49c0827142e3" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214812Z:58b8acd5-954c-4aae-8bbd-5e331243bcd3" + "WESTUS:20200224T174400Z:8bf2acde-354a-4ee2-a93a-49c0827142e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:48:12 GMT" + "Mon, 24 Feb 2020 17:44:00 GMT" ], "Content-Length": [ - "847" + "884" ], "Content-Type": [ "application/json; charset=utf-8" @@ -534,17 +534,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps998\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps998\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2703\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2703\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps998%3Brev%3D1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5OTglM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2703%3Brev%3D1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzAzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "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\": \"ps2144\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7162\",\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\": \"ps8883\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501\",\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": [ - "1e497672-010f-4cc2-8a2a-46ab596e7dd0" + "31988b78-5618-4c95-aa9b-f0d026b18a88" ], "If-Match": [ "*" @@ -553,16 +553,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "802" + "836" ] }, "ResponseHeaders": { @@ -573,34 +573,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJKE=\"" + "\"AAAAAAAAC50=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7b12baa-82b4-4c54-96c6-107e9aa08428" + "292e5ebd-c5de-47b2-90ae-4faccbd46766" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "f69d9d56-24e5-4bc8-95d4-0f2dacce1a89" + "14d8a137-42b9-4512-9c06-c617857c62ff" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214813Z:f69d9d56-24e5-4bc8-95d4-0f2dacce1a89" + "WESTUS:20200224T174401Z:14d8a137-42b9-4512-9c06-c617857c62ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:48:12 GMT" + "Mon, 24 Feb 2020 17:44:00 GMT" ], "Content-Length": [ - "1484" + "1520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,17 +609,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps998\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps998\",\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 \"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\": \"ps2144\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7162\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7162\",\r\n \"name\": \"ps7020\",\r\n \"description\": \"ps2144\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps590\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2703\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2703\",\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\": \"ps8883\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501\",\r\n \"name\": \"ps8889\",\r\n \"description\": \"ps8883\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps8378\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps998?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5OTg/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2703?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzAzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15eea607-3cee-4073-8d7e-ebb0516c1f22" + "ea8807c6-6bb5-4c4e-b0e0-de6d6d8eee08" ], "If-Match": [ "*" @@ -628,10 +628,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -645,7 +645,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c87c88e5-3e1f-47b2-bb45-d9d4f38c529d" + "9681b90d-5f1a-40ea-b2b8-47a7c09d2737" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -654,16 +654,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "a796b0b0-4096-415d-be15-335a030a1ba9" + "b0b20754-cbc1-446e-8ab1-a045e680703b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214814Z:a796b0b0-4096-415d-be15-335a030a1ba9" + "WESTUS:20200224T174401Z:b0b20754-cbc1-446e-8ab1-a045e680703b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:48:13 GMT" + "Mon, 24 Feb 2020 17:44:00 GMT" ], "Expires": [ "-1" @@ -676,13 +676,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7162?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzE2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps501?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bebd03b7-9bbe-49f7-adf4-1b496a1291af" + "458e44b0-51e3-463e-8f05-ac4f70e87310" ], "If-Match": [ "*" @@ -691,10 +691,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -708,7 +708,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7393a665-588d-4966-9875-54c268986f66" + "2c502b29-b911-4311-a248-a1327c0c1ac7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -717,16 +717,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "d20933b8-6695-44d9-ac31-a735bc8f9d5c" + "e306d56c-1042-470b-8c96-7d51282d2c6e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T214814Z:d20933b8-6695-44d9-ac31-a735bc8f9d5c" + "WESTUS:20200224T174401Z:e306d56c-1042-470b-8c96-7d51282d2c6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:48:13 GMT" + "Mon, 24 Feb 2020 17:44:00 GMT" ], "Expires": [ "-1" @@ -738,12 +738,12 @@ ], "Names": { "": [ - "ps998", - "ps7162", - "ps7020", - "ps584", - "ps2144", - "ps590" + "ps2703", + "ps501", + "ps8889", + "ps8742", + "ps8883", + "ps8378" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json index d277c85abbee..169d280c7fd6 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0d871ab-c08d-4f41-9f2b-01bddccf52ac" + "f072a834-8e7a-428d-a25a-078475c43afa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29e182e3-38ca-43bc-b33b-988796ca41fc" + "7726abce-7868-44d0-b2b1-d708d158a730" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "8c63565f-6fbb-4967-9bf0-57d019a1380b" + "47942e66-1156-4b62-a50d-e05eb9d2567c" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204327Z:8c63565f-6fbb-4967-9bf0-57d019a1380b" + "WESTUS:20200224T174439Z:47942e66-1156-4b62-a50d-e05eb9d2567c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:26 GMT" + "Mon, 24 Feb 2020 17:44:38 GMT" ], "Content-Length": [ "34" @@ -64,28 +64,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1174?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTE3ND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7660?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzY2MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6321\",\r\n \"versionQueryName\": \"ps5002\",\r\n \"displayName\": \"ps1335\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps707\",\r\n \"versionQueryName\": \"ps9248\",\r\n \"displayName\": \"ps6821\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "03485edf-c879-4802-b383-9551d6e885e3" + "07eb327e-ebcc-4df8-bb7d-0c9d74593a2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "156" + "155" ] }, "ResponseHeaders": { @@ -96,34 +96,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANJ0=\"" + "\"AAAAAAAAC68=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f48e018-6ded-4ea1-abaf-eb21d884d223" + "bb29328f-3152-40d7-b274-0fa3b43a7a14" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "f0a4dbce-6264-4ac7-9677-d91fa1e8a57e" + "e648cba2-4fbc-4491-bfa6-26607579606a" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204327Z:f0a4dbce-6264-4ac7-9677-d91fa1e8a57e" + "WESTUS:20200224T174440Z:e648cba2-4fbc-4491-bfa6-26607579606a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:27 GMT" + "Mon, 24 Feb 2020 17:44:39 GMT" ], "Content-Length": [ - "449" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,17 +132,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1174\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1174\",\r\n \"properties\": {\r\n \"displayName\": \"ps1335\",\r\n \"description\": \"ps6321\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps5002\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7660\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7660\",\r\n \"properties\": {\r\n \"displayName\": \"ps6821\",\r\n \"description\": \"ps707\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps9248\",\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/ps1174?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTE3ND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7660?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzY2MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6321\",\r\n \"versionHeaderName\": \"ps746\",\r\n \"displayName\": \"ps1335\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps707\",\r\n \"versionHeaderName\": \"ps8795\",\r\n \"displayName\": \"ps6821\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "16ebe5ac-0849-42a1-9d97-5102a81dd212" + "168c1bc5-d152-4490-8f0e-0f66bf1ee890" ], "If-Match": [ "*" @@ -151,10 +151,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -171,31 +171,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANKA=\"" + "\"AAAAAAAAC7I=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00abffed-86c0-43ee-8d02-11d89ad37366" + "1c82b688-19f4-49ca-af92-9b5e9722e306" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "8f426b2a-da0f-4bf8-9790-e787da8e6370" + "7d59419a-fb22-4e26-875b-305ae2e583f7" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204329Z:8f426b2a-da0f-4bf8-9790-e787da8e6370" + "WESTUS:20200224T174440Z:7d59419a-fb22-4e26-875b-305ae2e583f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:28 GMT" + "Mon, 24 Feb 2020 17:44:39 GMT" ], "Content-Length": [ "449" @@ -207,26 +207,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1174\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1174\",\r\n \"properties\": {\r\n \"displayName\": \"ps1335\",\r\n \"description\": \"ps6321\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps746\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7660\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7660\",\r\n \"properties\": {\r\n \"displayName\": \"ps6821\",\r\n \"description\": \"ps707\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps8795\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1174?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTE3ND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7660?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzY2MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edf4310a-f308-4358-bfea-7b3cd163e68a" + "5bf2d9b5-228c-402b-814d-fef38b08ce27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -237,34 +237,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANJ0=\"" + "\"AAAAAAAAC68=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6306db35-343d-40b6-8194-3b06d3f4ec79" + "1dff1fba-074a-4eb9-b6da-f5f28f7efde0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-correlation-request-id": [ - "a634d5da-306c-4986-8671-9bee7b036926" + "8f87b93b-d3c2-4246-bc3b-76b20519b1fd" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204328Z:a634d5da-306c-4986-8671-9bee7b036926" + "WESTUS:20200224T174440Z:8f87b93b-d3c2-4246-bc3b-76b20519b1fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:27 GMT" + "Mon, 24 Feb 2020 17:44:39 GMT" ], "Content-Length": [ - "449" + "448" ], "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/ps1174\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1174\",\r\n \"properties\": {\r\n \"displayName\": \"ps1335\",\r\n \"description\": \"ps6321\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps5002\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7660\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7660\",\r\n \"properties\": {\r\n \"displayName\": \"ps6821\",\r\n \"description\": \"ps707\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps9248\",\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/ps1174?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTE3ND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7660?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzY2MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2d71701-3dd5-484a-9574-00ff2d01c8a4" + "e9f01184-12bf-4554-908f-004391f372c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -303,31 +303,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANKA=\"" + "\"AAAAAAAAC7I=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0f97a8b-d2fe-455c-a0ca-35d485f994c1" + "7a00b831-e3b7-4c07-aac8-9783b8ae6284" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11990" ], "x-ms-correlation-request-id": [ - "b48686ad-b3cd-4ac0-b295-91883866ac9f" + "7fa0cf2d-effd-4415-9d49-9e0838ba7857" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204329Z:b48686ad-b3cd-4ac0-b295-91883866ac9f" + "WESTUS:20200224T174440Z:7fa0cf2d-effd-4415-9d49-9e0838ba7857" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:28 GMT" + "Mon, 24 Feb 2020 17:44:39 GMT" ], "Content-Length": [ "449" @@ -339,26 +339,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1174\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1174\",\r\n \"properties\": {\r\n \"displayName\": \"ps1335\",\r\n \"description\": \"ps6321\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps746\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7660\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7660\",\r\n \"properties\": {\r\n \"displayName\": \"ps6821\",\r\n \"description\": \"ps707\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps8795\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7918?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3OTE4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4231?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MjMxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps1174\",\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/ps7660\",\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": [ - "6bfaeccb-4090-4c88-b529-685271e37463" + "72264cfd-6254-4d2c-87db-c4ec558fc162" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,31 +375,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7918?api-version=2019-01-01&asyncId=5e1e27f1787c9503c06a5524&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4231?api-version=2019-01-01&asyncId=5e540b886f56470f90c9a675&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08107d52-7072-406f-9b36-d6105d3c1f0b" + "441f05dc-d024-4539-953a-5b6ec6eb274c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "340531d3-a2e5-4a14-a69d-b473c7d6aac6" + "22415713-8cbf-46c0-83c0-9587c0716979" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204329Z:340531d3-a2e5-4a14-a69d-b473c7d6aac6" + "WESTUS:20200224T174440Z:22415713-8cbf-46c0-83c0-9587c0716979" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:29 GMT" + "Mon, 24 Feb 2020 17:44:39 GMT" ], "Expires": [ "-1" @@ -412,16 +412,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7918?api-version=2019-01-01&asyncId=5e1e27f1787c9503c06a5524&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3OTE4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTFlMjdmMTc4N2M5NTAzYzA2YTU1MjQmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4231?api-version=2019-01-01&asyncId=5e540b886f56470f90c9a675&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MjMxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MGI4ODZmNTY0NzBmOTBjOWE2NzUmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -432,34 +432,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANKM=\"" + "\"AAAAAAAAC7U=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a293586f-72dd-4650-87bf-508e221d22ee" + "6e36a403-a2cd-41da-b6c8-8200e787cb5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11989" ], "x-ms-correlation-request-id": [ - "a87d9ab2-8d81-44f0-a289-4d37ffeab570" + "d1273ca4-e38c-4ed6-a5ba-f5fd19d6b101" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204359Z:a87d9ab2-8d81-44f0-a289-4d37ffeab570" + "WESTUS:20200224T174511Z:d1273ca4-e38c-4ed6-a5ba-f5fd19d6b101" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:59 GMT" + "Mon, 24 Feb 2020 17:45:10 GMT" ], "Content-Length": [ - "1067" + "1102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,26 +468,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7918\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7918\",\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 \"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/ps1174\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4231\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4231\",\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/ps7660\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7918?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3OTE4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4231?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MjMxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b3dffe9-18e3-401d-8438-926b17bbac3a" + "14a14a4a-7552-448b-9b78-fb426ff149fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -498,34 +498,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAANKM=\"" + "\"AAAAAAAAC7U=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d1eb7d9-3f60-47eb-a00a-e6987d7c07a3" + "e48e4420-c89e-4e6e-a5ee-f1b701cd8e27" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11988" ], "x-ms-correlation-request-id": [ - "bbe740f0-2826-4ad9-99a7-52923b390026" + "cab2682d-b3b1-4e41-be1d-5ba19cd499ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204400Z:bbe740f0-2826-4ad9-99a7-52923b390026" + "WESTUS:20200224T174511Z:cab2682d-b3b1-4e41-be1d-5ba19cd499ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:59 GMT" + "Mon, 24 Feb 2020 17:45:11 GMT" ], "Content-Length": [ - "1067" + "1102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -534,17 +534,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7918\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7918\",\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 \"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/ps1174\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4231\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4231\",\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/ps7660\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7918?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3OTE4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4231?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MjMxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef30db45-62df-42c2-ab7b-f0de1284678e" + "da854b54-ccaa-4d8f-917f-6831ecb0faed" ], "If-Match": [ "*" @@ -553,10 +553,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -570,25 +570,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57096e49-1e1b-4e1f-9bf5-23a660e0ae9c" + "0a4b2378-5966-409a-926e-4b0186a12e62" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "6bed68f4-6be2-4034-b5ae-74bbee04e626" + "46f3c078-3185-434b-a67a-8d91044d4af6" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204400Z:6bed68f4-6be2-4034-b5ae-74bbee04e626" + "WESTUS:20200224T174511Z:46f3c078-3185-434b-a67a-8d91044d4af6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:59 GMT" + "Mon, 24 Feb 2020 17:45:11 GMT" ], "Expires": [ "-1" @@ -601,13 +601,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1174?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTE3ND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps7660?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNzY2MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79de7137-606f-4ecb-bb7c-e0a41deeaa70" + "ddae62ec-84fb-4b69-99c4-9e066d31ff01" ], "If-Match": [ "*" @@ -616,10 +616,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.04", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -633,25 +633,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "190c71ca-e27c-466b-a2e7-7f9f77ab29e0" + "1f80d706-14f1-41d9-ad6a-bcc4a28f2341" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "71ce174e-1574-4fb2-8922-7a0578c7d067" + "de6549dd-2e71-4018-922b-3b10e218ed81" ], "x-ms-routing-request-id": [ - "WESTUS:20200114T204400Z:71ce174e-1574-4fb2-8922-7a0578c7d067" + "WESTUS:20200224T174511Z:de6549dd-2e71-4018-922b-3b10e218ed81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 14 Jan 2020 20:43:59 GMT" + "Mon, 24 Feb 2020 17:45:11 GMT" ], "Expires": [ "-1" @@ -663,12 +663,12 @@ ], "Names": { "": [ - "ps7918", - "ps1174", - "ps1335", - "ps5002", - "ps6321", - "ps746" + "ps4231", + "ps7660", + "ps6821", + "ps9248", + "ps707", + "ps8795" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json index fb72edf02e91..3ec545e7e203 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15f7073b-d0f9-4a3e-8cab-e6ad0a589cf7" + "1566c0cc-0f25-4364-93ea-c986ceb55d3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41ea0ec8-a4f9-48b3-9aad-031887eed004" + "ae20cfa8-2bdb-4184-a3aa-a991b0468b93" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "9de063e1-57fd-40a0-8b9b-b9b76bb5f6ae" + "7a43c723-6344-497b-8d10-ba9bfed7f5f9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215634Z:9de063e1-57fd-40a0-8b9b-b9b76bb5f6ae" + "WESTUS:20200224T173849Z:7a43c723-6344-497b-8d10-ba9bfed7f5f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:33 GMT" + "Mon, 24 Feb 2020 17:38:49 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/ps4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNDQwMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6408\",\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\": \"ps7279\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"clientSecret\": \"ps8963\",\r\n \"resourceOwnerUsername\": \"ps7125\",\r\n \"resourceOwnerPassword\": \"ps2894\",\r\n \"displayName\": \"ps8808\",\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\": \"ps4788\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps30\",\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\": \"ps8532\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"clientSecret\": \"ps3996\",\r\n \"resourceOwnerUsername\": \"ps3568\",\r\n \"resourceOwnerPassword\": \"ps4877\",\r\n \"displayName\": \"ps3576\",\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\": \"ps3909\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b64c0329-db4f-45b6-8f23-a11a56b7ed55" + "2dea1961-6501-4132-93f7-94bccd6eb8d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "902" + "900" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhc=\"" + "\"AAAAAAAACmc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0a74e3f-23a1-4185-a5d8-16c1a38001c2" + "e4dfddac-2363-4dcb-8699-c0a320a7b65f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,19 +111,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "5ff6d147-8537-426b-aaf5-7a365a5ad55a" + "3c899aec-760b-4d6b-869d-17a157156820" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215635Z:5ff6d147-8537-426b-aaf5-7a365a5ad55a" + "WESTUS:20200224T173851Z:3c899aec-760b-4d6b-869d-17a157156820" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:35 GMT" + "Mon, 24 Feb 2020 17:38:51 GMT" ], "Content-Length": [ - "1175" + "1173" ], "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/ps4400\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps4400\",\r\n \"properties\": {\r\n \"displayName\": \"ps8808\",\r\n \"description\": \"ps6408\",\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\": \"ps7279\",\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\": \"ps4788\",\r\n \"clientSecret\": \"ps8963\",\r\n \"resourceOwnerUsername\": \"ps7125\",\r\n \"resourceOwnerPassword\": \"ps2894\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9419\",\r\n \"properties\": {\r\n \"displayName\": \"ps3576\",\r\n \"description\": \"ps30\",\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\": \"ps8532\",\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\": \"ps3909\",\r\n \"clientSecret\": \"ps3996\",\r\n \"resourceOwnerUsername\": \"ps3568\",\r\n \"resourceOwnerPassword\": \"ps4877\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNDQwMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07b572dd-5f8a-4183-89f4-5bf2f33ff2fe" + "e679b40b-b1ad-4b67-a708-dd52bd36b35b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -162,34 +162,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhc=\"" + "\"AAAAAAAACmc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2bd85d8e-2aad-48f8-b474-84e273c196aa" + "ebf2bfba-44c0-4b71-8689-917c8ed818f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "4b144d69-74c1-4e8b-8034-d3a31b93eea7" + "ce830482-9e06-438d-9cf4-2574bead31af" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215635Z:4b144d69-74c1-4e8b-8034-d3a31b93eea7" + "WESTUS:20200224T173852Z:ce830482-9e06-438d-9cf4-2574bead31af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:35 GMT" + "Mon, 24 Feb 2020 17:38:51 GMT" ], "Content-Length": [ - "1175" + "1173" ], "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/ps4400\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps4400\",\r\n \"properties\": {\r\n \"displayName\": \"ps8808\",\r\n \"description\": \"ps6408\",\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\": \"ps7279\",\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\": \"ps4788\",\r\n \"clientSecret\": \"ps8963\",\r\n \"resourceOwnerUsername\": \"ps7125\",\r\n \"resourceOwnerPassword\": \"ps2894\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9419\",\r\n \"properties\": {\r\n \"displayName\": \"ps3576\",\r\n \"description\": \"ps30\",\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\": \"ps8532\",\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\": \"ps3909\",\r\n \"clientSecret\": \"ps3996\",\r\n \"resourceOwnerUsername\": \"ps3568\",\r\n \"resourceOwnerPassword\": \"ps4877\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNDQwMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45da63d9-f112-4209-8bc0-ec783c17abff" + "e44f9a90-2a86-4703-8dba-c6f577900a1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -228,34 +228,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhg=\"" + "\"AAAAAAAACmg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c461b58d-e121-4aed-9f94-dda75d259432" + "4a04540a-0059-479e-bf5f-24b4318f7622" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "5fffb816-8436-421e-b417-eec92a104a16" + "a9babcdb-5444-409d-ac55-e19ddb35f120" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215636Z:5fffb816-8436-421e-b417-eec92a104a16" + "WESTUS:20200224T173852Z:a9babcdb-5444-409d-ac55-e19ddb35f120" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:35 GMT" + "Mon, 24 Feb 2020 17:38:52 GMT" ], "Content-Length": [ - "1147" + "1149" ], "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/ps4400\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps4400\",\r\n \"properties\": {\r\n \"displayName\": \"ps4511\",\r\n \"description\": \"ps1275\",\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\": \"ps3897\",\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\": \"ps91\",\r\n \"clientSecret\": \"ps3891\",\r\n \"resourceOwnerUsername\": \"ps7125\",\r\n \"resourceOwnerPassword\": \"ps2894\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9419\",\r\n \"properties\": {\r\n \"displayName\": \"ps9790\",\r\n \"description\": \"ps3377\",\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\": \"ps8330\",\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\": \"ps7108\",\r\n \"clientSecret\": \"ps8906\",\r\n \"resourceOwnerUsername\": \"ps3568\",\r\n \"resourceOwnerPassword\": \"ps4877\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNDQwMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10da9381-940b-42db-9a2d-2abae6386388" + "5b349dbc-1992-415f-8b5f-745dd9682efb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -294,34 +294,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhg=\"" + "\"AAAAAAAACmg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5872cdb-2f0c-423e-b416-4ebeeecbc06d" + "fd43b6e0-fa9e-4df9-b720-562d5dc11f41" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "8033f8c6-5e93-4557-967f-b9e6267f1e57" + "630071a3-702c-4525-bb45-7cac867bd054" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215636Z:8033f8c6-5e93-4557-967f-b9e6267f1e57" + "WESTUS:20200224T173853Z:630071a3-702c-4525-bb45-7cac867bd054" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:36 GMT" + "Mon, 24 Feb 2020 17:38:52 GMT" ], "Content-Length": [ - "1147" + "1149" ], "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/ps4400\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps4400\",\r\n \"properties\": {\r\n \"displayName\": \"ps4511\",\r\n \"description\": \"ps1275\",\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\": \"ps3897\",\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\": \"ps91\",\r\n \"clientSecret\": \"ps3891\",\r\n \"resourceOwnerUsername\": \"ps7125\",\r\n \"resourceOwnerPassword\": \"ps2894\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9419\",\r\n \"properties\": {\r\n \"displayName\": \"ps9790\",\r\n \"description\": \"ps3377\",\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\": \"ps8330\",\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\": \"ps7108\",\r\n \"clientSecret\": \"ps8906\",\r\n \"resourceOwnerUsername\": \"ps3568\",\r\n \"resourceOwnerPassword\": \"ps4877\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNDQwMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96c29df3-e3cd-4b7b-91f8-64c751e79e91" + "e2e2b44e-47ac-4c49-973b-3e40e743dad2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -363,25 +363,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95bc600a-0e0a-4691-9337-b636f6ede63c" + "45ac8e54-8003-431b-8930-9601df2d5d90" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "78f722f3-d331-43c6-b54a-45358311e1b9" + "642a69e7-d532-42f6-a5f2-be16ea3850b3" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215637Z:78f722f3-d331-43c6-b54a-45358311e1b9" + "WESTUS:20200224T173853Z:642a69e7-d532-42f6-a5f2-be16ea3850b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:36 GMT" + "Mon, 24 Feb 2020 17:38:53 GMT" ], "Content-Length": [ "101" @@ -397,13 +397,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNDQwMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1275\",\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\": \"ps3897\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"clientSecret\": \"ps3891\",\r\n \"displayName\": \"ps4511\",\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\": \"ps91\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3377\",\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\": \"ps8330\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"clientSecret\": \"ps8906\",\r\n \"displayName\": \"ps9790\",\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\": \"ps7108\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3149790a-83d2-4567-abea-74c3adc4bfae" + "80dc79d4-06cf-4578-90a0-f59475006a9a" ], "If-Match": [ "*" @@ -412,16 +412,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "794" + "796" ] }, "ResponseHeaders": { @@ -435,7 +435,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8499e16a-7afd-4424-9c89-1a8b08939fb3" + "ee52dd43-b1f4-45b7-90c7-3162a48cde68" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,16 +444,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "0e95b327-6dac-47c9-be2d-89edca59278b" + "b695eb58-699e-4baa-bd75-417ee104a041" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215636Z:0e95b327-6dac-47c9-be2d-89edca59278b" + "WESTUS:20200224T173852Z:b695eb58-699e-4baa-bd75-417ee104a041" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:35 GMT" + "Mon, 24 Feb 2020 17:38:52 GMT" ], "Expires": [ "-1" @@ -463,13 +463,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps4400?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNDQwMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6bfbfd6-0415-415e-bf35-cfa9eb02d95f" + "0e4f70c1-405d-4de0-9478-b9b92dca9e61" ], "If-Match": [ "*" @@ -478,10 +478,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -495,7 +495,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5a0e483-b510-4711-bc10-0258fb8adac4" + "e54d84be-b679-4959-9cc8-274c20a62bae" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,16 +504,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "5bb276b2-2368-4916-98a9-0e690f170270" + "f60c4bf5-4fcd-44ce-aa1b-c8970768fbb0" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215637Z:5bb276b2-2368-4916-98a9-0e690f170270" + "WESTUS:20200224T173853Z:f60c4bf5-4fcd-44ce-aa1b-c8970768fbb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:36 GMT" + "Mon, 24 Feb 2020 17:38:53 GMT" ], "Expires": [ "-1" @@ -528,19 +528,19 @@ ], "Names": { "": [ - "ps4400", - "ps8808", - "ps7279", - "ps4788", - "ps6408", - "ps8963", - "ps2894", - "ps7125", - "ps4511", - "ps3897", - "ps91", - "ps1275", - "ps3891" + "ps9419", + "ps3576", + "ps8532", + "ps3909", + "ps30", + "ps3996", + "ps4877", + "ps3568", + "ps9790", + "ps8330", + "ps7108", + "ps3377", + "ps8906" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json index 7ed7872406b4..d208bae54d9d 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/ps9376?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTM3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjE3MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps4377\",\r\n \"description\": \"ps3025\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n },\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps5431\",\r\n \"description\": \"ps9291\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n },\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7bb3ea14-3a0a-4cc8-addf-208c2438b9eb" + "184d6b4c-78e0-4fde-8da2-e00447a7a738" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJnA=\"" + "\"AAAAAAAACsA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc384a90-5359-4609-9504-d6396400c665" + "29e0a061-1880-422c-bc40-bee601fd6a5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "eec7c9af-5796-483c-b24f-f74e8f0721cb" + "cc4f89fd-0277-44f5-9573-755fecf95e2a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215730Z:eec7c9af-5796-483c-b24f-f74e8f0721cb" + "WESTUS:20200224T173935Z:cc4f89fd-0277-44f5-9573-755fecf95e2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:29 GMT" + "Mon, 24 Feb 2020 17:39:34 GMT" ], "Content-Length": [ "824" @@ -69,17 +69,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9376\",\r\n \"properties\": {\r\n \"title\": \"ps4377\",\r\n \"description\": \"ps3025\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6171\",\r\n \"properties\": {\r\n \"title\": \"ps5431\",\r\n \"description\": \"ps9291\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTM3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjE3MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4536\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8171\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1f6ea7ec-8ab4-4a14-8aae-e48d420c46d8" + "07583b71-5db1-4ba3-9a16-dcf0b9ab7ee7" ], "If-Match": [ "*" @@ -88,10 +88,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -111,7 +111,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b50ed507-6ab6-498e-8422-2eae6ac3991c" + "28ed6d07-d521-4eeb-a408-d8de1bd29e8c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -120,16 +120,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "03d97f47-2961-479a-b27b-c60040f51537" + "c677e920-771d-42df-8877-3f7fac792644" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215730Z:03d97f47-2961-479a-b27b-c60040f51537" + "WESTUS:20200224T173935Z:c677e920-771d-42df-8877-3f7fac792644" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:30 GMT" + "Mon, 24 Feb 2020 17:39:34 GMT" ], "Expires": [ "-1" @@ -139,13 +139,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTM3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjE3MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "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": [ - "7f8fc644-0a00-40c7-a06e-1117c888043c" + "58e0ce01-b6bf-4525-8228-6c8e52b9ac98" ], "If-Match": [ "*" @@ -154,10 +154,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -177,7 +177,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f3eaee9-0145-40db-8ddf-5e31944e98c2" + "f819278c-5337-45ee-902b-b3a5e2f9ebe3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -186,16 +186,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "5b5618f5-1e81-484b-a11e-1971fad42cec" + "07cf72db-f98a-4877-aa5e-02d099833b99" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215731Z:5b5618f5-1e81-484b-a11e-1971fad42cec" + "WESTUS:20200224T173936Z:07cf72db-f98a-4877-aa5e-02d099833b99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:31 GMT" + "Mon, 24 Feb 2020 17:39:36 GMT" ], "Expires": [ "-1" @@ -205,22 +205,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTM3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjE3MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a29b2bac-6bf6-4331-8d82-337289143aad" + "0b3ddff6-0eda-47c5-bdd9-fade2775783d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -231,13 +231,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJnI=\"" + "\"AAAAAAAACsI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee6245cb-cb65-4685-aa99-15ffe19b7978" + "5046dd09-8419-44e7-add7-8fbe3c44bc9a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -246,16 +246,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "d78d40a6-3c66-4817-9749-cabc00f330f2" + "2ba0406d-658e-4ec9-85de-c7e10e1fa77c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215731Z:d78d40a6-3c66-4817-9749-cabc00f330f2" + "WESTUS:20200224T173935Z:2ba0406d-658e-4ec9-85de-c7e10e1fa77c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:30 GMT" + "Mon, 24 Feb 2020 17:39:35 GMT" ], "Content-Length": [ "824" @@ -267,26 +267,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9376\",\r\n \"properties\": {\r\n \"title\": \"ps4377\",\r\n \"description\": \"ps4536\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6171\",\r\n \"properties\": {\r\n \"title\": \"ps5431\",\r\n \"description\": \"ps8171\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTM3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjE3MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cff79e1b-f8aa-4159-b3ad-8dde190be70a" + "5e1bc58d-ff19-4d1c-af0a-3bdf18aae2b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -297,13 +297,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJnI=\"" + "\"AAAAAAAACsI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e56906c-99fa-4581-a03e-050c919bf9ea" + "7e32656b-d2f4-4ea9-841a-6ba0eb5e24c3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,16 +312,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "f70c1c0f-5198-4877-8744-878cd4c79601" + "99ca1ebe-eb79-48b2-8ecb-9a0a440f4005" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215731Z:f70c1c0f-5198-4877-8744-878cd4c79601" + "WESTUS:20200224T173936Z:99ca1ebe-eb79-48b2-8ecb-9a0a440f4005" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:30 GMT" + "Mon, 24 Feb 2020 17:39:35 GMT" ], "Content-Length": [ "824" @@ -333,26 +333,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9376\",\r\n \"properties\": {\r\n \"title\": \"ps4377\",\r\n \"description\": \"ps4536\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6171\",\r\n \"properties\": {\r\n \"title\": \"ps5431\",\r\n \"description\": \"ps8171\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTM3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjE3MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f61f5234-e134-48cb-b507-14d7ec545c43" + "70420e63-d3d6-43df-b008-48677055dc53" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -363,13 +363,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJnU=\"" + "\"AAAAAAAACsU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "863221d0-547b-4ff6-a238-f944e5860b9b" + "b787fab4-3a45-400c-ba9f-3b00e6f54873" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -378,16 +378,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "85cc9561-1685-4270-a223-0e51a7e2713d" + "49c608bb-b8b3-4083-b350-20c5b5a37a4a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215731Z:85cc9561-1685-4270-a223-0e51a7e2713d" + "WESTUS:20200224T173936Z:49c608bb-b8b3-4083-b350-20c5b5a37a4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:31 GMT" + "Mon, 24 Feb 2020 17:39:36 GMT" ], "Content-Length": [ "953" @@ -399,26 +399,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9376\",\r\n \"properties\": {\r\n \"title\": \"ps4377\",\r\n \"description\": \"ps4536\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6171\",\r\n \"properties\": {\r\n \"title\": \"ps5431\",\r\n \"description\": \"ps8171\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTM3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjE3MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca06c961-000d-4936-9429-6512c10f1fae" + "bf477f65-675e-40b9-b93b-fa042c79667f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -432,7 +432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "332e4b71-dbe1-4aa7-8a6b-84fef42260e3" + "c134f8d4-7b3c-4092-90f8-42a07737da2c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,16 +441,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "99114146-9f9d-49bd-99d0-4b4dd178024a" + "23c502cd-9461-4c92-9cef-12e17fd96c54" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215732Z:99114146-9f9d-49bd-99d0-4b4dd178024a" + "WESTUS:20200224T173937Z:23c502cd-9461-4c92-9cef-12e17fd96c54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:31 GMT" + "Mon, 24 Feb 2020 17:39:36 GMT" ], "Content-Length": [ "83" @@ -472,16 +472,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d5fc1fe-0068-4aa4-bab3-77adba294391" + "0f3560d9-013e-415b-9273-fc98dcc089ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -495,7 +495,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "403c8851-be39-40b2-9c81-35bc1a892cdd" + "0b98abcb-a0a8-42a6-9012-dbfb986100c3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,16 +504,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "5f7f0f19-fa06-428a-add3-820cec5a9979" + "f085efbd-ccd4-4566-ab02-78c57c9093d8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215731Z:5f7f0f19-fa06-428a-add3-820cec5a9979" + "WESTUS:20200224T173936Z:f085efbd-ccd4-4566-ab02-78c57c9093d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:30 GMT" + "Mon, 24 Feb 2020 17:39:35 GMT" ], "Content-Length": [ "1004" @@ -525,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9376\",\r\n \"properties\": {\r\n \"title\": \"ps4377\",\r\n \"description\": \"ps4536\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6171\",\r\n \"properties\": {\r\n \"title\": \"ps5431\",\r\n \"description\": \"ps8171\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9376?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTM3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6171?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjE3MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c385d0ae-3648-49e7-9aa4-10f4841ddc22" + "86da51a7-383f-4b33-ba28-668463d29311" ], "If-Match": [ "*" @@ -544,10 +544,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -561,7 +561,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5ba58c2-23dc-4de7-9153-b85b6c636196" + "fe770781-445f-4172-9cae-08d82852cead" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -570,16 +570,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "40b46ac0-1219-4725-96d2-d551f3337572" + "38b19026-0e75-42b3-b2c2-3bcf75c4cf48" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215732Z:40b46ac0-1219-4725-96d2-d551f3337572" + "WESTUS:20200224T173937Z:38b19026-0e75-42b3-b2c2-3bcf75c4cf48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:31 GMT" + "Mon, 24 Feb 2020 17:39:36 GMT" ], "Expires": [ "-1" @@ -594,10 +594,10 @@ ], "Names": { "": [ - "ps9376", - "ps4377", - "ps3025", - "ps4536" + "ps6171", + "ps5431", + "ps9291", + "ps8171" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json index 899ec9ad126b..dce8d8fc8cfa 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77df44a5-4718-4a66-8594-f33e5c94c069" + "d173864c-4813-40b3-83ae-a4d92386cfc3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62285250-e90e-429e-80de-441f05a5cabd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "e3c692af-a145-4482-9077-f69d066ebe21" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], "x-ms-correlation-request-id": [ - "380ee900-c98f-4d02-b379-34cedda9e6fd" + "5e9acb47-6c41-4c19-a683-d5ee424f800f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215958Z:380ee900-c98f-4d02-b379-34cedda9e6fd" + "WESTUS:20200224T195009Z:5e9acb47-6c41-4c19-a683-d5ee424f800f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:57 GMT" + "Mon, 24 Feb 2020 19:50:09 GMT" ], "Content-Length": [ "34" @@ -70,16 +70,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56a2d4f8-f91d-436d-b5e3-adec899d13a2" + "7ae49ccf-dd19-4e0e-8226-6ba20ac8d0cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ce9cacf-bf1c-4067-bec6-31b13bdaf72a" + "840dadc6-1aec-4a54-a426-03027388ee5d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -102,19 +102,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "65f1ff26-7741-46cf-854b-a26d5e401215" + "1042afd3-a6c8-47d2-9f37-f77f51726cef" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220001Z:65f1ff26-7741-46cf-854b-a26d5e401215" + "WESTUS:20200224T195012Z:1042afd3-a6c8-47d2-9f37-f77f51726cef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:00:00 GMT" + "Mon, 24 Feb 2020 19:50:11 GMT" ], "Content-Length": [ - "1120" + "1121" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,27 +123,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps5498\",\r\n \"properties\": {\r\n \"title\": \"ps530\",\r\n \"description\": \"ps3076\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6730\",\r\n \"properties\": {\r\n \"title\": \"ps153\",\r\n \"description\": \"ps6872\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUyNTA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps1668?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczE2Njg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4c411306-dbf3-4704-b128-ac805995c56c" + "662dfef8-39eb-461c-8fc4-3742394dcbe4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,13 +160,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJuA=\"" + "\"AAAAAAAADTg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f97b43ad-8387-453d-8a67-2df8274a5b1d" + "a649636a-0c6b-4d04-b0ad-de8e0da44749" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -175,16 +175,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "d4d30d23-c725-4a1a-a53d-96a4e66324b5" + "36dd6391-72b4-4cda-9431-3cd3c2ba02ba" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215959Z:d4d30d23-c725-4a1a-a53d-96a4e66324b5" + "WESTUS:20200224T195010Z:36dd6391-72b4-4cda-9431-3cd3c2ba02ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:58 GMT" + "Mon, 24 Feb 2020 19:50:10 GMT" ], "Content-Length": [ "433" @@ -196,26 +196,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5250\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5250\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps1668\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1668\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUyNTA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps1668?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczE2Njg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11248e06-ad97-4807-8f6a-c8ff0e027490" + "ed858da4-f5bb-4aa7-a121-1c16445eec31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -226,13 +226,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJuA=\"" + "\"AAAAAAAADTg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f00d8bb-6bc2-40cc-bc39-d02984a842d6" + "2a961c31-92bd-415d-a85b-d3af7c8fdc98" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -241,16 +241,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "404eed99-0680-446a-a6b7-db96d4689b32" + "e92ad3bf-daee-444b-942d-2c81c23b3047" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215959Z:404eed99-0680-446a-a6b7-db96d4689b32" + "WESTUS:20200224T195010Z:e92ad3bf-daee-444b-942d-2c81c23b3047" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:58 GMT" + "Mon, 24 Feb 2020 19:50:10 GMT" ], "Content-Length": [ "433" @@ -262,26 +262,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5250\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5250\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps1668\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1668\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUyNTA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps1668?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczE2Njg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cef2deae-d462-42e6-ad4c-b8245ba68dfe" + "953dbf7d-402c-4911-95dc-103c210d4911" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -295,7 +295,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aea74d4c-9a72-44e4-8046-1beff67a2ce3" + "1e361cad-d91d-474c-b2d2-b2d207cabbbb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -304,16 +304,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "8ce693c0-d473-4257-bf27-6e2f1ca406c3" + "82a70f05-eff2-4ef6-9601-5fd66d6d34a9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220002Z:8ce693c0-d473-4257-bf27-6e2f1ca406c3" + "WESTUS:20200224T195013Z:82a70f05-eff2-4ef6-9601-5fd66d6d34a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:00:02 GMT" + "Mon, 24 Feb 2020 19:50:12 GMT" ], "Content-Length": [ "87" @@ -329,28 +329,28 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNTQ5OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjczMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps530\",\r\n \"description\": \"ps1363\",\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\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps153\",\r\n \"description\": \"ps4518\",\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": [ - "8548894d-3663-4f81-a3eb-31707e263184" + "c22a538c-1fb0-4175-8593-4f1ffe387d1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "674" + "675" ] }, "ResponseHeaders": { @@ -361,13 +361,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJuM=\"" + "\"AAAAAAAADTs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "284c27d3-09fb-4f2d-a0b7-4b5ffedda2f5" + "867a54f6-a9fd-4773-baf0-dd2ab2431525" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -376,19 +376,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "327fce79-160b-413f-90d7-3d502e0d3559" + "6f3e05ce-0b7d-4961-9e1e-0d726eaefff3" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220000Z:327fce79-160b-413f-90d7-3d502e0d3559" + "WESTUS:20200224T195011Z:6f3e05ce-0b7d-4961-9e1e-0d726eaefff3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:59 GMT" + "Mon, 24 Feb 2020 19:50:10 GMT" ], "Content-Length": [ - "968" + "969" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,17 +397,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps5498\",\r\n \"properties\": {\r\n \"title\": \"ps530\",\r\n \"description\": \"ps1363\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6730\",\r\n \"properties\": {\r\n \"title\": \"ps153\",\r\n \"description\": \"ps4518\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNTQ5OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjczMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3076\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6872\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "41c7e9bc-964c-4ce6-9079-fe0f9ad37c5d" + "66c329c3-f10f-4831-a974-76d49d68c721" ], "If-Match": [ "*" @@ -416,10 +416,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -439,7 +439,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ade58c6b-2989-4b6d-ba7b-d08c37bd1463" + "24ccc9ee-b671-4139-a13b-44fb837899d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -448,16 +448,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "e48a7c9d-94a5-4971-8c25-f1ce720b4f06" + "95b467e7-22ba-48ea-a31a-a834450d7b1c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220000Z:e48a7c9d-94a5-4971-8c25-f1ce720b4f06" + "WESTUS:20200224T195012Z:95b467e7-22ba-48ea-a31a-a834450d7b1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:00:00 GMT" + "Mon, 24 Feb 2020 19:50:11 GMT" ], "Expires": [ "-1" @@ -467,22 +467,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNTQ5OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjczMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f6aaf06-8c40-40e1-8d0f-37cd60d66dd1" + "43da746b-7af6-490f-ab1a-faab289dd214" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -493,13 +493,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJuU=\"" + "\"AAAAAAAADT0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24fb491d-e91f-45f6-adf0-d0b930cec8b4" + "baa1f16b-797e-45d3-b523-04f5cff10f2f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -508,19 +508,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "3ed6005e-b724-4268-8284-d581af20de21" + "842bc87f-82b6-4ce2-b665-f34b40e56aa8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220000Z:3ed6005e-b724-4268-8284-d581af20de21" + "WESTUS:20200224T195012Z:842bc87f-82b6-4ce2-b665-f34b40e56aa8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:00:00 GMT" + "Mon, 24 Feb 2020 19:50:11 GMT" ], "Content-Length": [ - "968" + "969" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,26 +529,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps5498\",\r\n \"properties\": {\r\n \"title\": \"ps530\",\r\n \"description\": \"ps3076\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6730\",\r\n \"properties\": {\r\n \"title\": \"ps153\",\r\n \"description\": \"ps6872\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNTQ5OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjczMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30e45889-5590-4279-9138-700ff6b26480" + "0eb47277-9837-44a6-91e1-0db347541748" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -559,13 +559,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJuU=\"" + "\"AAAAAAAADT0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "996f2796-c91e-4882-8fae-1387d0d36026" + "49e9c423-df97-4f00-890d-62b493046b27" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -574,19 +574,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "5f63dccb-dc67-45a4-9be2-e58c85d65168" + "d1fc6c5b-b1f0-4c2f-9415-86ccbf905472" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220001Z:5f63dccb-dc67-45a4-9be2-e58c85d65168" + "WESTUS:20200224T195012Z:d1fc6c5b-b1f0-4c2f-9415-86ccbf905472" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:00:00 GMT" + "Mon, 24 Feb 2020 19:50:11 GMT" ], "Content-Length": [ - "968" + "969" ], "Content-Type": [ "application/json; charset=utf-8" @@ -595,26 +595,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps5498\",\r\n \"properties\": {\r\n \"title\": \"ps530\",\r\n \"description\": \"ps3076\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6730\",\r\n \"properties\": {\r\n \"title\": \"ps153\",\r\n \"description\": \"ps6872\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNTQ5OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjczMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "716f47c5-f153-4ada-937e-63b230743a17" + "afde2380-5149-43bf-b63c-66bbb3af9ee1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -628,7 +628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9da52932-456c-4f00-904f-063fe6b6c396" + "a657ca78-fb16-465d-82f1-8ab969d5081c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -637,16 +637,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "768d8f76-7c2b-4b2f-a828-df68ef73ecff" + "51a490eb-e128-46dc-8a26-962ff6140aa6" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220002Z:768d8f76-7c2b-4b2f-a828-df68ef73ecff" + "WESTUS:20200224T195013Z:51a490eb-e128-46dc-8a26-962ff6140aa6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:00:01 GMT" + "Mon, 24 Feb 2020 19:50:12 GMT" ], "Content-Length": [ "83" @@ -662,13 +662,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps5498?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNTQ5OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6730?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjczMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ddeeb08-7d10-4d19-9e4c-dc3767fb480d" + "d312e24a-e134-40a3-8565-7f405cdb30e9" ], "If-Match": [ "*" @@ -677,10 +677,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -694,7 +694,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "446c3615-7d9b-4362-bbcf-9a8698580dc3" + "a05a1382-5c03-4b76-a3a7-7b99fec7c089" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -703,16 +703,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "03e78dfb-98d4-45d2-bad7-eb374e6973f3" + "23ce0050-bfdf-411b-a7df-634981cdc777" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220001Z:03e78dfb-98d4-45d2-bad7-eb374e6973f3" + "WESTUS:20200224T195013Z:23ce0050-bfdf-411b-a7df-634981cdc777" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:00:01 GMT" + "Mon, 24 Feb 2020 19:50:12 GMT" ], "Expires": [ "-1" @@ -725,13 +725,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5250?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUyNTA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps1668?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczE2Njg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d558ab9b-678c-42ff-995a-8852e22a569b" + "5d269405-60ef-4856-bfbf-c30f28163230" ], "If-Match": [ "*" @@ -740,10 +740,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -757,7 +757,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b5cb4ce-b2c3-4b28-9076-cf4ef3b77851" + "f12ac3a1-f849-4cea-8d5c-f6beb9b46c4e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -766,16 +766,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "7ca2665d-2b37-40c7-a914-f85c277b5b27" + "611e57f0-ef69-4f6e-80be-ad6800bc8003" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220002Z:7ca2665d-2b37-40c7-a914-f85c277b5b27" + "WESTUS:20200224T195013Z:611e57f0-ef69-4f6e-80be-ad6800bc8003" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:00:01 GMT" + "Mon, 24 Feb 2020 19:50:12 GMT" ], "Expires": [ "-1" @@ -790,11 +790,11 @@ ], "Names": { "": [ - "ps5250", - "ps5498", - "ps530", - "ps1363", - "ps3076" + "ps1668", + "ps6730", + "ps153", + "ps4518", + "ps6872" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json index 29ba66cd955b..9483dd33223d 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "972f4a96-2aa1-4d00-bdbf-3f8466e4eea2" + "48755124-c85e-4e27-83d9-2c8a29b4ada8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef2db8ad-92b6-48b1-af91-efde9da81af8" + "5e7dac1d-0fd4-4c3d-92bb-47d213164acd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "88d8951f-c135-45d7-a57e-c25228ba26b3" + "bd7aaba4-94ea-4c6e-bc26-8e55b859134e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215450Z:88d8951f-c135-45d7-a57e-c25228ba26b3" + "WESTUS:20200224T173712Z:bd7aaba4-94ea-4c6e-bc26-8e55b859134e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:49 GMT" + "Mon, 24 Feb 2020 17:37:11 GMT" ], "Content-Length": [ "34" @@ -70,16 +70,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "812ff0cb-d2bd-4fe6-b69e-bc087fd315b4" + "bed11977-0f57-4b54-adfd-834c574a0b2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -93,25 +93,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ce1ecc52-5b65-405a-a841-7e1cfdd88155" + "45cc7b9f-f439-4cc1-babf-0a1573533464" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "d6b6cf84-1fd6-400b-98f3-56ebc0c6fb4a" + "d9e4c494-60ff-466d-b3e5-44cf911e8d02" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215453Z:d6b6cf84-1fd6-400b-98f3-56ebc0c6fb4a" + "WESTUS:20200224T173714Z:d9e4c494-60ff-466d-b3e5-44cf911e8d02" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:52 GMT" + "Mon, 24 Feb 2020 17:37:13 GMT" ], "Content-Length": [ "437" @@ -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 \"description\": \"ps3035\",\r\n \"connectionString\": \"{{5d9279aa787c9527240ff128}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2334\",\r\n \"connectionString\": \"{{5e5409c86f56470f90c9a5e5}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8693\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2955\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f144cc4-2cf9-4c0a-bf20-65ef8e550d9b" + "7ac54ea8-9d31-4054-ae40-cb82ec88d684" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,31 +159,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJaA=\"" + "\"AAAAAAAACew=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1e92843-9bbe-4fa0-b645-70d104b3b13e" + "42884ad4-fd3c-4e17-beec-e69a97f2acc6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "7c7914e7-3a53-470e-9668-08dbf101e138" + "31fe072d-4ecc-45fd-971e-850ee7ab12db" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215452Z:7c7914e7-3a53-470e-9668-08dbf101e138" + "WESTUS:20200224T173713Z:31fe072d-4ecc-45fd-971e-850ee7ab12db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:51 GMT" + "Mon, 24 Feb 2020 17:37:12 GMT" ], "Content-Length": [ "361" @@ -195,7 +195,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps8693\",\r\n \"connectionString\": \"{{5d9279aa787c9527240ff128}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2955\",\r\n \"connectionString\": \"{{5e5409c86f56470f90c9a5e5}}\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -205,16 +205,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b73a7ea8-5583-459d-b1df-23072bb47de9" + "2eeb6957-daf1-4907-9f79-9e2f4fd539be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -225,31 +225,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJaA=\"" + "\"AAAAAAAACew=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1da472bc-50f0-4161-9a30-2ea71622335b" + "ca2be9b1-a749-4d5e-9da2-95dae66e241d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "ebc9e29b-55fe-4932-86bf-c8d849638d4c" + "8651f43a-7c62-4d26-9125-abfbc322a816" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215452Z:ebc9e29b-55fe-4932-86bf-c8d849638d4c" + "WESTUS:20200224T173713Z:8651f43a-7c62-4d26-9125-abfbc322a816" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:51 GMT" + "Mon, 24 Feb 2020 17:37:12 GMT" ], "Content-Length": [ "361" @@ -261,7 +261,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps8693\",\r\n \"connectionString\": \"{{5d9279aa787c9527240ff128}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2955\",\r\n \"connectionString\": \"{{5e5409c86f56470f90c9a5e5}}\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -271,16 +271,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6395083-12e9-479f-948d-3d390d5e4548" + "f6bc5cc4-64aa-494e-8ebe-46d72bcb9e62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -291,31 +291,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJaA=\"" + "\"AAAAAAAACew=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c4561d5-739e-430a-9209-38f414802dd7" + "6436bf38-70a8-4ea1-b2c7-cb8492f84aa4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "c497a72d-5e75-436a-a6ad-79a131da4355" + "84b8c604-0230-4b63-b351-26fbbff48965" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215452Z:c497a72d-5e75-436a-a6ad-79a131da4355" + "WESTUS:20200224T173713Z:84b8c604-0230-4b63-b351-26fbbff48965" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:51 GMT" + "Mon, 24 Feb 2020 17:37:12 GMT" ], "Content-Length": [ "361" @@ -327,7 +327,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps8693\",\r\n \"connectionString\": \"{{5d9279aa787c9527240ff128}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2955\",\r\n \"connectionString\": \"{{5e5409c86f56470f90c9a5e5}}\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -337,16 +337,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1e69186-6a27-4484-b7c6-d5712a320d89" + "19474902-c6c5-44a2-8f6b-0f81bcc92e74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -357,31 +357,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJaM=\"" + "\"AAAAAAAACe8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "edb440a7-5876-4bcd-9e8d-8448f778f92d" + "29827f76-aa29-4ba2-87a9-5ad6712106c3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "be94d0d3-1dc9-4ec0-9d23-42220791692a" + "dbd36340-5ece-4700-bacc-9112aa2fe1ea" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215453Z:be94d0d3-1dc9-4ec0-9d23-42220791692a" + "WESTUS:20200224T173714Z:dbd36340-5ece-4700-bacc-9112aa2fe1ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:52 GMT" + "Mon, 24 Feb 2020 17:37:13 GMT" ], "Content-Length": [ "361" @@ -393,7 +393,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps3035\",\r\n \"connectionString\": \"{{5d9279aa787c9527240ff128}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2334\",\r\n \"connectionString\": \"{{5e5409c86f56470f90c9a5e5}}\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -403,16 +403,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "129ac1ff-6e2f-4c1c-9dbf-1c340dda7280" + "43189a83-6d57-4ea1-95b8-b6047a3aadac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -426,25 +426,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f7d22ee-9269-46de-89d9-c3ac830a0409" + "42a1a470-e3df-4332-a6bf-ba3b73fdd3ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "00d2d3e6-006d-4f6a-915a-064394bcbc2d" + "12905503-f269-4302-a619-23cf4addb534" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215454Z:00d2d3e6-006d-4f6a-915a-064394bcbc2d" + "WESTUS:20200224T173714Z:12905503-f269-4302-a619-23cf4addb534" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:53 GMT" + "Mon, 24 Feb 2020 17:37:13 GMT" ], "Content-Length": [ "81" @@ -463,10 +463,10 @@ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3035\",\r\n \"connectionString\": \"{{5d9279aa787c9527240ff128}}\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2334\",\r\n \"connectionString\": \"{{5e5409c86f56470f90c9a5e5}}\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6ba75cda-0079-4d0c-a86c-8faf3c458cd0" + "4ffa89a0-a8cc-4221-b753-b7f516227989" ], "If-Match": [ "*" @@ -475,10 +475,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -498,25 +498,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "324e6387-d3b3-414c-83d3-b1ad3039f7fc" + "ce71b4a5-531a-4563-b515-ba0c80987278" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "6af01492-b767-4ee0-a838-e3978917db25" + "4e2e559c-2312-46fa-abc7-af36feb61967" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215453Z:6af01492-b767-4ee0-a838-e3978917db25" + "WESTUS:20200224T173713Z:4e2e559c-2312-46fa-abc7-af36feb61967" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:52 GMT" + "Mon, 24 Feb 2020 17:37:13 GMT" ], "Expires": [ "-1" @@ -532,7 +532,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c4c27c2-6ff6-499b-af33-e96e79b7d09d" + "ae123c74-0f53-4a82-98b9-16cf2834eb7c" ], "If-Match": [ "*" @@ -541,10 +541,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -558,7 +558,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5682f8f-dd9a-4398-afd4-968d90fc9a80" + "0501a591-ac1f-413a-a5d6-bb0fc9999ff1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -567,16 +567,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "daf424f9-35b0-44b1-b786-492afa5feded" + "323e8867-8e82-4004-939d-32485711b49b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215454Z:daf424f9-35b0-44b1-b786-492afa5feded" + "WESTUS:20200224T173714Z:323e8867-8e82-4004-939d-32485711b49b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:53 GMT" + "Mon, 24 Feb 2020 17:37:13 GMT" ], "Expires": [ "-1" @@ -595,16 +595,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8611cc8-bf2a-44e9-86e4-e8bbedea420c" + "8cc9d9e0-e066-42da-9b1a-3c49be20db0e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -618,25 +618,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "676118cc-f9c9-47aa-a8bd-4b980902428d" + "33e6f73c-7e6e-465e-8d8b-3c6a76e383b2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "6bc4b787-440e-4f19-8c40-fbb921987133" + "b8760d03-1b67-4074-98d0-ca5f397571a5" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215455Z:6bc4b787-440e-4f19-8c40-fbb921987133" + "WESTUS:20200224T173715Z:b8760d03-1b67-4074-98d0-ca5f397571a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:54 GMT" + "Mon, 24 Feb 2020 17:37:14 GMT" ], "Content-Length": [ "619" @@ -648,17 +648,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5d9279aa787c9527240ff128\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5d9279aa787c9527240ff128\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-5d9279aa787c9527240ff129\",\r\n \"value\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5e5409c86f56470f90c9a5e5\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5e5409c86f56470f90c9a5e5\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-5e5409c86f56470f90c9a5e6\",\r\n \"value\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\",\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/properties/5d9279aa787c9527240ff128?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvNWQ5Mjc5YWE3ODdjOTUyNzI0MGZmMTI4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5e5409c86f56470f90c9a5e5?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvNWU1NDA5Yzg2ZjU2NDcwZjkwYzlhNWU1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71701906-04af-4988-a8b6-760f9bd1bfa8" + "2021629a-010a-4bb5-b4a1-0d2ab292a349" ], "If-Match": [ "*" @@ -667,10 +667,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -684,7 +684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a336ad6d-a829-4558-abcc-e56e5a4414c8" + "a50f5465-d1a6-432b-898c-5baeed0a2969" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -693,16 +693,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "4baaf8e4-1920-4f8a-81ef-bdca6f26953f" + "998cd991-c4b3-41d4-889e-a508861c158a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215457Z:4baaf8e4-1920-4f8a-81ef-bdca6f26953f" + "WESTUS:20200224T173716Z:998cd991-c4b3-41d4-889e-a508861c158a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:56 GMT" + "Mon, 24 Feb 2020 17:37:15 GMT" ], "Expires": [ "-1" @@ -717,8 +717,8 @@ ], "Names": { "": [ - "ps8693", - "ps3035" + "ps2955", + "ps2334" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json index 03375a5891cb..640744668f7c 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba593cb0-800b-4e3a-b934-a093e5a30bd5" + "f10535b1-eb63-46f2-81d0-a317c600335d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c244de4-6b32-42bb-9058-0076e36fb654" + "fb4a22fc-0fed-48b0-93c4-fc5dc01615be" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "dac6c8c9-dba7-4a2d-81ba-66c90a6f1f87" + "d4cdfe52-17ef-488d-8fd9-302a20799cc2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215735Z:dac6c8c9-dba7-4a2d-81ba-66c90a6f1f87" + "WESTUS:20200224T173940Z:d4cdfe52-17ef-488d-8fd9-302a20799cc2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:35 GMT" + "Mon, 24 Feb 2020 17:39:40 GMT" ], "Content-Length": [ "34" @@ -70,16 +70,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cbd0a0b-942c-4a5f-a4ef-38fb8dd636a1" + "2f4bcb26-22c2-400c-b3b2-27451f138ca9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -93,25 +93,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb915977-e665-48a6-b0c8-310a35344f31" + "5d6bbd7a-018d-4a38-a943-624a47de5be9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "e7452834-aa01-4ef7-9f16-01c02cc6ce83" + "a039eb98-9faa-4540-bff8-cd44909ec68b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215738Z:e7452834-aa01-4ef7-9f16-01c02cc6ce83" + "WESTUS:20200224T173946Z:a039eb98-9faa-4540-bff8-cd44909ec68b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:38 GMT" + "Mon, 24 Feb 2020 17:39:46 GMT" ], "Content-Length": [ "513" @@ -123,27 +123,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8808\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5196\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg4MDg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUxOTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6686f4d0-c2c7-453c-bf96-020d4844093d" + "858572a3-3a01-4de1-95ab-edc2ea4d99ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,31 +160,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJns=\"" + "\"AAAAAAAACss=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45a96ef1-8ac9-4cbc-bf92-8b91fce5da2f" + "89a3cf66-8c80-4fbe-8b5e-beff0209a073" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "1b833ae7-5f13-4314-8696-bcc7e91b3cdf" + "8c69dea5-1ddf-415b-83b6-f63695515bb9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215737Z:1b833ae7-5f13-4314-8696-bcc7e91b3cdf" + "WESTUS:20200224T173943Z:8c69dea5-1ddf-415b-83b6-f63695515bb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:36 GMT" + "Mon, 24 Feb 2020 17:39:43 GMT" ], "Content-Length": [ "433" @@ -196,18 +196,18 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8808\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5196\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg4MDg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUxOTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f71b4282-99b9-488b-a57c-6d478b8b4dc6" + "8ec7ea25-b856-4947-9b77-c39ed3e52c04" ], "If-Match": [ "*" @@ -216,10 +216,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -236,31 +236,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJn0=\"" + "\"AAAAAAAACs0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06cba89b-a8b2-4561-9581-7e4f07a52935" + "588572da-dd50-49ad-b78f-eab6bc6cc879" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "1cbf4931-6df9-47a6-9043-7187f75c52fd" + "2211dce9-b87a-485e-819f-9194933e7ba2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215738Z:1cbf4931-6df9-47a6-9043-7187f75c52fd" + "WESTUS:20200224T173946Z:2211dce9-b87a-485e-819f-9194933e7ba2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:37 GMT" + "Mon, 24 Feb 2020 17:39:46 GMT" ], "Content-Length": [ "433" @@ -272,26 +272,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8808\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5196\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg4MDg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUxOTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27a96796-8091-4a0b-81b6-d338ab223e83" + "13f33ea6-c95d-4842-98ae-1e919e1e0f0c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -302,31 +302,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJns=\"" + "\"AAAAAAAACss=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe5a071a-6812-4dfc-9e5b-e831a99f5211" + "bb35a16e-4c05-4b78-b58c-5333415698cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "36ce5529-01e3-4425-9f43-f2c8ab74e219" + "969dd47c-5707-462b-9921-f5f1504b396c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215737Z:36ce5529-01e3-4425-9f43-f2c8ab74e219" + "WESTUS:20200224T173944Z:969dd47c-5707-462b-9921-f5f1504b396c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:36 GMT" + "Mon, 24 Feb 2020 17:39:44 GMT" ], "Content-Length": [ "433" @@ -338,26 +338,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8808\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5196\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg4MDg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUxOTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c459c843-a0f4-41cf-82b4-7f2ab57054af" + "2780bf47-0836-4169-8dff-4eaed65ac9df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -368,31 +368,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJns=\"" + "\"AAAAAAAACss=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "068a1ced-bdee-4be6-912d-af890c3c11c5" + "858b88d8-d107-4a64-8a79-02bf313928bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "9f24b9e9-6f9a-4660-8d31-9c9e3dd044f4" + "d17d42ca-b162-4967-9d0b-b8c83e8c8335" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215737Z:9f24b9e9-6f9a-4660-8d31-9c9e3dd044f4" + "WESTUS:20200224T173944Z:d17d42ca-b162-4967-9d0b-b8c83e8c8335" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:36 GMT" + "Mon, 24 Feb 2020 17:39:44 GMT" ], "Content-Length": [ "433" @@ -404,26 +404,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8808\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5196\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg4MDg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUxOTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d7b7389-3a5d-4cef-a46b-796978c4b007" + "a2c01f7f-c6c2-4692-9ac9-39bb2e4aca32" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -434,31 +434,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJns=\"" + "\"AAAAAAAACss=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8e15517-7b30-4bf1-8a8e-b65c38749b3f" + "862b6177-2a8d-4b5a-8051-00d5070377fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "bf99718f-d2c6-4c05-8cfa-59c5ee58f4c2" + "ef316064-8c1f-448c-add0-ae8e3f5b2c85" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215738Z:bf99718f-d2c6-4c05-8cfa-59c5ee58f4c2" + "WESTUS:20200224T173944Z:ef316064-8c1f-448c-add0-ae8e3f5b2c85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:37 GMT" + "Mon, 24 Feb 2020 17:39:44 GMT" ], "Content-Length": [ "433" @@ -470,26 +470,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8808\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5196\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg4MDg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUxOTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "014018e3-3f17-44f9-9c56-86e444e6295a" + "597d3931-3c31-40ab-8286-c7df212a16c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -500,31 +500,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJn0=\"" + "\"AAAAAAAACs0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5160e383-c3fe-4b6d-8fd9-2ef93e4db364" + "3836f3f2-ae46-451e-8574-c9ce6e081752" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "311b9eac-ad00-4ed5-b086-dc0caac5735a" + "8da814da-6786-4adb-810d-a1bd323d4575" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215738Z:311b9eac-ad00-4ed5-b086-dc0caac5735a" + "WESTUS:20200224T173946Z:8da814da-6786-4adb-810d-a1bd323d4575" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:38 GMT" + "Mon, 24 Feb 2020 17:39:46 GMT" ], "Content-Length": [ "433" @@ -536,26 +536,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8808\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5196\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg4MDg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUxOTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3f65c1c-04b3-436d-9dbd-3bf8ec379d58" + "7192ce1c-41fa-433d-ae95-ef977b715ee0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -569,25 +569,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66b38bbc-df2a-47f6-95f5-f2173f8baf3c" + "f01611de-98be-4449-8fab-0b9aef54fdff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "4ec7e31e-d0a3-4a30-8c42-0144f3e0c19b" + "9e2eb70e-eebe-44d6-a023-9fce12583103" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215739Z:4ec7e31e-d0a3-4a30-8c42-0144f3e0c19b" + "WESTUS:20200224T173948Z:9e2eb70e-eebe-44d6-a023-9fce12583103" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:39 GMT" + "Mon, 24 Feb 2020 17:39:48 GMT" ], "Content-Length": [ "87" @@ -603,13 +603,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8808?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg4MDg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5196?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczUxOTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cdd5d21-614b-49a8-880e-7e28a7a232fb" + "757ad89c-2c92-4ea6-86a5-767a8a2f3904" ], "If-Match": [ "*" @@ -618,10 +618,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -635,25 +635,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99032af9-809d-4efd-bea0-b8655e01484f" + "4f621d11-fea4-4853-b3dd-86c79ef2e84e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "0f7ee5d9-6bb0-4c5d-89cb-135394aee88a" + "a9294109-5f59-42e2-a246-d61f38c637bd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215739Z:0f7ee5d9-6bb0-4c5d-89cb-135394aee88a" + "WESTUS:20200224T173948Z:a9294109-5f59-42e2-a246-d61f38c637bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:38 GMT" + "Mon, 24 Feb 2020 17:39:48 GMT" ], "Expires": [ "-1" @@ -668,7 +668,7 @@ ], "Names": { "": [ - "ps8808" + "ps5196" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json index 0a19f2c8ee03..ddb15d644f29 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d8ed82e-44b4-480a-b9c4-5111d12004ee" + "51c91751-6fa4-4d4e-8d0f-350f0f888157" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e0fd11c-68ad-4df5-85a7-13b8f41a5d23" + "34cfe2f4-111b-4f69-9b82-9bf0a076375b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "4ebf1ae2-a126-40e3-ab76-33cb479b0116" + "f6fa406e-4cb1-405f-9296-e3925177cb75" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215622Z:4ebf1ae2-a126-40e3-ab76-33cb479b0116" + "WESTUS:20200224T173839Z:f6fa406e-4cb1-405f-9296-e3925177cb75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:22 GMT" + "Mon, 24 Feb 2020 17:38:38 GMT" ], "Content-Length": [ "34" @@ -70,16 +70,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ffa3bc0-a8d5-44ba-a793-c277a7f6a0e5" + "ea368ffc-df63-4d8f-9522-fa8ad98c61fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -93,25 +93,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2c00bce-932d-4779-911e-1ac5822abc42" + "e393e86e-c1a3-4c2f-a64e-1a120c661df9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "faedfbf5-153c-4a9f-8e62-fbb2acbe9b78" + "3420c47b-f0ae-4401-80ff-7556849b83fa" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215630Z:faedfbf5-153c-4a9f-8e62-fbb2acbe9b78" + "WESTUS:20200224T173846Z:3420c47b-f0ae-4401-80ff-7556849b83fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:30 GMT" + "Mon, 24 Feb 2020 17:38:45 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/ps8888?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM4ODg4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9498?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5NDk4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7492\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"4e6ffd05-0250-4ab8-8a5e-323863daffc1\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7710\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"904a5fc8-59e6-4a79-9e0a-3035419c9b33\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "26d9c8b2-c9bd-4e04-96e7-d18377c9d6c5" + "2de77dc1-11da-4dee-936a-3669090a1bbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,31 +159,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJgs=\"" + "\"AAAAAAAAClo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38726432-dcb4-4e19-8b48-28424b091e5e" + "9b328d48-b038-42e0-9d9e-657826c8eb78" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "4754846d-5244-4997-a817-4ad98369acec" + "a2b48453-1847-4058-86c1-d85acfd91865" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215627Z:4754846d-5244-4997-a817-4ad98369acec" + "WESTUS:20200224T173842Z:a2b48453-1847-4058-86c1-d85acfd91865" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:27 GMT" + "Mon, 24 Feb 2020 17:38:41 GMT" ], "Content-Length": [ "505" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8888\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7492\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5d927a0a787c9527240ff14c}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9498\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps9498\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7710\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5e540a226f56470f90c9a609}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps8888\",\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/ps9498\",\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": [ - "d01cebc5-5ef8-40c1-bad9-2f5365ae87db" + "3aaf8296-db6d-4fdb-948f-7187b3d1b92d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,31 +231,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJg0=\"" + "\"AAAAAAAACl0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7e4058e-2adf-4274-abbf-bd179e351b0d" + "a103ad8f-7646-41a7-88ef-7ab8fad52eaf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "482a2971-deeb-425f-a224-18890fea507a" + "067e1339-2e86-4f4f-a1a7-2be7b4de7f70" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215628Z:482a2971-deeb-425f-a224-18890fea507a" + "WESTUS:20200224T173844Z:067e1339-2e86-4f4f-a1a7-2be7b4de7f70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:28 GMT" + "Mon, 24 Feb 2020 17:38:43 GMT" ], "Content-Length": [ "1441" @@ -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 \"enableHttpCorrelationHeaders\": true,\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/ps8888\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\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/ps9498\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps8888\",\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 \"enableHttpCorrelationHeaders\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps9498\",\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 \"enableHttpCorrelationHeaders\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6fda77ab-6c4a-47c0-98b6-c4c82875147a" + "31c3631c-8d7f-49ae-a2e0-ff0f63543081" ], "If-Match": [ "*" @@ -286,10 +286,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,31 +306,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhA=\"" + "\"AAAAAAAACmA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1933f666-9aec-4868-983f-d6ca504be916" + "1c2b624f-f9b2-431a-b0bf-c6161031c904" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "0d6fc8f5-123c-4009-8307-bfd0f11a4c4d" + "f3afacb6-0d50-418d-8844-deec3acd867d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215629Z:0d6fc8f5-123c-4009-8307-bfd0f11a4c4d" + "WESTUS:20200224T173845Z:f3afacb6-0d50-418d-8844-deec3acd867d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:29 GMT" + "Mon, 24 Feb 2020 17:38:44 GMT" ], "Content-Length": [ "1100" @@ -342,7 +342,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\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/ps8888\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\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/ps9498\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -352,16 +352,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "282e3da7-612b-4c05-ae2f-8da8134ac892" + "5048740e-672b-4121-93f9-103964bb56c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -372,31 +372,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhA=\"" + "\"AAAAAAAACmA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52abefd2-0139-4bc3-8d81-faa504ee4286" + "c2db40cc-82be-4334-8e18-c4aca4396edf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "29683858-8c8d-4812-8462-6aeb8476c48c" + "b7a31a89-359c-4e72-a8f7-1d6e648cd6e7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215629Z:29683858-8c8d-4812-8462-6aeb8476c48c" + "WESTUS:20200224T173845Z:b7a31a89-359c-4e72-a8f7-1d6e648cd6e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:29 GMT" + "Mon, 24 Feb 2020 17:38:44 GMT" ], "Content-Length": [ "1100" @@ -408,7 +408,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\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/ps8888\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\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/ps9498\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -418,16 +418,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "270dd84a-fb30-4988-9204-560897605ea9" + "e7557994-6eb6-4192-bc78-eea9a9b351a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -438,31 +438,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhA=\"" + "\"AAAAAAAACmA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9ffa260-519c-4a2f-8f58-e6ac59b069f6" + "c6c60f56-e92c-49e3-801b-5935ffeb8f50" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "4602f195-0e18-4187-aae5-66c18e6b3f27" + "0d47c9dc-fdec-4679-a7af-4423490c963a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215629Z:4602f195-0e18-4187-aae5-66c18e6b3f27" + "WESTUS:20200224T173845Z:0d47c9dc-fdec-4679-a7af-4423490c963a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:29 GMT" + "Mon, 24 Feb 2020 17:38:44 GMT" ], "Content-Length": [ "1100" @@ -474,7 +474,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\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/ps8888\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\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/ps9498\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -484,7 +484,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d47e56b-285d-493c-9218-f4c4fdaee047" + "0e33b4f7-c7d0-461b-825e-4685e40ab2cb" ], "If-Match": [ "*" @@ -493,10 +493,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -510,7 +510,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0dd1bfce-6a62-4c9d-a1c6-a1d0ddb20b9b" + "78401759-50ba-46fe-bfd4-411d64b871c2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -519,16 +519,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "599dbf90-bcca-4739-95ee-93b137c6a9c1" + "4c18df19-6692-4524-a8d9-356a9a2553c4" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215630Z:599dbf90-bcca-4739-95ee-93b137c6a9c1" + "WESTUS:20200224T173846Z:4c18df19-6692-4524-a8d9-356a9a2553c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:30 GMT" + "Mon, 24 Feb 2020 17:38:45 GMT" ], "Expires": [ "-1" @@ -547,7 +547,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f97c4349-9c70-4887-8706-91bfb8ec8072" + "76989c89-8dea-4a9f-be8b-6fbf8285160b" ], "If-Match": [ "*" @@ -556,10 +556,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -573,7 +573,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8d7571d-0f6b-4b34-9189-a457e4a9e801" + "b0f7df6e-07cc-4ec4-ad4f-5409f4eae4a1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -582,16 +582,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "a7770012-d507-424a-a050-4f04e1c67216" + "d900cb19-3a6c-4681-8149-45db687daa8e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215630Z:a7770012-d507-424a-a050-4f04e1c67216" + "WESTUS:20200224T173846Z:d900cb19-3a6c-4681-8149-45db687daa8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:30 GMT" + "Mon, 24 Feb 2020 17:38:45 GMT" ], "Expires": [ "-1" @@ -601,13 +601,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8888?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM4ODg4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9498?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5NDk4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2912a0b9-ea79-467e-9ecf-5746bfa9b231" + "e65a6702-6046-430e-836b-55de7218adcd" ], "If-Match": [ "*" @@ -616,10 +616,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -633,7 +633,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8544b483-daa5-4ec6-82be-d9d6969b91e8" + "f6d8b083-5766-4820-abcd-3b5b8a35d43b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -642,16 +642,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "1d4b5ffa-6b8c-4035-ae95-7bb7be8caa5d" + "5a989a83-62b4-48df-b942-cdc5ecda369f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215631Z:1d4b5ffa-6b8c-4035-ae95-7bb7be8caa5d" + "WESTUS:20200224T173847Z:5a989a83-62b4-48df-b942-cdc5ecda369f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:30 GMT" + "Mon, 24 Feb 2020 17:38:46 GMT" ], "Expires": [ "-1" @@ -670,16 +670,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2ab13b1-32aa-4e7b-8232-c8857d40f177" + "7bd01cd4-108b-4821-b9df-692eebf2077e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -693,25 +693,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2fe3f701-e9c3-4693-8480-736ac1f3f6e0" + "c364d7b6-e754-42ad-8bdd-563ffaa1d62c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "45f98ba9-f53f-4368-b9fb-064e0b06e3ce" + "27fd4e13-b921-4f70-8f28-48ed9dad3ffa" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215631Z:45f98ba9-f53f-4368-b9fb-064e0b06e3ce" + "WESTUS:20200224T173847Z:27fd4e13-b921-4f70-8f28-48ed9dad3ffa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:31 GMT" + "Mon, 24 Feb 2020 17:38:46 GMT" ], "Content-Length": [ "561" @@ -723,17 +723,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5d927a0a787c9527240ff14b\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5d927a0a787c9527240ff14b\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5d927a0a787c9527240ff14c\",\r\n \"value\": \"4e6ffd05-0250-4ab8-8a5e-323863daffc1\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5e540a226f56470f90c9a608\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5e540a226f56470f90c9a608\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5e540a226f56470f90c9a609\",\r\n \"value\": \"904a5fc8-59e6-4a79-9e0a-3035419c9b33\",\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/properties/5d927a0a787c9527240ff14b?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvNWQ5MjdhMGE3ODdjOTUyNzI0MGZmMTRiP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5e540a226f56470f90c9a608?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvNWU1NDBhMjI2ZjU2NDcwZjkwYzlhNjA4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ac0eeef-39b6-497a-811f-fb6499ed70eb" + "06d06371-9920-4ba9-8a00-a3a50e4ee86f" ], "If-Match": [ "*" @@ -742,10 +742,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -759,7 +759,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "779820db-a47a-4487-8e80-0c431644eee0" + "cadb15ad-bb6e-45df-8e12-d2f02c76b7a7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -768,16 +768,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "dbf2621e-d194-44d0-8ba2-4ea2ff1bf84b" + "204af295-fb58-4945-9e1f-57d264ea5dd6" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215631Z:dbf2621e-d194-44d0-8ba2-4ea2ff1bf84b" + "WESTUS:20200224T173847Z:204af295-fb58-4945-9e1f-57d264ea5dd6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:31 GMT" + "Mon, 24 Feb 2020 17:38:46 GMT" ], "Expires": [ "-1" @@ -792,8 +792,8 @@ ], "Names": { "": [ - "ps8888", - "ps7492" + "ps9498", + "ps7710" ] }, "Variables": { 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 880a85eaf085..73de49e33e9d 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dbb7c3f-b9f3-43c4-bf48-453bad41795d" + "a0352903-cad6-4c59-b8a4-8633941e4d58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1476b245-243d-4381-9565-2fead312f149" + "ac1be13f-9bc3-42d1-9e62-1675be872e36" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "177cc32e-6342-451b-af52-02a9342fc9a7" + "42c85a18-6264-4ac4-a338-9364579bb252" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215645Z:177cc32e-6342-451b-af52-02a9342fc9a7" + "WESTUS:20200224T173859Z:42c85a18-6264-4ac4-a338-9364579bb252" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:44 GMT" + "Mon, 24 Feb 2020 17:38:58 GMT" ], "Content-Length": [ "1808" @@ -70,16 +70,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "307e5d96-7bff-4508-9d4d-77249414eb12" + "5eae8084-69b8-4552-b4ca-a1d9bea039f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACKk=\"" + "\"AAAAAAAACCw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "20f55bac-71df-452f-bdef-6bd585182de3" + "8dd97bab-7a7a-446b-8589-e39dcb03a438" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "cb7d58de-79eb-401b-86eb-77c45fd3a182" + "712ff7e9-c729-4718-8d20-27ed2c76cfb8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215646Z:cb7d58de-79eb-401b-86eb-77c45fd3a182" + "WESTUS:20200224T173859Z:712ff7e9-c729-4718-8d20-27ed2c76cfb8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:46 GMT" + "Mon, 24 Feb 2020 17:38:59 GMT" ], "Content-Length": [ "562" @@ -136,16 +136,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54a9ff09-f1d4-4a29-8b05-39a24c8d7b32" + "155549bf-ae6d-4793-bd8a-f13b71dfe8c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACKo=\"" + "\"AAAAAAAACC0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "245c5b37-5a92-40a9-a04d-292e1400babb" + "e30b7dca-d023-4dda-9fab-bfa3b74ee375" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "c2bb96ae-2fdb-40f1-98b8-8515a580b01c" + "13dc27b3-5585-472f-9c27-2b0d1131dfb9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215646Z:c2bb96ae-2fdb-40f1-98b8-8515a580b01c" + "WESTUS:20200224T173859Z:13dc27b3-5585-472f-9c27-2b0d1131dfb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:46 GMT" + "Mon, 24 Feb 2020 17:38:59 GMT" ], "Content-Length": [ "518" @@ -202,16 +202,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a979d426-cc13-428b-bce0-f1658d605226" + "8285fe2d-6748-47e5-a453-bd5f536a4f90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -222,13 +222,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACKs=\"" + "\"AAAAAAAACC4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "210ca4da-2408-496f-b9c1-378f68854a00" + "3bd9104c-cbdf-4c47-9873-d6ff75187b60" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,16 +237,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "4967e79a-7a06-4f7f-b6c9-1e955c2896d2" + "6076a054-8954-4294-87ba-8313cb4472b6" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215646Z:4967e79a-7a06-4f7f-b6c9-1e955c2896d2" + "WESTUS:20200224T173859Z:6076a054-8954-4294-87ba-8313cb4472b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:46 GMT" + "Mon, 24 Feb 2020 17:38:59 GMT" ], "Content-Length": [ "538" @@ -262,22 +262,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4157?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQxNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ3ODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps9470\",\r\n \"description\": \"ps3384\",\r\n \"type\": \"custom\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4522\",\r\n \"description\": \"ps4678\",\r\n \"type\": \"custom\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cbbc3b91-5b19-4444-b78d-184826d728f3" + "16486072-0beb-4f4e-8321-87e0b513343a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhw=\"" + "\"AAAAAAAACmo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b32e964-a38b-4fe7-aab8-fad4b7adae8d" + "a81c1018-657f-43b2-9b6a-21f939570a61" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "163d6f27-71f7-4dff-9df6-9741c4e85cc9" + "98ddcf45-a353-4384-af70-ba67720b18db" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215647Z:163d6f27-71f7-4dff-9df6-9741c4e85cc9" + "WESTUS:20200224T173900Z:98ddcf45-a353-4384-af70-ba67720b18db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:47 GMT" + "Mon, 24 Feb 2020 17:38:59 GMT" ], "Content-Length": [ "403" @@ -330,26 +330,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4157\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4157\",\r\n \"properties\": {\r\n \"displayName\": \"ps9470\",\r\n \"description\": \"ps3384\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4782\",\r\n \"properties\": {\r\n \"displayName\": \"ps4522\",\r\n \"description\": \"ps4678\",\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/ps4157?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQxNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ3ODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "755b7cba-f6cd-4fdc-9880-27db3c3b6f16" + "c73ebada-cd5b-4a52-a849-09eeeae5e0e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -360,13 +360,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhw=\"" + "\"AAAAAAAACmo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c43f322e-b5bc-4aaf-b01c-90b97fa4bcc8" + "2110a2fe-e9b2-4800-b4d4-ead6448fcd8d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,16 +375,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "fa424f56-b7ec-4172-859a-8f43ee9f6fca" + "7a93c522-962b-4923-a81f-e996451bd0e2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215647Z:fa424f56-b7ec-4172-859a-8f43ee9f6fca" + "WESTUS:20200224T173900Z:7a93c522-962b-4923-a81f-e996451bd0e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:47 GMT" + "Mon, 24 Feb 2020 17:38:59 GMT" ], "Content-Length": [ "403" @@ -396,26 +396,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4157\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4157\",\r\n \"properties\": {\r\n \"displayName\": \"ps9470\",\r\n \"description\": \"ps3384\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4782\",\r\n \"properties\": {\r\n \"displayName\": \"ps4522\",\r\n \"description\": \"ps4678\",\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/ps4157?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQxNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ3ODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5928fe7-4c60-42db-b7c4-bb67d568a99e" + "f1490512-386f-47c2-a2d0-76ff078cb923" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -426,13 +426,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJh4=\"" + "\"AAAAAAAACmw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2437099-06d6-4a17-9f98-960047729bde" + "110c6d78-874a-46e2-ae19-024716ffe19d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,16 +441,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "7760424c-75a5-46a6-8980-38c049e82e1f" + "ce4bc024-43bc-45c8-95cf-2dc97b536d8c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215648Z:7760424c-75a5-46a6-8980-38c049e82e1f" + "WESTUS:20200224T173900Z:ce4bc024-43bc-45c8-95cf-2dc97b536d8c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:48 GMT" + "Mon, 24 Feb 2020 17:39:00 GMT" ], "Content-Length": [ "403" @@ -462,26 +462,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4157\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4157\",\r\n \"properties\": {\r\n \"displayName\": \"ps1035\",\r\n \"description\": \"ps1149\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4782\",\r\n \"properties\": {\r\n \"displayName\": \"ps2029\",\r\n \"description\": \"ps1539\",\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/ps4157?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQxNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ3ODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a60afb44-8bb9-4617-a6e9-d45827a65c3b" + "43017a81-f192-4169-8b35-46dd169cf143" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -495,7 +495,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad8d8086-b443-4dd3-bfb3-911e8645a0c0" + "34d758b9-ad5f-4a30-9824-255a40f0e2d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,16 +504,16 @@ "11986" ], "x-ms-correlation-request-id": [ - "2be5c6ee-3d4a-49e2-888d-6379bfd32d44" + "1d622464-755f-44cf-b5d0-49ec377d5b5a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215653Z:2be5c6ee-3d4a-49e2-888d-6379bfd32d44" + "WESTUS:20200224T173905Z:1d622464-755f-44cf-b5d0-49ec377d5b5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:53 GMT" + "Mon, 24 Feb 2020 17:39:05 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/ps4157?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQxNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ3ODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps1035\",\r\n \"description\": \"ps1149\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps2029\",\r\n \"description\": \"ps1539\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6556fda9-94a5-4b39-952d-43823e682da0" + "f88353a8-da67-4683-a1a9-3b2392f520fd" ], "If-Match": [ "*" @@ -544,10 +544,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -567,7 +567,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fb9d55bd-9f81-4fa9-8183-a291e2cc4960" + "56aeaf5b-6203-481f-9703-89cccb268e5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -576,16 +576,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "f54a3d06-4f3e-4263-91e0-4667196d49f9" + "221cbed5-ffff-4ea3-9282-bf86427ff7d8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215647Z:f54a3d06-4f3e-4263-91e0-4667196d49f9" + "WESTUS:20200224T173900Z:221cbed5-ffff-4ea3-9282-bf86427ff7d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:47 GMT" + "Mon, 24 Feb 2020 17:39:00 GMT" ], "Expires": [ "-1" @@ -601,16 +601,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e48f0955-1d52-4550-9e09-7444fc6e7896" + "075baf18-8c18-4bac-8a11-77936cfb8233" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -624,7 +624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "984dbd4b-b8ca-4c9d-9c5c-c2ef78e1d8e6" + "076c4f94-8954-4d92-9c2c-836f1bfe1f03" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,19 +633,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "75a42d0e-42b1-48d2-aec2-c08269d3ac2a" + "c5b9d30e-5be6-4a4a-ba7f-476d3cab8e3e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215648Z:75a42d0e-42b1-48d2-aec2-c08269d3ac2a" + "WESTUS:20200224T173901Z:c5b9d30e-5be6-4a4a-ba7f-476d3cab8e3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:48 GMT" + "Mon, 24 Feb 2020 17:39:00 GMT" ], "Content-Length": [ - "1287" + "1285" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,26 +654,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/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4157?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDE1Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4782?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDc4Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4893664d-a95a-4ce2-85d4-23f010361383" + "5c528f3f-87f3-482a-b7b9-45d320dd68a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -684,13 +684,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJh4=\"" + "\"AAAAAAAACmw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3866cb84-9be5-440a-aea9-5c39f62f3e79" + "a412e9da-f798-46b6-9abe-7e28b7072cdc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -699,16 +699,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "a1281432-2c70-4afd-b14d-185a4234a51b" + "9b3f2c6c-f095-431e-8de9-9a6c172e54a2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215648Z:a1281432-2c70-4afd-b14d-185a4234a51b" + "WESTUS:20200224T173901Z:9b3f2c6c-f095-431e-8de9-9a6c172e54a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:48 GMT" + "Mon, 24 Feb 2020 17:39:00 GMT" ], "Content-Length": [ "429" @@ -720,7 +720,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4157\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4157\",\r\n \"properties\": {\r\n \"displayName\": \"ps1035\",\r\n \"description\": \"ps1149\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4782\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4782\",\r\n \"properties\": {\r\n \"displayName\": \"ps2029\",\r\n \"description\": \"ps1539\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 }, { @@ -730,16 +730,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe83862f-d61a-40bd-926b-a153e4ce1be3" + "a7caecd9-cc02-4214-a677-89bbbf54f91b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -753,7 +753,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c493386-5e27-4958-9861-27b22fc0d37d" + "5fc1cfe3-9f6a-4c0a-9d32-bc76af929082" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -762,16 +762,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "fe4e75ef-891c-445c-aa0d-77fcee1d5235" + "63b92ea8-f57c-43dd-9ed5-2617a932ac15" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215649Z:fe4e75ef-891c-445c-aa0d-77fcee1d5235" + "WESTUS:20200224T173901Z:63b92ea8-f57c-43dd-9ed5-2617a932ac15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:48 GMT" + "Mon, 24 Feb 2020 17:39:01 GMT" ], "Content-Length": [ "2366" @@ -783,7 +783,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4157\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4157\",\r\n \"properties\": {\r\n \"displayName\": \"ps1035\",\r\n \"description\": \"ps1149\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4782\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4782\",\r\n \"properties\": {\r\n \"displayName\": \"ps2029\",\r\n \"description\": \"ps1539\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}", "StatusCode": 200 }, { @@ -793,16 +793,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84b7894b-295a-4bf8-9fb7-5eefb5695898" + "34488e75-6a0a-4ede-9b2f-4fd540864710" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -816,7 +816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c32c7c05-5764-48f9-8c45-e4a9248f5ac5" + "75bce340-28df-45dc-9b03-8f1628f64965" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -825,16 +825,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "706478b9-4bb0-47ea-babd-52abd9a85a95" + "96839fb5-dcb8-48b6-9d9f-6ddbf1ab0146" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215649Z:706478b9-4bb0-47ea-babd-52abd9a85a95" + "WESTUS:20200224T173901Z:96839fb5-dcb8-48b6-9d9f-6ddbf1ab0146" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:49 GMT" + "Mon, 24 Feb 2020 17:39:01 GMT" ], "Content-Length": [ "1886" @@ -850,22 +850,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4157?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDE1Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4782?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDc4Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3cf4ace-924b-4734-91b0-a11d97add941" + "79aeb7da-8d86-4286-9d61-20add50fd428" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -879,7 +879,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c295be7-ac04-4d47-9183-c7aefee1728b" + "f23c4761-8c5f-49dd-8cc7-39d868ef32c3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -888,16 +888,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "cd34f343-1f2f-4d70-9f21-ce58a877ecfa" + "a030f492-77e5-4dc7-af15-df3d227f4c15" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215649Z:cd34f343-1f2f-4d70-9f21-ce58a877ecfa" + "WESTUS:20200224T173901Z:a030f492-77e5-4dc7-af15-df3d227f4c15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:49 GMT" + "Mon, 24 Feb 2020 17:39:01 GMT" ], "Expires": [ "-1" @@ -916,16 +916,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92464738-3811-4684-a720-80d7015c08db" + "d48de69e-ce2a-4d87-a66b-04ced9f865c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -939,7 +939,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0b4bba0-60b5-4dc1-948c-745f667368c9" + "2a9227ee-55a7-42b1-ac67-22944bbb49d6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -948,19 +948,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "5d6e8df8-46e0-4115-a711-34f61eef52e8" + "e6da02da-b68b-497d-891a-9716367db4a0" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215649Z:5d6e8df8-46e0-4115-a711-34f61eef52e8" + "WESTUS:20200224T173902Z:e6da02da-b68b-497d-891a-9716367db4a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:49 GMT" + "Mon, 24 Feb 2020 17:39:02 GMT" ], "Content-Length": [ - "665" + "664" ], "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/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\": \"2019-06-16T22:21:30.153Z\",\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/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-02-24T17:03:35.77Z\",\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/ps4157/users/1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQxNTcvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782/users/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ3ODIvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa787633-cc90-44a3-970e-77ee4cc05712" + "32466c93-d356-4d7b-8653-79482f5eb686" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -999,13 +999,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJic=\"" + "\"AAAAAAAACnU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e924b98-79cd-4e65-a628-b96f91fa3238" + "fb5c3759-9d2f-4341-ac7b-6cd877209435" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1014,19 +1014,19 @@ "1196" ], "x-ms-correlation-request-id": [ - "8317f284-7b17-4d8a-ac92-86a380e3a76a" + "14ffd639-e4ca-4022-9296-c4763ecc4a6f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215650Z:8317f284-7b17-4d8a-ac92-86a380e3a76a" + "WESTUS:20200224T173903Z:14ffd639-e4ca-4022-9296-c4763ecc4a6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:50 GMT" + "Mon, 24 Feb 2020 17:39:02 GMT" ], "Content-Length": [ - "505" + "504" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1035,7 +1035,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4157/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\": \"2019-06-16T22:21:30.153Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782/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-02-24T17:03:35.77Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", "StatusCode": 201 }, { @@ -1045,16 +1045,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae5e78ff-9a2e-4d2b-8688-5ca2270a61ed" + "c6ba69da-dfc2-4a17-aa63-343ec6c50022" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1068,7 +1068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "34060fdf-c21e-473f-a08c-153827a54124" + "02784a27-56af-466a-8ba6-2717ee5f29cc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1077,16 +1077,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "de545289-815d-4940-b926-4679b8297a4f" + "06f58549-e6e2-4d04-af87-f9b2c1be5fad" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215651Z:de545289-815d-4940-b926-4679b8297a4f" + "WESTUS:20200224T173904Z:06f58549-e6e2-4d04-af87-f9b2c1be5fad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:51 GMT" + "Mon, 24 Feb 2020 17:39:03 GMT" ], "Content-Length": [ "1715" @@ -1098,7 +1098,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/ps4157\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps4157\",\r\n \"properties\": {\r\n \"displayName\": \"ps1035\",\r\n \"description\": \"ps1149\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/ps4782\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps4782\",\r\n \"properties\": {\r\n \"displayName\": \"ps2029\",\r\n \"description\": \"ps1539\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { @@ -1108,16 +1108,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69f05c3d-c95d-45f4-b624-631d5b87aba1" + "182f0102-57e3-4cd0-b57d-b15592280940" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1131,7 +1131,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30cb68ae-9dc3-4144-8676-c182a5e50f4c" + "eeb7b321-cb3d-47e5-9792-fbc40a50ef99" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1140,16 +1140,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "5164ec39-4cd8-4460-8f95-bc20219e619e" + "10f97c8a-2329-4812-85bf-761b53b267c1" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215652Z:5164ec39-4cd8-4460-8f95-bc20219e619e" + "WESTUS:20200224T173904Z:10f97c8a-2329-4812-85bf-761b53b267c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:52 GMT" + "Mon, 24 Feb 2020 17:39:04 GMT" ], "Content-Length": [ "1247" @@ -1165,22 +1165,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4157/users/1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQxNTcvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782/users/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ3ODIvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80ff5bdf-92d5-4eee-9fea-3e102fb76afe" + "4e200df0-885f-43a8-bf43-1c53f22bc215" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1194,7 +1194,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39acecdf-7f2c-4c4e-bb0d-1f3bd6ea1cd6" + "0ee60dbb-ea66-48ac-a45d-c9367eb22dbc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1203,16 +1203,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "86cc6f7a-ee3c-42e1-8f7e-a5515bea0a21" + "b53404bd-9f24-470d-8bc4-29debebe1b8c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215651Z:86cc6f7a-ee3c-42e1-8f7e-a5515bea0a21" + "WESTUS:20200224T173904Z:b53404bd-9f24-470d-8bc4-29debebe1b8c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:51 GMT" + "Mon, 24 Feb 2020 17:39:04 GMT" ], "Expires": [ "-1" @@ -1225,28 +1225,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4226?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQyMjY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps7137?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczcxMzc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4027\",\r\n \"description\": \"ps5314\",\r\n \"type\": \"external\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps228\",\r\n \"description\": \"ps7026\",\r\n \"type\": \"external\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9847547d-17b2-45a0-9676-e3ce335d74b3" + "ce18c127-3feb-4420-97fb-bfe651e8f129" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "112" + "111" ] }, "ResponseHeaders": { @@ -1257,13 +1257,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJi4=\"" + "\"AAAAAAAACnw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e1fe2a0-1d17-4a8c-999c-7fe8df9a8cf3" + "589ff103-aa1a-46f1-ae89-207892ef8da4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1272,19 +1272,19 @@ "1195" ], "x-ms-correlation-request-id": [ - "1d258131-235f-45c1-9943-25d60e07e80a" + "e154fe48-610f-488c-bc8d-a4e1c0b24309" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215652Z:1d258131-235f-45c1-9943-25d60e07e80a" + "WESTUS:20200224T173905Z:e154fe48-610f-488c-bc8d-a4e1c0b24309" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:52 GMT" + "Mon, 24 Feb 2020 17:39:04 GMT" ], "Content-Length": [ - "417" + "416" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1293,26 +1293,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4226\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4226\",\r\n \"properties\": {\r\n \"displayName\": \"ps4027\",\r\n \"description\": \"ps5314\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": \"aad:///groups/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps7137\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps7137\",\r\n \"properties\": {\r\n \"displayName\": \"ps228\",\r\n \"description\": \"ps7026\",\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/ps4226?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQyMjY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps7137?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczcxMzc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "906d9e46-296d-4a2b-be10-a21db68eedd1" + "1f853e64-1b69-46e6-9212-46c2660640ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1323,13 +1323,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJi4=\"" + "\"AAAAAAAACnw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ce3072f-18f7-4e70-afcf-56919296e5a6" + "dd7c8627-68fe-42bb-a398-2557827c1e0c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1338,19 +1338,19 @@ "11987" ], "x-ms-correlation-request-id": [ - "daaa39ff-18b1-4400-bbe2-6210b5fd3bb0" + "24f75f13-5045-4933-85df-b2a50527621e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215652Z:daaa39ff-18b1-4400-bbe2-6210b5fd3bb0" + "WESTUS:20200224T173905Z:24f75f13-5045-4933-85df-b2a50527621e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:52 GMT" + "Mon, 24 Feb 2020 17:39:04 GMT" ], "Content-Length": [ - "405" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1359,26 +1359,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4226\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4226\",\r\n \"properties\": {\r\n \"displayName\": \"ps4027\",\r\n \"description\": \"ps5314\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps7137\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps7137\",\r\n \"properties\": {\r\n \"displayName\": \"ps228\",\r\n \"description\": \"ps7026\",\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/ps4226?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQyMjY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps7137?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczcxMzc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25212698-f647-4765-ab45-21c45dd00ce1" + "12b0bfc9-5b55-4d00-83fd-ddafbdd2c02e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1392,7 +1392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "899b4883-6b80-48a5-96eb-f7d7ff14977d" + "44d04543-916e-4105-9c8b-7414a73b034f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1401,16 +1401,16 @@ "11985" ], "x-ms-correlation-request-id": [ - "447f7b73-eb57-4d9e-8e2e-2011a6f2883e" + "98863bc2-7c3b-46ff-88da-938708f8775a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215653Z:447f7b73-eb57-4d9e-8e2e-2011a6f2883e" + "WESTUS:20200224T173906Z:98863bc2-7c3b-46ff-88da-938708f8775a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:53 GMT" + "Mon, 24 Feb 2020 17:39:05 GMT" ], "Content-Length": [ "81" @@ -1426,13 +1426,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4157?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQxNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4782?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ3ODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a54fabe1-f152-4368-b11e-403c2ffca82d" + "0138c42e-0fd4-4198-b998-e9463560f44f" ], "If-Match": [ "*" @@ -1441,10 +1441,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1458,7 +1458,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6ac687f-fc56-4661-a1e3-44c71752af79" + "8e9cb77c-1fc1-428e-877f-40049b308296" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1467,16 +1467,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "c690ec65-dc91-441d-a683-e3990fda71b0" + "a413fb90-aa53-4c38-be05-647a7e95ca94" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215653Z:c690ec65-dc91-441d-a683-e3990fda71b0" + "WESTUS:20200224T173905Z:a413fb90-aa53-4c38-be05-647a7e95ca94" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:53 GMT" + "Mon, 24 Feb 2020 17:39:05 GMT" ], "Expires": [ "-1" @@ -1489,13 +1489,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4226?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQyMjY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps7137?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczcxMzc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52bf078f-bc70-4ff6-917f-fb8830162d8f" + "36e86d81-2263-492f-a1cf-d773ae27cd2f" ], "If-Match": [ "*" @@ -1504,10 +1504,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1521,7 +1521,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf959d72-f0e2-40e6-98f9-060993d7aaf2" + "782dcbd9-f416-420c-8301-f44967f95b64" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1530,16 +1530,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "9d7634b6-53ac-41b0-916b-a0f372b0dbd7" + "02cd4167-3e05-4978-bf6d-52bacf1a635c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215653Z:9d7634b6-53ac-41b0-916b-a0f372b0dbd7" + "WESTUS:20200224T173905Z:02cd4167-3e05-4978-bf6d-52bacf1a635c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:53 GMT" + "Mon, 24 Feb 2020 17:39:05 GMT" ], "Expires": [ "-1" @@ -1554,14 +1554,14 @@ ], "Names": { "": [ - "ps4157", - "ps4226", - "ps9470", - "ps3384", - "ps1035", - "ps1149", - "ps4027", - "ps5314" + "ps4782", + "ps7137", + "ps4522", + "ps4678", + "ps2029", + "ps1539", + "ps228", + "ps7026" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json index a7f031ab31fb..91fb2276c399 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json @@ -4,25 +4,25 @@ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2019-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"allowedTenants\": [\r\n \"samirtestbc.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signup-policy\",\r\n \"signinPolicyName\": \"B2C_1_Sign-policy\",\r\n \"clientId\": \"ps3601\",\r\n \"clientSecret\": \"ps9742\"\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\": \"ps143\",\r\n \"clientSecret\": \"ps1923\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7ecddc0c-c32e-4787-b8ae-b4f8364562d9" + "66904e42-af50-4a8c-af44-694d7512feff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "249" + "245" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhk=\"" + "\"AAAAAAAADVw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80e88bd3-0a5e-4e88-9c91-fb9f4a62b898" + "19d7cebd-44c9-43f7-990b-afc636ee8826" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,19 +48,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "0cb19f70-8f56-41c8-83fb-e7126640e0da" + "30237379-ac2b-4e9e-ac51-02e23fb5e120" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215641Z:0cb19f70-8f56-41c8-83fb-e7126640e0da" + "WESTUS:20200224T215211Z:30237379-ac2b-4e9e-ac51-02e23fb5e120" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:40 GMT" + "Mon, 24 Feb 2020 21:52:11 GMT" ], "Content-Length": [ - "586" + "582" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,7 +69,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps3601\",\r\n \"clientSecret\": \"ps9742\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"samirtestbc.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signup-policy\",\r\n \"signinPolicyName\": \"B2C_1_Sign-policy\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps143\",\r\n \"clientSecret\": \"ps1923\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -79,16 +79,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7cd42ad-49ed-4083-85de-bb4f88b99348" + "411a889d-8c70-4a07-9eb8-6fbcfb21f160" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJhk=\"" + "\"AAAAAAAADVw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85d3179c-e0b2-40a2-9301-213d6fdad0e9" + "b65fe055-0c76-45b3-9ad3-92212ee4336c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,19 +114,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "6d2c8419-3de1-4d42-9d1f-41fc17aa2a51" + "b58caeed-f451-4dac-bee9-5112246c078c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215641Z:6d2c8419-3de1-4d42-9d1f-41fc17aa2a51" + "WESTUS:20200224T215212Z:b58caeed-f451-4dac-bee9-5112246c078c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:41 GMT" + "Mon, 24 Feb 2020 21:52:11 GMT" ], "Content-Length": [ - "586" + "582" ], "Content-Type": [ "application/json; charset=utf-8" @@ -135,7 +135,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps3601\",\r\n \"clientSecret\": \"ps9742\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"samirtestbc.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signup-policy\",\r\n \"signinPolicyName\": \"B2C_1_Sign-policy\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps143\",\r\n \"clientSecret\": \"ps1923\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -145,16 +145,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "584ece99-bad0-466d-9e7f-4a2f10f5f81d" + "2294a917-abcf-4695-8a10-a63b12c4eb3a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJho=\"" + "\"AAAAAAAADV0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "daad9b4d-a862-45fc-a08a-3f32fcc7c686" + "2956befb-eb5f-419a-96eb-5506a82367d9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -180,19 +180,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "14f83cea-e477-45d1-ba04-259c5db238e3" + "3a690f94-3550-4cc2-bcdf-6c31685e1746" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215642Z:14f83cea-e477-45d1-ba04-259c5db238e3" + "WESTUS:20200224T215212Z:3a690f94-3550-4cc2-bcdf-6c31685e1746" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:41 GMT" + "Mon, 24 Feb 2020 21:52:12 GMT" ], "Content-Length": [ - "640" + "639" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,7 +201,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps3601\",\r\n \"clientSecret\": \"ps9742\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"samirtestbc.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signup-policy\",\r\n \"signinPolicyName\": \"B2C_1_Sign-policy\",\r\n \"profileEditingPolicyName\": \"B2C_1_UpdateEmail\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps143\",\r\n \"clientSecret\": \"ps1923\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -211,16 +211,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "829556ca-cfb5-47f4-875c-7ceae59ffa7e" + "534e9fe3-280b-4119-ad4b-af2f42a49018" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -234,7 +234,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6028c1d-b67f-4065-9ee9-b6d87aca6201" + "e29beccc-8421-43cc-a89c-6b2e85d4c103" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "5e47c451-1f15-49f8-9f25-8a821d4183a6" + "6d107f84-c187-48d6-a489-6b0205d32882" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215643Z:5e47c451-1f15-49f8-9f25-8a821d4183a6" + "WESTUS:20200224T215213Z:6d107f84-c187-48d6-a489-6b0205d32882" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:42 GMT" + "Mon, 24 Feb 2020 21:52:12 GMT" ], "Content-Length": [ "92" @@ -274,16 +274,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9251720c-a55e-4390-b450-135dd106629f" + "4da8690b-7a06-4053-8966-dfb88770fe6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -297,7 +297,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "580a4b9d-c2d5-4d2c-8713-7b21929bf784" + "63d37322-9b06-4b0b-8665-d2a2d04a2580" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,16 +306,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "b590cc27-b89c-4d64-bf77-8f1ef6b0cfee" + "59c8aaaf-96de-47d7-92bb-c91e2f49a5ce" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215643Z:b590cc27-b89c-4d64-bf77-8f1ef6b0cfee" + "WESTUS:20200224T215213Z:59c8aaaf-96de-47d7-92bb-c91e2f49a5ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:42 GMT" + "Mon, 24 Feb 2020 21:52:12 GMT" ], "Content-Length": [ "92" @@ -337,16 +337,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24127a95-07cf-4cbe-907d-a05034d553ae" + "72a8c9eb-fd94-446e-a577-4faf4b4c3fe0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -360,7 +360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43acc589-c915-4db5-9576-bdddb96f4c84" + "f9eecaa9-a1c5-4974-a33f-0a2e82465a2e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,19 +369,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "3e10a4a4-5dde-4c55-8601-07bc5824cc81" + "51cd050f-ef13-40bc-bc04-41115d4c3804" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215641Z:3e10a4a4-5dde-4c55-8601-07bc5824cc81" + "WESTUS:20200224T215212Z:51cd050f-ef13-40bc-bc04-41115d4c3804" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:41 GMT" + "Mon, 24 Feb 2020 21:52:11 GMT" ], "Content-Length": [ - "690" + "686" ], "Content-Type": [ "application/json; charset=utf-8" @@ -390,17 +390,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps3601\",\r\n \"clientSecret\": \"ps9742\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"samirtestbc.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signup-policy\",\r\n \"signinPolicyName\": \"B2C_1_Sign-policy\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps143\",\r\n \"clientSecret\": \"ps1923\",\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=2019-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileEditingPolicyName\": \"B2C_1_UpdateEmail\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d05cad9d-167d-43f0-a860-c807582b8f4b" + "52be6ca7-ebce-4e2f-88f9-32b021035bca" ], "If-Match": [ "*" @@ -409,16 +409,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "81" + "84" ] }, "ResponseHeaders": { @@ -432,7 +432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55eef6b1-24aa-4e47-96fa-24fbfecf5f78" + "e37f350f-2021-4aa9-be02-d97b63e616d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,16 +441,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "13a36139-2440-4469-94f8-c1d81080155f" + "72136185-ab15-45d7-b41a-9793178c4d3f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215642Z:13a36139-2440-4469-94f8-c1d81080155f" + "WESTUS:20200224T215212Z:72136185-ab15-45d7-b41a-9793178c4d3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:41 GMT" + "Mon, 24 Feb 2020 21:52:12 GMT" ], "Expires": [ "-1" @@ -466,7 +466,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b81f0d35-a261-4f74-837a-092055cf5454" + "b0e0e603-e7ef-481b-9bcf-44073a1b19eb" ], "If-Match": [ "*" @@ -475,10 +475,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -492,7 +492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "540500bf-7f23-4932-a422-a06384baf8f4" + "4b4027b7-e89c-4604-b564-3cc48d2e26be" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -501,16 +501,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "1e8fec5c-32fb-4ed7-9890-50c8895ca34c" + "39bb4e50-dee2-47b4-970e-6687694b9057" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215642Z:1e8fec5c-32fb-4ed7-9890-50c8895ca34c" + "WESTUS:20200224T215212Z:39bb4e50-dee2-47b4-970e-6687694b9057" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:42 GMT" + "Mon, 24 Feb 2020 21:52:12 GMT" ], "Expires": [ "-1" @@ -529,7 +529,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81c21751-fb3f-47fe-922f-86c047365738" + "100e6eae-f497-4fe0-8dc6-80cfa9b5cead" ], "If-Match": [ "*" @@ -538,10 +538,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -555,7 +555,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "84f91823-f37c-4b07-8469-084d980287c6" + "e63c3612-8d91-4578-ae49-b5e1fe631962" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,16 +564,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "56fe948d-80ab-4172-8dbe-409e2e7bc3bd" + "6beec8fb-1ddc-40c1-9b63-2759332725bd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215643Z:56fe948d-80ab-4172-8dbe-409e2e7bc3bd" + "WESTUS:20200224T215213Z:6beec8fb-1ddc-40c1-9b63-2759332725bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:42 GMT" + "Mon, 24 Feb 2020 21:52:12 GMT" ], "Expires": [ "-1" @@ -585,8 +585,8 @@ ], "Names": { "": [ - "ps3601", - "ps9742" + "ps143", + "ps1923" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json index 743d2be5d2d5..64c3d5dc77d9 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json @@ -4,19 +4,19 @@ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps3269\",\r\n \"clientSecret\": \"ps7979\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps5078\",\r\n \"clientSecret\": \"ps2048\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "84e76f81-79f8-4c60-80fc-e437650c9d7b" + "e566428d-5759-4450-9c4b-1b6baa513bc0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJZ0=\"" + "\"AAAAAAAACdw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5745676-c22c-45ae-b64e-9e4915ff913f" + "28d5866a-cb5f-408e-9fb2-a45b842da93c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "48443cda-4d9c-4c64-8679-11b18f15149a" + "b9cdeb62-6ac0-4061-acac-be83e05ba9b0" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215239Z:48443cda-4d9c-4c64-8679-11b18f15149a" + "WESTUS:20200224T173531Z:b9cdeb62-6ac0-4061-acac-be83e05ba9b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:39 GMT" + "Mon, 24 Feb 2020 17:35:30 GMT" ], "Content-Length": [ "381" @@ -69,7 +69,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps3269\",\r\n \"clientSecret\": \"ps7979\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps5078\",\r\n \"clientSecret\": \"ps2048\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -79,16 +79,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d47a6c16-87d0-4ac3-948f-41196f042f8b" + "7abb7651-3b27-419d-965e-cbc218e97acb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJZ0=\"" + "\"AAAAAAAACdw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e46bf91-8870-47d2-813c-a05109d31235" + "268ccdcf-cf9d-4547-8cea-34c19cd8ce39" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,16 +114,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "65113a43-c7cf-4e65-9837-48f3cc52e9d2" + "72f97974-8acc-4b84-8054-8a7e7eb57cc1" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215239Z:65113a43-c7cf-4e65-9837-48f3cc52e9d2" + "WESTUS:20200224T173531Z:72f97974-8acc-4b84-8054-8a7e7eb57cc1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:39 GMT" + "Mon, 24 Feb 2020 17:35:31 GMT" ], "Content-Length": [ "381" @@ -135,7 +135,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps3269\",\r\n \"clientSecret\": \"ps7979\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps5078\",\r\n \"clientSecret\": \"ps2048\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -145,16 +145,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc65318d-6c86-4209-bbb3-d8fc84fdfe1d" + "52534faa-2e34-4e81-90c9-7aba117f9d39" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJZ4=\"" + "\"AAAAAAAACd0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a25501ad-e0c3-4b1d-a5e4-42aa5452a2d2" + "6c94174b-830c-4915-99f6-28f7e56e31be" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -180,16 +180,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "a666c515-5c2c-483e-bf77-a6d6f6f1c73f" + "add574a2-d20f-4d6c-a871-c9baa1e49ac0" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215240Z:a666c515-5c2c-483e-bf77-a6d6f6f1c73f" + "WESTUS:20200224T173532Z:add574a2-d20f-4d6c-a871-c9baa1e49ac0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:39 GMT" + "Mon, 24 Feb 2020 17:35:31 GMT" ], "Content-Length": [ "381" @@ -201,7 +201,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps3269\",\r\n \"clientSecret\": \"ps2768\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps5078\",\r\n \"clientSecret\": \"ps5202\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -211,16 +211,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20256ecd-467c-4d42-acf9-a4d437b24079" + "288a0ba5-6884-40ce-ad67-10d37d233fe2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -234,7 +234,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3939ec9-b619-4cb5-a695-241f60cede6a" + "9b501544-cf64-498b-9930-e2eef85d75a1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "ba3eb8d5-308b-4f39-9349-d50747ef812c" + "99bd563c-bc0f-46b7-a7d4-b2a33214e93c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215240Z:ba3eb8d5-308b-4f39-9349-d50747ef812c" + "WESTUS:20200224T173533Z:99bd563c-bc0f-46b7-a7d4-b2a33214e93c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:40 GMT" + "Mon, 24 Feb 2020 17:35:32 GMT" ], "Content-Length": [ "92" @@ -274,16 +274,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cba40991-a082-4d2f-8703-6cf23b35fdb9" + "ef0738de-a766-42d6-b86d-48c26ce16eee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -297,7 +297,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2c3805a-464e-4daa-9bdb-a47bc1b3f585" + "a90b2d34-374f-4214-b840-ddca01f53008" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,16 +306,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "2afd61d5-ee42-4535-a21d-5aff8cac6b38" + "5a337a38-e1f7-46a7-8383-31d20ff7ecb4" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215241Z:2afd61d5-ee42-4535-a21d-5aff8cac6b38" + "WESTUS:20200224T173533Z:5a337a38-e1f7-46a7-8383-31d20ff7ecb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:40 GMT" + "Mon, 24 Feb 2020 17:35:32 GMT" ], "Content-Length": [ "92" @@ -337,16 +337,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c2beff4-df19-4361-9adf-30a02cee7272" + "13729a79-23e5-4bc3-93fe-a4617671884b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -360,7 +360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f99bc24c-9dad-4aff-ad6e-8bb521783a9f" + "08244799-e6dc-40ba-8805-d68cc15924a6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,16 +369,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "126a7ac2-4257-49e4-ae96-bb8c763167c2" + "804a471c-fec2-4a96-a6c4-4ddd4fe62ebd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215239Z:126a7ac2-4257-49e4-ae96-bb8c763167c2" + "WESTUS:20200224T173531Z:804a471c-fec2-4a96-a6c4-4ddd4fe62ebd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:39 GMT" + "Mon, 24 Feb 2020 17:35:31 GMT" ], "Content-Length": [ "461" @@ -390,17 +390,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps3269\",\r\n \"clientSecret\": \"ps7979\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps5078\",\r\n \"clientSecret\": \"ps2048\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps2768\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps5202\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6328186c-4444-46d2-a4c7-ca615b8df83e" + "b4b10fca-2a87-465c-944c-e1774f760067" ], "If-Match": [ "*" @@ -409,10 +409,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,7 +432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21537d6b-73dc-448d-a3da-be5617de8063" + "0afd630c-bfcf-43c4-8242-381a20cab742" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,16 +441,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "a7f66466-39f6-43a6-88dd-aca1ff662a20" + "53b17157-ae3f-409b-9672-45891bb73431" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215240Z:a7f66466-39f6-43a6-88dd-aca1ff662a20" + "WESTUS:20200224T173531Z:53b17157-ae3f-409b-9672-45891bb73431" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:39 GMT" + "Mon, 24 Feb 2020 17:35:31 GMT" ], "Expires": [ "-1" @@ -466,7 +466,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad57b2a5-5f13-463a-800b-a4633c8484cc" + "f8aed0fb-bac7-4241-b0bb-ade8ade57aa5" ], "If-Match": [ "*" @@ -475,10 +475,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -492,7 +492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4102187c-a67a-45fc-931c-c737eb8edc0e" + "7376d441-8787-461e-be51-51c13c8459fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -501,16 +501,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "09044cf0-6a5c-4acf-b5f3-bb47caec07ce" + "0efe167b-def2-48bf-83e1-3342f90c11eb" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215240Z:09044cf0-6a5c-4acf-b5f3-bb47caec07ce" + "WESTUS:20200224T173532Z:0efe167b-def2-48bf-83e1-3342f90c11eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:40 GMT" + "Mon, 24 Feb 2020 17:35:32 GMT" ], "Expires": [ "-1" @@ -529,7 +529,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad62d89f-8c70-4e8a-937e-67d9b9031127" + "e053679e-d6df-4bb9-be61-c6fdbb7d4115" ], "If-Match": [ "*" @@ -538,10 +538,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -555,7 +555,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fb556089-f182-4b3d-ad06-9d8fece22890" + "2c948f4c-656a-474e-9a63-1bf31121e68b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,16 +564,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "c2f30819-84c4-420c-92e7-446389930420" + "c2045829-0c02-429d-a608-76f80b349247" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215241Z:c2f30819-84c4-420c-92e7-446389930420" + "WESTUS:20200224T173533Z:c2045829-0c02-429d-a608-76f80b349247" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:40 GMT" + "Mon, 24 Feb 2020 17:35:32 GMT" ], "Expires": [ "-1" @@ -585,9 +585,9 @@ ], "Names": { "": [ - "ps3269", - "ps7979", - "ps2768" + "ps5078", + "ps2048", + "ps5202" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json index 853192a6749a..ce917007c719 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3330?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzMzMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM4ODc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps3985\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Test-ConnectionString\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps8106\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Test-ConnectionString\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "04e1927a-d190-45ae-9d0c-d776ab1e0a43" + "c7ba5c92-564b-4d20-a874-32ef0cdcfd18" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAERE=\"" + "\"AAAAAAAADWA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f0c1775-e705-48d3-a508-fa053a11a6e8" + "f88b831f-6650-4395-addd-6f60d49b0ec2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "a6318bfd-e495-47dc-9916-a8fdcd22446c" + "68bb52df-afd9-4c8e-b585-2587aa7d7973" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081619Z:a6318bfd-e495-47dc-9916-a8fdcd22446c" + "WESTUS:20200224T215328Z:68bb52df-afd9-4c8e-b585-2587aa7d7973" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:18 GMT" + "Mon, 24 Feb 2020 21:53:28 GMT" ], "Content-Length": [ "526" @@ -69,17 +69,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3330\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps3330\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps3985\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5cd3e1d2b29c170c14c3589a}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8879\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps8106\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5e5445d86f56470f90c9a6bd}}\"\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/ps3330?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzMzMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM4ODc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2337\",\r\n \"isBuffered\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6425\",\r\n \"isBuffered\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e4b30930-14f4-4d13-98cd-f426d22ead3c" + "0b6b59e5-802d-458a-b62c-10e358941fe4" ], "If-Match": [ "*" @@ -88,10 +88,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -111,7 +111,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0877df23-642b-4c81-a9bc-34cbb0dea7b9" + "31ff873e-bf1a-4c1f-91b8-b89482dd7590" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -120,16 +120,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "81c4806a-e2bd-44d4-b699-812edfe4a134" + "f28b4359-e336-42f5-b09f-762090018c95" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081620Z:81c4806a-e2bd-44d4-b699-812edfe4a134" + "WESTUS:20200224T215329Z:f28b4359-e336-42f5-b09f-762090018c95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:19 GMT" + "Mon, 24 Feb 2020 21:53:28 GMT" ], "Expires": [ "-1" @@ -139,22 +139,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3330?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzMzMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM4ODc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b51b2b51-cb6c-41fb-b601-3e5e9c92bf6b" + "52631b88-7fdb-4cf3-9fa7-efbef4c385f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAERM=\"" + "\"AAAAAAAADWI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2dd70d2b-f778-440f-bf46-b9a51a70d556" + "276edab2-b0f2-4fbe-aecc-0fc0ddc14726" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -180,16 +180,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "add268bb-a0bb-492d-9e5b-49cf7b37e52c" + "8de86edf-d0fe-4ff9-8bec-46470cf45696" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081620Z:add268bb-a0bb-492d-9e5b-49cf7b37e52c" + "WESTUS:20200224T215329Z:8de86edf-d0fe-4ff9-8bec-46470cf45696" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:20 GMT" + "Mon, 24 Feb 2020 21:53:28 GMT" ], "Content-Length": [ "527" @@ -201,26 +201,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3330\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps3330\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2337\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5cd3e1d2b29c170c14c3589a}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8879\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6425\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5e5445d86f56470f90c9a6bd}}\"\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/ps3330?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzMzMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM4ODc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f11ac26-1417-4ff7-a1de-07c2c0225ea3" + "000e8623-cb73-4310-8acc-94ae4258d274" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -231,13 +231,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAERM=\"" + "\"AAAAAAAADWI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fac888ad-22de-443a-90fe-9fdfd40bdec7" + "702e835f-e8ce-4dcd-bec3-b010a6a10907" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -246,16 +246,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "d09c991e-358c-4553-85d0-f48ed2deb417" + "875d9770-1833-47a7-b845-e0c406044687" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081620Z:d09c991e-358c-4553-85d0-f48ed2deb417" + "WESTUS:20200224T215330Z:875d9770-1833-47a7-b845-e0c406044687" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:20 GMT" + "Mon, 24 Feb 2020 21:53:29 GMT" ], "Content-Length": [ "527" @@ -267,26 +267,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3330\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps3330\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2337\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5cd3e1d2b29c170c14c3589a}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8879\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6425\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5e5445d86f56470f90c9a6bd}}\"\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/ps3330?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzMzMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM4ODc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "876656ba-c47a-4ebf-a3ef-bb70b962abb9" + "a68ea2f8-39d1-456e-9d6f-2184e36ac87b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -300,7 +300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4655562-7f77-484f-9a4a-16d95656190e" + "ad0a6ff1-a960-4109-b9d4-d303527c9513" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "b5b571d7-1816-4dca-b37e-d5769dd9c54e" + "cf5b6d71-75b2-4957-8048-69d07a640c8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081624Z:b5b571d7-1816-4dca-b37e-d5769dd9c54e" + "WESTUS:20200224T215333Z:cf5b6d71-75b2-4957-8048-69d07a640c8b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:24 GMT" + "Mon, 24 Feb 2020 21:53:33 GMT" ], "Content-Length": [ "82" @@ -340,16 +340,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6120600-d556-4e06-a511-d98ebc599a38" + "7bfca81a-7953-468e-9678-448bc76b6b5f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -363,7 +363,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ada971cb-8fee-4ec1-a077-70ca0866969c" + "6b43f24a-4ba2-4bfd-b1f0-d3e7e1cc4f62" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -372,19 +372,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "cd1ca8d2-cdb2-44bc-ae21-e35a3ded9838" + "576e8ede-3e83-4e1c-b85d-8daacf806334" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081620Z:cd1ca8d2-cdb2-44bc-ae21-e35a3ded9838" + "WESTUS:20200224T215330Z:576e8ede-3e83-4e1c-b85d-8daacf806334" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:20 GMT" + "Mon, 24 Feb 2020 21:53:29 GMT" ], "Content-Length": [ - "612" + "627" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,26 +393,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/ps3330\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps3330\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2337\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5cd3e1d2b29c170c14c3589a}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8879\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6425\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5e5445d86f56470f90c9a6bd}}\"\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/ps9016?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5MDE2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4147?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0MTQ3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps4063\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"b5e15a59-420b-4926-acc4-23a1a0797856\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7536\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"767c8771-9121-4405-ba24-0b6bffbfeb1a\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ab752f0-4600-418c-8939-8cd92a636909" + "1b26aa0b-9e74-4a40-9762-e732c91631a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -429,13 +429,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAERg=\"" + "\"AAAAAAAADWc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58428f6b-3070-4012-b5c4-f3e23c27a355" + "7c45bf21-45b9-484e-9cc1-73306985de30" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,16 +444,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "405675b6-52a7-470c-a0ef-b829df29dd3a" + "3e0c70aa-1332-4a33-b3ea-8c2534009061" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081623Z:405675b6-52a7-470c-a0ef-b829df29dd3a" + "WESTUS:20200224T215333Z:3e0c70aa-1332-4a33-b3ea-8c2534009061" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:23 GMT" + "Mon, 24 Feb 2020 21:53:32 GMT" ], "Content-Length": [ "505" @@ -465,17 +465,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9016\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps9016\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps4063\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5cd3e1d7b29c170c14c3589e}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4147\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps4147\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7536\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5e5445dd6f56470f90c9a6c1}}\"\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/ps3330?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzMzMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps8879?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM4ODc5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "611ba58b-f3d4-4341-8c9a-9bb6260cdff3" + "7c8b7763-3c0a-4276-869d-4b660c518f86" ], "If-Match": [ "*" @@ -484,10 +484,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -501,7 +501,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3708528-7843-46fa-bf41-051cc68843ce" + "2e4293e1-74cf-421a-a514-8d76ca1b1584" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -510,16 +510,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "ca51ba43-a163-4ecd-808d-6800db9d4fab" + "dba1df5c-97b5-452a-ab1c-29b07315fa64" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081624Z:ca51ba43-a163-4ecd-808d-6800db9d4fab" + "WESTUS:20200224T215333Z:dba1df5c-97b5-452a-ab1c-29b07315fa64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:24 GMT" + "Mon, 24 Feb 2020 21:53:32 GMT" ], "Expires": [ "-1" @@ -532,13 +532,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9016?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5MDE2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4147?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0MTQ3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84a270e5-c995-4717-95e0-e1da4418617f" + "5bea917a-f478-4dd7-bfc3-6e98ac13fa88" ], "If-Match": [ "*" @@ -547,10 +547,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -564,7 +564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e49d5ac2-5021-4684-b8d3-44d2ce4e9350" + "61a63bb5-6fb5-49f7-befe-90e4506cf6f2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -573,16 +573,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "d5a6a324-415f-4a63-a203-441573b46809" + "a72f7394-87c8-48b3-a495-6d3b2c696e90" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081625Z:d5a6a324-415f-4a63-a203-441573b46809" + "WESTUS:20200224T215334Z:a72f7394-87c8-48b3-a495-6d3b2c696e90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:24 GMT" + "Mon, 24 Feb 2020 21:53:33 GMT" ], "Expires": [ "-1" @@ -595,22 +595,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9016?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5MDE2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4147?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0MTQ3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "930225f1-b0df-4476-a2c9-a9e437d8c47b" + "df5b497a-a5d9-46a5-b9f8-1a599cca2826" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -624,7 +624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b05293ce-63f3-4c4e-8ffc-baf96c8c677b" + "ef5ad01b-7d2e-4219-bde5-5d0fe624fee5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,16 +633,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "b6373505-2fc6-4d26-9427-2e6b90f372ce" + "7dc4a714-21f6-4479-8e64-a460877042ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081625Z:b6373505-2fc6-4d26-9427-2e6b90f372ce" + "WESTUS:20200224T215334Z:7dc4a714-21f6-4479-8e64-a460877042ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:24 GMT" + "Mon, 24 Feb 2020 21:53:33 GMT" ], "Content-Length": [ "82" @@ -664,16 +664,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae751be5-bbd8-4a6c-8b2a-d3b584d84d35" + "00fd8e7c-4a52-48ba-8e62-b8be36583ac9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -687,7 +687,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c66676d-6b56-4e56-b6a3-a442cda295fa" + "44e812af-b863-4229-9e6c-5bd0b25eddf1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -696,19 +696,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "6bf0921f-2af8-4b3e-9d5a-284aa8b67f55" + "8134d452-11db-4ef6-95ea-f43bad6080ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081625Z:6bf0921f-2af8-4b3e-9d5a-284aa8b67f55" + "WESTUS:20200224T215334Z:8134d452-11db-4ef6-95ea-f43bad6080ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:25 GMT" + "Mon, 24 Feb 2020 21:53:33 GMT" ], "Content-Length": [ - "1190" + "1205" ], "Content-Type": [ "application/json; charset=utf-8" @@ -717,17 +717,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5cd3e1d2b29c170c14c35899\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5cd3e1d2b29c170c14c35899\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5cd3e1d2b29c170c14c3589a\",\r\n \"value\": \"Test-ConnectionString\",\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/properties/5cd3e1d7b29c170c14c3589d\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5cd3e1d7b29c170c14c3589d\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5cd3e1d7b29c170c14c3589e\",\r\n \"value\": \"b5e15a59-420b-4926-acc4-23a1a0797856\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5e5445d86f56470f90c9a6bc\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5e5445d86f56470f90c9a6bc\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5e5445d86f56470f90c9a6bd\",\r\n \"value\": \"Endpoint=sb://sdkeventhub.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=kwNgAU23dJO2/MNrEw+dBx0Mc1oPAdosOVRdROx9g6A=\",\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/properties/5e5445dd6f56470f90c9a6c0\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5e5445dd6f56470f90c9a6c0\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5e5445dd6f56470f90c9a6c1\",\r\n \"value\": \"767c8771-9121-4405-ba24-0b6bffbfeb1a\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5cd3e1d2b29c170c14c35899?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvNWNkM2UxZDJiMjljMTcwYzE0YzM1ODk5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5e5445d86f56470f90c9a6bc?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvNWU1NDQ1ZDg2ZjU2NDcwZjkwYzlhNmJjP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9060350e-a999-4256-a963-35d912b2cf13" + "65bb5bb7-0378-426b-b15c-18678e13bb9e" ], "If-Match": [ "*" @@ -736,10 +736,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -753,7 +753,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48255e64-ce09-4ffe-a679-753bd76d4728" + "d0d48817-9a0a-4141-a6ac-fc67a7c4e991" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -762,16 +762,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "12e303a6-d4f9-446a-a779-c9486624bff9" + "27e37d24-bb37-443d-91f9-558462efec66" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081625Z:12e303a6-d4f9-446a-a779-c9486624bff9" + "WESTUS:20200224T215334Z:27e37d24-bb37-443d-91f9-558462efec66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:25 GMT" + "Mon, 24 Feb 2020 21:53:33 GMT" ], "Expires": [ "-1" @@ -784,13 +784,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5cd3e1d7b29c170c14c3589d?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvNWNkM2UxZDdiMjljMTcwYzE0YzM1ODlkP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/5e5445dd6f56470f90c9a6c0?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvNWU1NDQ1ZGQ2ZjU2NDcwZjkwYzlhNmMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a39be5c7-8d1d-40e3-8e66-42a7205b0687" + "1cd899af-27ce-41cb-ab4e-ccfcfe4c31ff" ], "If-Match": [ "*" @@ -799,10 +799,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -816,7 +816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b83251fc-2c6e-497b-829a-1a52cf9083f5" + "38c72a7a-320e-4bdb-946c-862986092954" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -825,16 +825,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "9eb9a8a2-d8d8-4b07-9ba3-0d08aa50fce7" + "8a818d0b-2d64-43b3-b8fe-56542f6de9b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190509T081626Z:9eb9a8a2-d8d8-4b07-9ba3-0d08aa50fce7" + "WESTUS:20200224T215334Z:8a818d0b-2d64-43b3-b8fe-56542f6de9b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 09 May 2019 08:16:25 GMT" + "Mon, 24 Feb 2020 21:53:33 GMT" ], "Expires": [ "-1" @@ -849,11 +849,11 @@ ], "Names": { "": [ - "ps3330", - "ps9016", - "ps3985", - "ps2337", - "ps4063" + "ps8879", + "ps4147", + "ps8106", + "ps6425", + "ps7536" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json index 054f7a0acbb4..2ffa8d4df537 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,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM2OTE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM0NDk2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps708\",\r\n \"description\": \"ps2281\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9300\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4445\",\r\n \"description\": \"ps6757\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8682\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ecfe1c5-053f-432d-b0bc-f617b4e77fd1" + "203641e1-6545-4854-aaee-3fb42bdab11f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "237" + "238" ] }, "ResponseHeaders": { @@ -33,34 +33,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJzg=\"" + "\"AAAAAAAAC9Y=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3dc55e9c-07e0-4a06-94be-d980599f8735" + "a11b34b9-6144-4074-923c-48489ed580ad" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "858173b1-3daf-47af-90de-5570060d6f33" + "1d93c7c2-ede6-4394-9bb3-76010015ea67" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220149Z:858173b1-3daf-47af-90de-5570060d6f33" + "WESTUS:20200224T174525Z:1d93c7c2-ede6-4394-9bb3-76010015ea67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:01:48 GMT" + "Mon, 24 Feb 2020 17:45:24 GMT" ], "Content-Length": [ - "541" + "515" ], "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/ps6914\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6914\",\r\n \"properties\": {\r\n \"displayName\": \"ps708\",\r\n \"description\": \"ps2281\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9300\",\r\n \"clientSecret\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps4496\",\r\n \"properties\": {\r\n \"displayName\": \"ps4445\",\r\n \"description\": \"ps6757\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8682\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM2OTE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM0NDk2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cbd9095-6cc4-4eea-87bb-95bea940ddcd" + "fc123119-8505-43cd-97aa-9367be2ad565" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -99,34 +99,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJzg=\"" + "\"AAAAAAAAC9Y=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f838057-21ec-47b9-8fd3-79540d4d662c" + "ff24c338-d913-4dbf-9e07-4f3cfe4b82bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "0b0544ab-34f6-4a3d-9a38-75768adbfc23" + "47fcff99-baac-46d6-a90c-cce35c17ca1e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220149Z:0b0544ab-34f6-4a3d-9a38-75768adbfc23" + "WESTUS:20200224T174525Z:47fcff99-baac-46d6-a90c-cce35c17ca1e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:01:48 GMT" + "Mon, 24 Feb 2020 17:45:25 GMT" ], "Content-Length": [ - "541" + "515" ], "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/ps6914\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6914\",\r\n \"properties\": {\r\n \"displayName\": \"ps708\",\r\n \"description\": \"ps2281\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9300\",\r\n \"clientSecret\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps4496\",\r\n \"properties\": {\r\n \"displayName\": \"ps4445\",\r\n \"description\": \"ps6757\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8682\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM2OTE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM0NDk2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ee0f0ba-a7e1-4a8e-bd69-f42d4dee1c20" + "25a99982-5dec-4eaa-9e4f-4d52869b321b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -165,34 +165,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJzg=\"" + "\"AAAAAAAAC9Y=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55bb5e9a-7646-4534-ad5b-542236a4b1a8" + "794b6262-cc78-47f2-8f5e-543984c561ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-correlation-request-id": [ - "f66e11d2-eddc-4d6b-a4c1-796c729d3c47" + "28ca78d7-0809-456a-95fb-35fe4c56c1c7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220149Z:f66e11d2-eddc-4d6b-a4c1-796c729d3c47" + "WESTUS:20200224T174526Z:28ca78d7-0809-456a-95fb-35fe4c56c1c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:01:49 GMT" + "Mon, 24 Feb 2020 17:45:25 GMT" ], "Content-Length": [ - "541" + "515" ], "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/ps6914\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6914\",\r\n \"properties\": {\r\n \"displayName\": \"ps708\",\r\n \"description\": \"ps2281\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9300\",\r\n \"clientSecret\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps4496\",\r\n \"properties\": {\r\n \"displayName\": \"ps4445\",\r\n \"description\": \"ps6757\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8682\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM2OTE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM0NDk2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3d54e46-6bec-45c5-bf7f-62bd56c022c8" + "9efc0aeb-bc90-4f57-bf5a-cc82c5009abf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -231,34 +231,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ00=\"" + "\"AAAAAAAAC+s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e202d6b8-e99f-462a-9885-16960d25d331" + "c068c784-da16-4bcd-966e-aa0da5965e63" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11990" ], "x-ms-correlation-request-id": [ - "cd82e671-138a-4111-9804-d51251ab6127" + "f06af2e4-6ff1-4129-bca1-de44b9993cd7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220221Z:cd82e671-138a-4111-9804-d51251ab6127" + "WESTUS:20200224T174558Z:f06af2e4-6ff1-4129-bca1-de44b9993cd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:20 GMT" + "Mon, 24 Feb 2020 17:45:58 GMT" ], "Content-Length": [ - "545" + "546" ], "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/ps6914\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6914\",\r\n \"properties\": {\r\n \"displayName\": \"ps708\",\r\n \"description\": \"ps2281\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9300\",\r\n \"clientSecret\": \"ps6280\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps4496\",\r\n \"properties\": {\r\n \"displayName\": \"ps4445\",\r\n \"description\": \"ps6757\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8682\",\r\n \"clientSecret\": \"ps3693\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM2OTE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM0NDk2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b685947-e1ba-43fc-bdb9-694d64198915" + "9ff9ad67-e40f-4ce5-a86e-e6c6227a5f5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -300,25 +300,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7aac976-8c2c-4916-a3a0-460a504ee055" + "453c3737-ae89-4b02-80e3-02c41727cd87" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11989" ], "x-ms-correlation-request-id": [ - "707dd3a8-2bc0-47b9-940b-9505c1721774" + "2797d292-54da-4c35-8c54-c89277d0c03a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220223Z:707dd3a8-2bc0-47b9-940b-9505c1721774" + "WESTUS:20200224T174559Z:2797d292-54da-4c35-8c54-c89277d0c03a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:22 GMT" + "Mon, 24 Feb 2020 17:45:58 GMT" ], "Content-Length": [ "97" @@ -334,22 +334,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM2OTE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM0NDk2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "856e0c0f-1edc-486d-9f76-d1c61e1e2b0d" + "0d599fb8-b33f-461a-8a2a-c0805a00895b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -363,25 +363,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69e48971-243a-4bdd-9f4a-c7ba5d255f62" + "3ed3dca7-645a-4103-a56f-8bbc1e3a6760" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11988" ], "x-ms-correlation-request-id": [ - "3405e46b-901f-485a-b504-b3152b4af925" + "49397c8e-36b0-4a87-90d6-8408f73daa0e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220223Z:3405e46b-901f-485a-b504-b3152b4af925" + "WESTUS:20200224T174559Z:49397c8e-36b0-4a87-90d6-8408f73daa0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:22 GMT" + "Mon, 24 Feb 2020 17:45:59 GMT" ], "Content-Length": [ "97" @@ -397,22 +397,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?$filter=substringof('ps708',properties/displayName)&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JGZpbHRlcj1zdWJzdHJpbmdvZigncHM3MDgnLHByb3BlcnRpZXMvZGlzcGxheU5hbWUpJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?$filter=substringof('ps4445',properties/displayName)&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JGZpbHRlcj1zdWJzdHJpbmdvZigncHM0NDQ1Jyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b8a495e-bece-4384-8093-2877ddf356ec" + "75b257ef-4ce8-4f0a-886b-682eded0b496" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -426,28 +426,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3dc13e93-6f19-4a9f-8535-789845ec5159" + "ae3ab07e-1da6-492d-ad29-02e2077f8e4d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-correlation-request-id": [ - "12902e56-758a-46df-8976-89cb1b088fc9" + "3a45621b-2fda-41da-a59b-0966559adc33" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220149Z:12902e56-758a-46df-8976-89cb1b088fc9" + "WESTUS:20200224T174526Z:3a45621b-2fda-41da-a59b-0966559adc33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:01:49 GMT" + "Mon, 24 Feb 2020 17:45:25 GMT" ], "Content-Length": [ - "629" + "599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -456,7 +456,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6914\",\r\n \"properties\": {\r\n \"displayName\": \"ps708\",\r\n \"description\": \"ps2281\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9300\",\r\n \"clientSecret\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps4496\",\r\n \"properties\": {\r\n \"displayName\": \"ps4445\",\r\n \"description\": \"ps6757\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8682\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { @@ -466,16 +466,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "379af30e-dbcd-42a7-9ccd-d50b79daddd3" + "18df6820-ad92-454e-ba46-c3757c39000d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -489,28 +489,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2712894d-1c75-4481-9790-2c9b1da28d5a" + "769d86bd-998f-4ef9-a337-cbea9f9e5f5b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-correlation-request-id": [ - "6e4fbd2c-17d7-4fa9-ab25-f98127a56654" + "73769122-7114-4022-bde0-98f2c9096847" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220149Z:6e4fbd2c-17d7-4fa9-ab25-f98127a56654" + "WESTUS:20200224T174526Z:73769122-7114-4022-bde0-98f2c9096847" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:01:49 GMT" + "Mon, 24 Feb 2020 17:45:25 GMT" ], "Content-Length": [ - "629" + "599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,32 +519,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6914\",\r\n \"properties\": {\r\n \"displayName\": \"ps708\",\r\n \"description\": \"ps2281\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9300\",\r\n \"clientSecret\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps4496\",\r\n \"properties\": {\r\n \"displayName\": \"ps4445\",\r\n \"description\": \"ps6757\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8682\"\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/ps3501?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzkzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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+json\"\r\n }\r\n}", + "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": [ - "82e30d6f-d0dd-436e-9635-7a13a0867d52" + "d1988a26-1919-4b53-a913-e6d2ef40bd06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8316" + "8311" ] }, "ResponseHeaders": { @@ -555,31 +555,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3501?api-version=2019-01-01&asyncId=5d927b4e787c9527240ff1b2&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793?api-version=2019-01-01&asyncId=5e540bb66f56470f90c9a67c&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5acfa567-f25e-4fdb-aa60-0e0989556ea5" + "5a6ee458-5a33-49c9-b572-b14a566fa3a4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "71d54cae-c15e-4240-94e5-476ef06008e9" + "e3c8a4a5-94bd-4922-9e0a-736a905e4b56" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220150Z:71d54cae-c15e-4240-94e5-476ef06008e9" + "WESTUS:20200224T174526Z:e3c8a4a5-94bd-4922-9e0a-736a905e4b56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:01:49 GMT" + "Mon, 24 Feb 2020 17:45:25 GMT" ], "Expires": [ "-1" @@ -592,16 +592,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3501?api-version=2019-01-01&asyncId=5d927b4e787c9527240ff1b2&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZDkyN2I0ZTc4N2M5NTI3MjQwZmYxYjImYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793?api-version=2019-01-01&asyncId=5e540bb66f56470f90c9a67c&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzkzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDEmYXN5bmNJZD01ZTU0MGJiNjZmNTY0NzBmOTBjOWE2N2MmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -612,34 +612,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJzk=\"" + "\"AAAAAAAAC9c=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aff528a8-65a3-4268-84b4-d3020cd64a62" + "938e7273-ff74-405b-8cde-16ff6aefb9f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-correlation-request-id": [ - "60bcfae2-09f2-46de-859c-33542ecd2996" + "7ecda484-d792-4915-a424-b4bff626f35d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220220Z:60bcfae2-09f2-46de-859c-33542ecd2996" + "WESTUS:20200224T174556Z:7ecda484-d792-4915-a424-b4bff626f35d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:19 GMT" + "Mon, 24 Feb 2020 17:45:56 GMT" ], "Content-Length": [ - "1346" + "1381" ], "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/apis/ps3501\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3501\",\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 \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1793\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3501?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNTAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzkzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed439cb7-44b5-487b-bf69-2201283c1ada" + "4e7141d9-7ba3-4e56-8009-f45fc0cf6eb1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -678,34 +678,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJzk=\"" + "\"AAAAAAAAC9c=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0129c2d0-31ed-4045-9c9e-8f28c630250b" + "821eb8a4-85fa-44dd-ad52-6417e7c537e7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "x-ms-correlation-request-id": [ - "7f2f8201-96f3-46b8-a380-08bd81a96c87" + "e3902036-94ba-4579-8668-d83ff21dcdd9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220220Z:7f2f8201-96f3-46b8-a380-08bd81a96c87" + "WESTUS:20200224T174557Z:e3902036-94ba-4579-8668-d83ff21dcdd9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:19 GMT" + "Mon, 24 Feb 2020 17:45:56 GMT" ], "Content-Length": [ - "1346" + "1381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -714,17 +714,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3501\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3501\",\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 \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1793\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3501%3Brev%3D1?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNTAxJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793%3Brev%3D1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzkzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "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\": \"ps6914\",\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 \"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\": \"ps4496\",\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": [ - "842eec55-db21-4b8b-9c2e-ed0493cba577" + "2f3135b2-0d2e-4355-bfc8-1f11c8df2cf6" ], "If-Match": [ "*" @@ -733,16 +733,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1241" + "1276" ] }, "ResponseHeaders": { @@ -753,34 +753,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ0k=\"" + "\"AAAAAAAAC+c=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "babbbd43-5d3e-4740-af97-bd211015f024" + "8b0f0201-656f-4646-b587-7f39a0b0c658" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "43552bb7-a995-490d-a24d-ef0731e789f5" + "07a94047-aa30-4382-bcdf-996a17fe7b56" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220221Z:43552bb7-a995-490d-a24d-ef0731e789f5" + "WESTUS:20200224T174557Z:07a94047-aa30-4382-bcdf-996a17fe7b56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:20 GMT" + "Mon, 24 Feb 2020 17:45:57 GMT" ], "Content-Length": [ - "1484" + "1519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -789,17 +789,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3501\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3501\",\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 \"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\": \"ps6914\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1793\",\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\": \"ps4496\",\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/ps6914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM2OTE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM0NDk2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps6280\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps3693\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "457631e5-b362-4aa7-b7bb-43c015f4f52c" + "72f28b46-357a-422a-8027-1aae8a098851" ], "If-Match": [ "*" @@ -808,10 +808,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,25 +831,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38c32c27-9bb7-4836-be06-ae5ea10e3a92" + "6ca39d90-b62b-4de6-a6fa-8bb39e07cf7e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "4bfb9a74-9e63-417c-be26-56a7e178083b" + "f86ebba9-720d-4c03-ac6b-a96e033efe9e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220221Z:4bfb9a74-9e63-417c-be26-56a7e178083b" + "WESTUS:20200224T174558Z:f86ebba9-720d-4c03-ac6b-a96e033efe9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:20 GMT" + "Mon, 24 Feb 2020 17:45:58 GMT" ], "Expires": [ "-1" @@ -859,13 +859,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3501?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNTAxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzkzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48cea8e6-9cfc-407c-b797-eef124ecb2de" + "4a7917c3-bf4b-414f-9aa1-cf346f0e7661" ], "If-Match": [ "*" @@ -874,10 +874,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -891,25 +891,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbd9549b-a2aa-440a-b7f7-f9ccaa98a728" + "a7e0c300-cfca-4ade-bdf3-89eb7fe6b300" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "fc7f2c6a-9e74-4b28-92cc-8f8430967bd9" + "6fc325cf-24ae-44fb-bfc8-80f1cc97dc57" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220222Z:fc7f2c6a-9e74-4b28-92cc-8f8430967bd9" + "WESTUS:20200224T174558Z:6fc325cf-24ae-44fb-bfc8-80f1cc97dc57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:21 GMT" + "Mon, 24 Feb 2020 17:45:58 GMT" ], "Expires": [ "-1" @@ -922,13 +922,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3501?deleteRevisions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNTAxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1793?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzkzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "074e0d6c-f960-4ebe-8a5e-ec601c88b0b2" + "3104140d-dd80-4326-b8b6-297d72fb86fd" ], "If-Match": [ "*" @@ -937,10 +937,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -954,25 +954,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "178d4ac9-9ffe-4cce-981f-608bc2f59183" + "b1b606eb-9ec8-44c7-b0d7-8cdd4e730807" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "e958e984-c07d-4d16-bb4e-7c890454597f" + "dbdbc946-7ab2-43ea-a09e-664da87a4232" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220223Z:e958e984-c07d-4d16-bb4e-7c890454597f" + "WESTUS:20200224T174559Z:dbdbc946-7ab2-43ea-a09e-664da87a4232" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:22 GMT" + "Mon, 24 Feb 2020 17:45:59 GMT" ], "Expires": [ "-1" @@ -982,13 +982,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM2OTE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM0NDk2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94248976-88bf-471e-8d64-183e98c0d6e1" + "0b7293f5-eb77-4d92-ab2b-e16f6286d80b" ], "If-Match": [ "*" @@ -997,10 +997,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1014,25 +1014,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d236ebf-1e4d-4f6f-add7-721521bb1dbf" + "557d8a1d-008c-45c0-baab-6561b7624586" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "1cf25b66-6593-405a-ba60-3db032675014" + "0ab6d59e-01b2-4cac-a2f7-d6b3d98ce0b1" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220222Z:1cf25b66-6593-405a-ba60-3db032675014" + "WESTUS:20200224T174559Z:0ab6d59e-01b2-4cac-a2f7-d6b3d98ce0b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:21 GMT" + "Mon, 24 Feb 2020 17:45:58 GMT" ], "Expires": [ "-1" @@ -1045,13 +1045,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps6914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM2OTE0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps4496?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM0NDk2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17a1b06f-94c6-4a44-9945-76bd5f6c88b3" + "4362d669-6507-4f0e-8fc4-13a9c5b688c3" ], "If-Match": [ "*" @@ -1060,10 +1060,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1077,25 +1077,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c53cebe5-7f50-4d53-878e-e67f4abc2e28" + "f2307f52-b397-41fc-9a1e-36d3860a9783" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14996" ], "x-ms-correlation-request-id": [ - "2eae8165-0501-4183-9515-2f8d58b95137" + "9be4ad2e-c22a-4151-8116-fc577a73dd6a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220223Z:2eae8165-0501-4183-9515-2f8d58b95137" + "WESTUS:20200224T174559Z:9be4ad2e-c22a-4151-8116-fc577a73dd6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:22 GMT" + "Mon, 24 Feb 2020 17:45:59 GMT" ], "Expires": [ "-1" @@ -1107,12 +1107,12 @@ ], "Names": { "": [ - "ps6914", - "ps3501", - "ps708", - "ps9300", - "ps2281", - "ps6280" + "ps4496", + "ps1793", + "ps4445", + "ps8682", + "ps6757", + "ps3693" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json index 49d225e02a77..816283e73352 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2837f089-94cd-4b44-864f-555ccf5ea5de" + "71277596-74a6-48c3-91c3-7b609eb3a9e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,28 +30,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1af2860b-b29e-4bee-b1fa-9444eb88d4b9" + "abd4e973-506c-45ca-af30-a1e36c2a4089" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "c729fb3c-f252-4edb-9255-bc95aa8578ff" + "fd9afb4c-39a5-4f24-9f2b-4e5a599f6edf" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215752Z:c729fb3c-f252-4edb-9255-bc95aa8578ff" + "WESTUS:20200224T174007Z:fd9afb4c-39a5-4f24-9f2b-4e5a599f6edf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:52 GMT" + "Mon, 24 Feb 2020 17:40:06 GMT" ], "Content-Length": [ - "690" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,7 +60,7 @@ "-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 \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/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 }, { @@ -70,16 +70,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f2c7622-8c10-4b83-9d43-2975612cdd59" + "45f4cb44-aa3c-4726-8bb4-aa6e5e149845" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -93,25 +93,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d63f57c-d6ee-43fa-97e9-d703ef25dc01" + "d52ae23d-1b5a-45da-9ee9-cf16c13b92fc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "3894d267-ed83-4b68-866d-527ba9c6e633" + "e4c3fea0-bc1d-4a68-bf44-0a51645b9144" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215753Z:3894d267-ed83-4b68-866d-527ba9c6e633" + "WESTUS:20200224T174007Z:e4c3fea0-bc1d-4a68-bf44-0a51645b9144" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:52 GMT" + "Mon, 24 Feb 2020 17:40:07 GMT" ], "Content-Length": [ "7423" @@ -133,16 +133,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b484c4b8-13d9-4095-9c49-93d510d72d39" + "63e9076b-81ea-461b-8d04-a95e32eb1b64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -153,31 +153,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJd8=\"" + "\"AAAAAAAACio=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e3a74ff-0bfe-4f29-b1e1-4f03cb0c9446" + "7cb485a3-92c0-4546-b1d3-f14fd3f70cb5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "bc065a30-1b79-4078-83ae-f0b812194fe6" + "37c9a28e-5004-4906-898d-ec80db1d8310" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215753Z:bc065a30-1b79-4078-83ae-f0b812194fe6" + "WESTUS:20200224T174008Z:37c9a28e-5004-4906-898d-ec80db1d8310" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:52 GMT" + "Mon, 24 Feb 2020 17:40:07 GMT" ], "Content-Length": [ "1269" @@ -199,16 +199,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "009c90e8-8528-4732-a5a2-3b79a10e4b51" + "3cea6a77-bc9e-445e-a131-fc09da06ed83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -219,31 +219,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAFNY=\"" + "\"AAAAAAAACec=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89bc3723-1ace-4556-aede-e47cdde6e640" + "f63627db-3e2c-48e9-aee8-9a1e3ca76625" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "ac2123db-3987-4026-bdb0-785a6a59c66d" + "5d8b128d-355d-4ba9-b0af-42c3f77e0ed6" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215753Z:ac2123db-3987-4026-bdb0-785a6a59c66d" + "WESTUS:20200224T174008Z:5d8b128d-355d-4ba9-b0af-42c3f77e0ed6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:52 GMT" + "Mon, 24 Feb 2020 17:40:07 GMT" ], "Content-Length": [ "892" @@ -265,16 +265,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7da9b407-dae5-442a-9de9-30e0701288b8" + "15b92123-30fd-4809-981f-28e515f5e286" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -285,31 +285,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAFNg=\"" + "\"AAAAAAAACek=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3220c99-31b7-42d0-8df9-a32ee0849c55" + "025043fe-2829-47ef-8f12-3c10662037bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "e959bd94-fdf7-4ece-b71e-db5089c748d2" + "2a9a4a89-932d-463d-bbe6-8d7d12be6c73" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215753Z:e959bd94-fdf7-4ece-b71e-db5089c748d2" + "WESTUS:20200224T174008Z:2a9a4a89-932d-463d-bbe6-8d7d12be6c73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:52 GMT" + "Mon, 24 Feb 2020 17:40:07 GMT" ], "Content-Length": [ "902" @@ -331,16 +331,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d60e8f6d-8e91-4b49-80be-3d4de58afa85" + "72fbc6ed-a600-401f-a831-0a81d9b5c00f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -351,31 +351,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAFNk=\"" + "\"AAAAAAAACeo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b47a163-f681-4568-8b3d-69ede7731146" + "d029f27f-a779-4984-a5f0-1615bcd21857" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "b1079e4f-32be-4505-a25e-2c7405323d86" + "834d5e7f-47cf-49b5-aaf0-b4279bb86ff4" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215754Z:b1079e4f-32be-4505-a25e-2c7405323d86" + "WESTUS:20200224T174008Z:834d5e7f-47cf-49b5-aaf0-b4279bb86ff4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:53 GMT" + "Mon, 24 Feb 2020 17:40:07 GMT" ], "Content-Length": [ "897" @@ -397,16 +397,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cdc4a12-05d3-4393-a828-0661abe8e4f2" + "2b85e8cd-95ef-4235-955d-d6271157721d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -417,31 +417,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAFNQ=\"" + "\"AAAAAAAACeU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa51112e-3004-46a2-bc4f-8596c2c2409d" + "410f5137-c7b2-46df-a78e-40163fbcc758" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "8e8b8e02-2839-4efd-a0b0-62ff8fc79fa1" + "65f9f77f-dd4a-4505-ad23-9c0890f3d28e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215754Z:8e8b8e02-2839-4efd-a0b0-62ff8fc79fa1" + "WESTUS:20200224T174008Z:65f9f77f-dd4a-4505-ad23-9c0890f3d28e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:53 GMT" + "Mon, 24 Feb 2020 17:40:08 GMT" ], "Content-Length": [ "1476" @@ -463,16 +463,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93f4beac-7f16-450f-ab6f-882819f6b42d" + "1cf89cac-862f-4c28-858c-95329daf4570" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -483,31 +483,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAFNU=\"" + "\"AAAAAAAACeY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d43155ff-eca1-402f-86ad-2f839e9b915e" + "6ac65b7d-8b5b-47b1-8231-0a92c2fbfd0f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "aa646ef1-07d9-43a6-81ab-d1d2696f0649" + "c303dff7-7297-42c6-a942-fec594db0f85" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215754Z:aa646ef1-07d9-43a6-81ab-d1d2696f0649" + "WESTUS:20200224T174008Z:c303dff7-7297-42c6-a942-fec594db0f85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:53 GMT" + "Mon, 24 Feb 2020 17:40:08 GMT" ], "Content-Length": [ "1553" @@ -523,28 +523,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7852?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc4NTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7468?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc0Njg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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\": \"ps372\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps635\",\r\n \"description\": \"ps6464\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4288\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4288\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8363\",\r\n \"description\": \"ps3949\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4054\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4054\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps916\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2022\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps2604\",\r\n \"sample\": \"ps168\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps6342\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps9190\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps7533\",\r\n \"description\": \"ps3657\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps7560\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps7560\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps5101\",\r\n \"description\": \"ps6359\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps9053\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps9053\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps8877\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps5641\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1523\",\r\n \"sample\": \"ps3204\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps6170\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "50e3248f-4586-41dc-b1be-1857dbde4baa" + "e7110f5f-d5d2-4c29-a39e-358ca914acb3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1562" + "1566" ] }, "ResponseHeaders": { @@ -555,34 +555,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJpE=\"" + "\"AAAAAAAACuE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25ace963-ffcd-439e-9c11-7881d2591def" + "08cce3c0-a799-4d02-b781-210285935dc1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "da4f3511-7090-4528-b353-369c47b6d4db" + "56cfa4ac-d70b-4b33-b1e1-5102a61e8153" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215756Z:da4f3511-7090-4528-b353-369c47b6d4db" + "WESTUS:20200224T174010Z:56cfa4ac-d70b-4b33-b1e1-5102a61e8153" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:55 GMT" + "Mon, 24 Feb 2020 17:40:09 GMT" ], "Content-Length": [ - "1801" + "1805" ], "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/ps7852\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps7852\",\r\n \"properties\": {\r\n \"displayName\": \"ps6342\",\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\": \"ps372\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps635\",\r\n \"description\": \"ps6464\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4288\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4288\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8363\",\r\n \"description\": \"ps3949\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4054\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4054\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps916\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2022\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps2604\",\r\n \"sample\": \"ps168\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7468\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps7468\",\r\n \"properties\": {\r\n \"displayName\": \"ps6170\",\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\": \"ps9190\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps7533\",\r\n \"description\": \"ps3657\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps7560\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps7560\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps5101\",\r\n \"description\": \"ps6359\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps9053\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps9053\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps8877\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps5641\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1523\",\r\n \"sample\": \"ps3204\"\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/ps7852?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc4NTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7468?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc0Njg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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\": \"ps1968\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps4742\",\r\n \"description\": \"ps8175\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6733\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6733\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps9036\",\r\n \"description\": \"ps8278\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1207\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1207\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps5893\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps1400\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps6949\",\r\n \"sample\": \"ps2425\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps525\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps3084\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2596\",\r\n \"description\": \"ps1613\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6028\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6028\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps4030\",\r\n \"description\": \"ps4849\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps2402\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps2402\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps5090\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps3202\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps3069\",\r\n \"sample\": \"ps4803\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps5812\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e79edef4-adeb-4a1a-86c5-d60ee8d97c10" + "a99d35c9-8aef-4ee6-b2d6-e9a3828d2eee" ], "If-Match": [ "*" @@ -610,16 +610,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1594" + "1595" ] }, "ResponseHeaders": { @@ -633,25 +633,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6f77ce5-5271-44a8-82d3-e2564c1965b7" + "b86fbc68-d2b2-4163-b08b-bd6c294801b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "0a853058-e83e-44e8-81c3-1fda8bbe8904" + "5c46cbee-c3dd-438a-b3ec-7707995a3b3b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215757Z:0a853058-e83e-44e8-81c3-1fda8bbe8904" + "WESTUS:20200224T174012Z:5c46cbee-c3dd-438a-b3ec-7707995a3b3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:56 GMT" + "Mon, 24 Feb 2020 17:40:11 GMT" ], "Expires": [ "-1" @@ -661,22 +661,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7852?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc4NTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7468?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc0Njg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcf1d464-22ae-4c8c-a29c-a334c1487e14" + "081a24ea-270b-471d-a0d2-255463b30fd6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -687,34 +687,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJpM=\"" + "\"AAAAAAAACuM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ac5356b-3460-4f17-9925-d7f7527c8fb9" + "fba9785a-fcf6-46b7-b2d7-f2c8682728b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "a2037db0-9ba6-4e2e-a95a-436b8638fef4" + "0c9bb9db-1d28-44fc-816d-86a627f28fcf" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215757Z:a2037db0-9ba6-4e2e-a95a-436b8638fef4" + "WESTUS:20200224T174012Z:0c9bb9db-1d28-44fc-816d-86a627f28fcf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:56 GMT" + "Mon, 24 Feb 2020 17:40:11 GMT" ], "Content-Length": [ - "1887" + "1888" ], "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/echo-api/operations/ps7852\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps7852\",\r\n \"properties\": {\r\n \"displayName\": \"ps525\",\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\": \"ps1968\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps4742\",\r\n \"description\": \"ps8175\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6733\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6733\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps9036\",\r\n \"description\": \"ps8278\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1207\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1207\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps5893\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps1400\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps6949\",\r\n \"sample\": \"ps2425\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7468\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps7468\",\r\n \"properties\": {\r\n \"displayName\": \"ps5812\",\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\": \"ps3084\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2596\",\r\n \"description\": \"ps1613\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6028\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6028\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps4030\",\r\n \"description\": \"ps4849\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps2402\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps2402\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps5090\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps3202\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps3069\",\r\n \"sample\": \"ps4803\"\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/ps7852?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc4NTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7468?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc0Njg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd2dbf58-97f9-4e90-b92a-242188dfb4e3" + "9a4fb856-a1e5-4055-ba7c-fc028465ad14" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -756,25 +756,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f892b6bc-1725-4300-b877-141ed540da3a" + "947befc6-77d4-4da7-bff0-8e0ca9dca5ed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "2d852481-8b39-4691-adc9-c7c3a9de33ca" + "786c9563-1c2f-42ff-8781-494da1f7fe2d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215758Z:2d852481-8b39-4691-adc9-c7c3a9de33ca" + "WESTUS:20200224T174012Z:786c9563-1c2f-42ff-8781-494da1f7fe2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:57 GMT" + "Mon, 24 Feb 2020 17:40:12 GMT" ], "Content-Length": [ "85" @@ -790,13 +790,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7852?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc4NTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps7468?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczc0Njg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9475525e-d02d-45b4-b21f-ca9eed4471e9" + "e2e8b374-b162-4afb-b6d5-66a62b70c156" ], "If-Match": [ "*" @@ -805,10 +805,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -822,7 +822,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "342e78e9-b957-47f3-bf67-a4912ab4e4c7" + "452a9eab-8a54-47b9-a7e4-a662bd7862bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -831,16 +831,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "739fd5fa-e86b-42c9-bd9c-ec7d40c86a49" + "89992b63-f438-4264-aad0-20d4adae4408" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215758Z:739fd5fa-e86b-42c9-bd9c-ec7d40c86a49" + "WESTUS:20200224T174012Z:89992b63-f438-4264-aad0-20d4adae4408" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:57 GMT" + "Mon, 24 Feb 2020 17:40:11 GMT" ], "Expires": [ "-1" @@ -855,33 +855,33 @@ ], "Names": { "": [ - "ps7852", - "ps6342", - "ps372", - "ps3494", - "ps8363", - "ps3949", - "ps4054", - "ps635", - "ps6464", - "ps4288", - "ps916", - "ps2022", - "ps2604", - "ps168", - "ps525", - "ps1968", - "ps7774", - "ps9036", - "ps8278", - "ps1207", - "ps4742", - "ps8175", - "ps6733", - "ps5893", - "ps1400", - "ps6949", - "ps2425" + "ps7468", + "ps6170", + "ps9190", + "ps6548", + "ps5101", + "ps6359", + "ps9053", + "ps7533", + "ps3657", + "ps7560", + "ps8877", + "ps5641", + "ps1523", + "ps3204", + "ps5812", + "ps3084", + "ps4122", + "ps4030", + "ps4849", + "ps2402", + "ps2596", + "ps1613", + "ps6028", + "ps5090", + "ps3202", + "ps3069", + "ps4803" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json index 8a28e58bfadb..9b6b70a43b3f 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json @@ -7,16 +7,16 @@ "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": [ - "28198bbc-c2cb-459f-bb96-522bf426a629" + "c22df9b5-e587-4826-b364-3b2233199fa0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJak=\"" + "\"AAAAAAAACfQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bcee3e97-7da9-45f6-820c-67d3e4e5abfc" + "34b49e51-cec4-4064-a607-60b6a2d16b19" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "3efb7c78-075f-4bb1-ad41-30196696ad9d" + "148353b1-c885-418c-9f2e-8f370079b551" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215501Z:3efb7c78-075f-4bb1-ad41-30196696ad9d" + "WESTUS:20200224T173720Z:148353b1-c885-418c-9f2e-8f370079b551" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:00 GMT" + "Mon, 24 Feb 2020 17:37:19 GMT" ], "Content-Length": [ "890" @@ -70,7 +70,7 @@ ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", - "StatusCode": 201 + "StatusCode": 200 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2019-01-01", @@ -79,16 +79,16 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"bbybyxxbbcczc\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ea868cb7-8d7b-44e5-b224-541afe300f19" + "a95d28a2-671c-43f2-a5db-1339b7b6845c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -105,13 +105,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJcY=\"" + "\"AAAAAAAAChE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c18c6cac-d487-4c7d-9ac8-d70a1e6e72a1" + "1381d25f-3bb7-4ff3-86f7-de659cdd541e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -120,16 +120,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "6aa558e9-e667-419e-83a4-51d4ef57a814" + "195ebc5f-fbad-46ba-a46d-dc80da356320" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215509Z:6aa558e9-e667-419e-83a4-51d4ef57a814" + "WESTUS:20200224T173726Z:195ebc5f-fbad-46ba-a46d-dc80da356320" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:08 GMT" + "Mon, 24 Feb 2020 17:37:25 GMT" ], "Content-Length": [ "890" @@ -151,16 +151,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ba8221f-af08-4a09-a85d-642820c7147e" + "c68954ac-9e73-46fe-b232-ab4629f731c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJak=\"" + "\"AAAAAAAACfQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3687bde6-bbe2-4ee5-ad25-5087aa55416c" + "c0c29fe6-a010-4f11-9d97-81a142092227" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -186,16 +186,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "f2314717-688f-42d4-84e4-5a1bf4f60bf4" + "6afbba41-ac18-420e-9e5f-f3fd1554710b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215501Z:f2314717-688f-42d4-84e4-5a1bf4f60bf4" + "WESTUS:20200224T173720Z:6afbba41-ac18-420e-9e5f-f3fd1554710b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:00 GMT" + "Mon, 24 Feb 2020 17:37:19 GMT" ], "Content-Length": [ "890" @@ -217,16 +217,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c279dcb-b956-4a91-afeb-55cfc4292c70" + "ab04ca66-43ad-4e39-a4c5-b796665570aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -240,7 +240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67674685-ad46-41c0-a317-72644ffa32e3" + "df8db856-baf8-4f33-9fc5-67e61c8f2765" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -249,16 +249,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "2e7d8421-bf94-4c1b-94c7-33cd10b0fdec" + "206aecb4-5aa5-4329-8fcc-295d5e3813ae" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215502Z:2e7d8421-bf94-4c1b-94c7-33cd10b0fdec" + "WESTUS:20200224T173721Z:206aecb4-5aa5-4329-8fcc-295d5e3813ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:01 GMT" + "Mon, 24 Feb 2020 17:37:20 GMT" ], "Content-Length": [ "97" @@ -280,16 +280,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0571ff73-a846-43a1-8c04-463739453689" + "707ee136-e38e-4fc8-9d07-2dce30512302" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -300,13 +300,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJcY=\"" + "\"AAAAAAAAChE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eea3264e-f420-43b4-8c43-743ead25ac39" + "0d1e03a3-f5d6-41cd-bd26-2cf5b7ea5f41" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -315,16 +315,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "975e068c-1875-4134-8acb-260d308519f0" + "0b0e6780-4132-4d4e-8234-a7cbb33f7a3a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215509Z:975e068c-1875-4134-8acb-260d308519f0" + "WESTUS:20200224T173726Z:0b0e6780-4132-4d4e-8234-a7cbb33f7a3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:08 GMT" + "Mon, 24 Feb 2020 17:37:25 GMT" ], "Content-Length": [ "890" @@ -346,16 +346,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5527c068-6297-4dc4-9a40-3165beec4640" + "b6609a1d-517f-470f-89ce-dec55a2dc7d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -369,7 +369,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ddb7158e-839e-4966-8f5f-c895c07324dd" + "2abde655-034f-4ab0-bb31-09bd19690551" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -378,16 +378,16 @@ "11986" ], "x-ms-correlation-request-id": [ - "1e5e4a1e-2f9e-474e-9bd1-c25ab83663a7" + "da9557ef-554a-4d34-9637-bc780b775ab8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215509Z:1e5e4a1e-2f9e-474e-9bd1-c25ab83663a7" + "WESTUS:20200224T173726Z:da9557ef-554a-4d34-9637-bc780b775ab8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:08 GMT" + "Mon, 24 Feb 2020 17:37:26 GMT" ], "Content-Length": [ "97" @@ -409,7 +409,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b5b8421-3522-4c86-a683-2bb7965da072" + "64c669e1-1679-4170-9102-68eb7331507b" ], "If-Match": [ "*" @@ -418,10 +418,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -435,7 +435,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1685f50-52f5-42b5-990a-ee0372a54854" + "81a36d76-6ab2-4723-af91-3640ef77f5a3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -444,16 +444,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "12fc6ea5-3f5a-407f-8bce-a0943c9417a3" + "0c8e69a5-9385-43ff-89aa-db6028b4b876" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215501Z:12fc6ea5-3f5a-407f-8bce-a0943c9417a3" + "WESTUS:20200224T173721Z:0c8e69a5-9385-43ff-89aa-db6028b4b876" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:01 GMT" + "Mon, 24 Feb 2020 17:37:20 GMT" ], "Expires": [ "-1" @@ -472,7 +472,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1010d991-f1de-4650-a5e4-d9bf45d52a74" + "e18cd72a-e025-41a8-adb2-beb27973343d" ], "If-Match": [ "*" @@ -481,10 +481,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -498,7 +498,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79a4ebf4-3ea5-4d1e-a777-6bd66d4e6add" + "e3252f72-47c2-4cdd-80e8-1ca293924dfb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -507,16 +507,16 @@ "14995" ], "x-ms-correlation-request-id": [ - "ea9986ff-679f-496c-a9b0-0ad997fdddea" + "d38f0ea1-96d9-4bb0-a063-2dc8d6bf978a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215509Z:ea9986ff-679f-496c-a9b0-0ad997fdddea" + "WESTUS:20200224T173726Z:d38f0ea1-96d9-4bb0-a063-2dc8d6bf978a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:08 GMT" + "Mon, 24 Feb 2020 17:37:26 GMT" ], "Expires": [ "-1" @@ -535,16 +535,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08979c97-8509-40b1-9181-12c2605f1b00" + "ae3bab09-6f05-48e3-a06b-aac29eecffd3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -558,7 +558,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4101f541-0d96-4ec0-a983-ec3394ec468f" + "911a10dd-3221-4e31-a5db-33621495180f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -567,16 +567,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "857cf29f-6101-4eee-934d-adcf3b8d33cb" + "84bb733c-1062-4041-80a2-4c22cb211d71" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215502Z:857cf29f-6101-4eee-934d-adcf3b8d33cb" + "WESTUS:20200224T173721Z:84bb733c-1062-4041-80a2-4c22cb211d71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:01 GMT" + "Mon, 24 Feb 2020 17:37:20 GMT" ], "Content-Length": [ "670" @@ -598,16 +598,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502e7bbf-75f7-4414-a9e9-a9f0e753b286" + "f7ecc93a-9eef-4ff7-a42e-f06d4a47472a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -621,7 +621,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "184ecc67-2bb0-431a-a53c-fced554b4db3" + "b52b47b8-a44d-4005-93af-5fceecc9d831" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -630,16 +630,16 @@ "11985" ], "x-ms-correlation-request-id": [ - "06bdca9d-03db-406a-bdb6-5213aaa34eb1" + "d0eddda7-de1a-4d16-af27-a6530a043e75" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215509Z:06bdca9d-03db-406a-bdb6-5213aaa34eb1" + "WESTUS:20200224T173727Z:d0eddda7-de1a-4d16-af27-a6530a043e75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:08 GMT" + "Mon, 24 Feb 2020 17:37:26 GMT" ], "Content-Length": [ "670" @@ -661,7 +661,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "624c2a37-bd04-43b9-838d-ce1a09e01b2b" + "4673771e-bbbe-4e57-8bd0-e5a8dd6ff2e1" ], "If-Match": [ "*" @@ -670,10 +670,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,13 +690,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJbA=\"" + "\"AAAAAAAACfs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45672689-a08f-49a9-89c3-a51fe8005030" + "ba4da745-a21e-4428-b537-a728c0bb943d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -705,16 +705,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "56545a17-1c39-46e9-8c7a-2e1e9815d7bb" + "fb87b595-014a-475b-bb7b-e05edd109020" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215503Z:56545a17-1c39-46e9-8c7a-2e1e9815d7bb" + "WESTUS:20200224T173721Z:fb87b595-014a-475b-bb7b-e05edd109020" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:02 GMT" + "Mon, 24 Feb 2020 17:37:21 GMT" ], "Content-Length": [ "578" @@ -736,7 +736,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "171e75fa-1153-439d-b402-cb688324659e" + "a1498e87-2c6d-401b-bdbb-2721aec9c238" ], "If-Match": [ "*" @@ -745,10 +745,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -765,13 +765,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJc0=\"" + "\"AAAAAAAAChk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9326fa72-99cd-41e8-a39b-773c38335847" + "d9030da4-daea-452b-9ca4-73205e0f0221" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,16 +780,16 @@ "1194" ], "x-ms-correlation-request-id": [ - "dcf27f6f-7b91-42af-b58c-a46e1a192f33" + "d06e67cc-9ef3-4346-84d2-261ca936a063" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215510Z:dcf27f6f-7b91-42af-b58c-a46e1a192f33" + "WESTUS:20200224T173727Z:d06e67cc-9ef3-4346-84d2-261ca936a063" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:09 GMT" + "Mon, 24 Feb 2020 17:37:26 GMT" ], "Content-Length": [ "578" @@ -811,16 +811,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1783832a-4902-4e88-baa8-e55ee821d7f7" + "c906f235-0445-4fc1-aabe-e44bc3f9f1e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -831,13 +831,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJbA=\"" + "\"AAAAAAAACfs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5be197c3-ff5f-4569-9ec5-45ae271a4a0d" + "e4584631-91c5-4472-81f5-5ec9b2a98a78" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -846,16 +846,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "7f59c3d8-63f9-489d-bd07-c3db6c830f80" + "82ab9a3f-3cb3-420b-ad6f-85c6a1a8f75f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215503Z:7f59c3d8-63f9-489d-bd07-c3db6c830f80" + "WESTUS:20200224T173722Z:82ab9a3f-3cb3-420b-ad6f-85c6a1a8f75f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:02 GMT" + "Mon, 24 Feb 2020 17:37:21 GMT" ], "Content-Length": [ "578" @@ -877,16 +877,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf8940ef-adaa-4fc5-9fe1-1a068f0d3e76" + "79b0a99e-11d6-46e2-a346-ef58e6c920e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -900,7 +900,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2492d0d-c987-4592-985f-461ae405a75a" + "54661d66-f7fd-4617-bd80-0a487c1325f0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -909,16 +909,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "9669b7a2-a313-4d11-87d1-f4c93eb51982" + "56ba012f-7338-4924-8736-7b0a84b8a33b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215504Z:9669b7a2-a313-4d11-87d1-f4c93eb51982" + "WESTUS:20200224T173722Z:56ba012f-7338-4924-8736-7b0a84b8a33b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:03 GMT" + "Mon, 24 Feb 2020 17:37:21 GMT" ], "Content-Length": [ "97" @@ -940,16 +940,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de37d4f3-54bc-41ad-a90b-69f236834b6f" + "ba36187a-88dd-416c-be3a-9496fac20277" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -963,7 +963,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b8924d36-e2e3-45e7-aa0c-bca5a41756f6" + "81e598a3-ec2c-45e0-8600-cee00af59f5b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -972,16 +972,16 @@ "11983" ], "x-ms-correlation-request-id": [ - "688dbc92-603e-42ac-b9fe-50c2d17cc641" + "d93c8a23-1905-489f-b4b8-2900cc37ef26" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215510Z:688dbc92-603e-42ac-b9fe-50c2d17cc641" + "WESTUS:20200224T173728Z:d93c8a23-1905-489f-b4b8-2900cc37ef26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:09 GMT" + "Mon, 24 Feb 2020 17:37:27 GMT" ], "Content-Length": [ "97" @@ -1003,7 +1003,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6a1e512-64e4-49f0-81db-61728bbd6516" + "9c5cf6d4-6431-40b6-aaf1-b2ced39f388c" ], "If-Match": [ "*" @@ -1012,10 +1012,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1029,7 +1029,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc8eac34-4298-4cd8-918d-a88e2388d07c" + "cad7525a-555d-4540-9313-a303aab44a80" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1038,16 +1038,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "67cd82ac-ff88-4380-93b4-4bf8d75ecec5" + "c4742b42-527b-4603-861b-9ebfde4a4b3a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215504Z:67cd82ac-ff88-4380-93b4-4bf8d75ecec5" + "WESTUS:20200224T173722Z:c4742b42-527b-4603-861b-9ebfde4a4b3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:03 GMT" + "Mon, 24 Feb 2020 17:37:21 GMT" ], "Expires": [ "-1" @@ -1066,7 +1066,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4faa0c39-a3d2-49d5-a2f6-a732324e487f" + "e3bf1d26-1d1c-4459-9f18-e69d4e5bad92" ], "If-Match": [ "*" @@ -1075,10 +1075,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1092,7 +1092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "235bae6e-1d49-4864-b819-388cf2fe515e" + "c65d4fd8-185e-445a-914b-4fbbd8e25d49" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1101,16 +1101,16 @@ "14994" ], "x-ms-correlation-request-id": [ - "74aaf513-6fb9-418f-9430-1c64b1f60160" + "8b37e0e6-af0d-4544-883c-9095407f1556" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215510Z:74aaf513-6fb9-418f-9430-1c64b1f60160" + "WESTUS:20200224T173727Z:8b37e0e6-af0d-4544-883c-9095407f1556" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:09 GMT" + "Mon, 24 Feb 2020 17:37:27 GMT" ], "Expires": [ "-1" @@ -1129,16 +1129,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cfdbd2d-8b65-4b5f-8998-ee5e65541322" + "8572d1b5-1cf0-4c0f-afde-aa03abb72801" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1152,7 +1152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8cf4601d-9282-4dc7-8c37-ca82b6fe5d62" + "f7a9438c-7d24-4c6d-af9b-c1e74d3e1a8d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1161,19 +1161,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "a1dfac9e-d65c-4268-b71e-7da4e3402a92" + "de4ada10-bdd1-444b-b94d-2bb93d4b3308" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215504Z:a1dfac9e-d65c-4268-b71e-7da4e3402a92" + "WESTUS:20200224T173722Z:de4ada10-bdd1-444b-b94d-2bb93d4b3308" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:03 GMT" + "Mon, 24 Feb 2020 17:37:21 GMT" ], "Content-Length": [ - "690" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1182,7 +1182,7 @@ "-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 \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/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 }, { @@ -1192,16 +1192,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6d46617-ba3b-42c0-ade2-351711ef4ab6" + "112c2c96-7c48-4935-b073-4d9615e90185" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1215,7 +1215,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "463c5a93-95c3-4d9d-93e9-dbe50b54523a" + "ad5bbc3b-8d0c-4e4d-a7c5-5e1407d8cc42" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1224,19 +1224,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "ae6e6c3e-4b60-44cc-8991-f6b31e0a5bd5" + "13550d22-14d7-4e37-8da9-a085e1a47b1d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215506Z:ae6e6c3e-4b60-44cc-8991-f6b31e0a5bd5" + "WESTUS:20200224T173724Z:13550d22-14d7-4e37-8da9-a085e1a47b1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:05 GMT" + "Mon, 24 Feb 2020 17:37:23 GMT" ], "Content-Length": [ - "690" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1245,7 +1245,7 @@ "-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 \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/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 }, { @@ -1255,16 +1255,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0582f969-ab11-44db-b3e7-524951a988ed" + "6df5fda8-9861-4572-8874-a0c2fe6e6f7a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1278,7 +1278,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9540f3c-a60b-4777-a01f-9b9937c44618" + "6e7bec94-43de-4193-8d7a-1b6c175aef57" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1287,19 +1287,19 @@ "11982" ], "x-ms-correlation-request-id": [ - "74f8f696-e392-424e-afa6-fc663530cdc9" + "2a1f53f9-34c4-499e-b8ec-38b384d93789" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215510Z:74f8f696-e392-424e-afa6-fc663530cdc9" + "WESTUS:20200224T173728Z:2a1f53f9-34c4-499e-b8ec-38b384d93789" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:09 GMT" + "Mon, 24 Feb 2020 17:37:27 GMT" ], "Content-Length": [ - "690" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1308,7 +1308,7 @@ "-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 \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/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 }, { @@ -1318,16 +1318,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91cdb823-b0ca-430b-bf60-369596a783ac" + "a2bfa704-11b9-4292-abf1-64b0a79a9877" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1341,7 +1341,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14f04722-4082-4426-9c34-4259d9a9e336" + "bfbe82dd-7c72-4747-8be3-c70f48ef0123" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1350,19 +1350,19 @@ "11979" ], "x-ms-correlation-request-id": [ - "a375c9aa-c768-4c60-a733-c041620fa3a6" + "6a07a6ae-ca8a-43b7-a17d-0718670624ae" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215511Z:a375c9aa-c768-4c60-a733-c041620fa3a6" + "WESTUS:20200224T173728Z:6a07a6ae-ca8a-43b7-a17d-0718670624ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:11 GMT" + "Mon, 24 Feb 2020 17:37:27 GMT" ], "Content-Length": [ - "690" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1371,7 +1371,7 @@ "-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 \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/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 }, { @@ -1381,7 +1381,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n version\\r\\n Accept\\r\\n Accept-Charset\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9865938d-05b7-4c6b-b396-061227446605" + "dbc2d37b-0ab8-4933-906b-d48af1459a7b" ], "If-Match": [ "*" @@ -1390,10 +1390,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1410,13 +1410,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJbg=\"" + "\"AAAAAAAACgM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54a3d8fc-8207-4ffb-9d08-4312906e09ac" + "c75211e8-2877-4a45-b242-e52b823f0f0a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1425,16 +1425,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "2f43ac52-aaa4-46a1-a5db-8112945c4141" + "2ba79e67-d89a-46ea-a4ba-88347c6dad30" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215505Z:2f43ac52-aaa4-46a1-a5db-8112945c4141" + "WESTUS:20200224T173723Z:2ba79e67-d89a-46ea-a4ba-88347c6dad30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:04 GMT" + "Mon, 24 Feb 2020 17:37:22 GMT" ], "Content-Length": [ "810" @@ -1456,7 +1456,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"versionAcceptAccept-Charset\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6edd3966-601f-40bd-924e-9b657c12694b" + "1a8cf5fa-2efc-49ca-96fd-861ed253e545" ], "If-Match": [ "*" @@ -1465,10 +1465,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1485,13 +1485,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJdQ=\"" + "\"AAAAAAAACiA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4527b39e-0a70-41ea-8b69-aa06bc68a344" + "ee21fecb-8be0-4062-98b6-c4849757ee99" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1500,16 +1500,16 @@ "1193" ], "x-ms-correlation-request-id": [ - "849d06f3-6c18-4e37-ace8-995812994fa6" + "78ea2b42-bddd-4979-9f46-dcfafb29faaf" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215511Z:849d06f3-6c18-4e37-ace8-995812994fa6" + "WESTUS:20200224T173728Z:78ea2b42-bddd-4979-9f46-dcfafb29faaf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:11 GMT" + "Mon, 24 Feb 2020 17:37:27 GMT" ], "Content-Length": [ "810" @@ -1531,16 +1531,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30ecc238-6d1e-4610-b92e-c7e5197b2ec8" + "9954641e-9b4b-43e0-9b82-7a7dad2180fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1551,13 +1551,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJbg=\"" + "\"AAAAAAAACgM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a506da9-0a1b-4e29-b602-8ca76021303a" + "8f43f76f-0218-48d6-8424-6278479c4af2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1566,16 +1566,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "77d58eae-8595-4e5c-bc51-7eb2ed40a33f" + "874dcc89-9ae3-477e-a77a-86b95b3c040f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215505Z:77d58eae-8595-4e5c-bc51-7eb2ed40a33f" + "WESTUS:20200224T173723Z:874dcc89-9ae3-477e-a77a-86b95b3c040f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:04 GMT" + "Mon, 24 Feb 2020 17:37:22 GMT" ], "Content-Length": [ "810" @@ -1597,16 +1597,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1e2f1ad-4787-4edb-8f06-1d10db3ca6f5" + "8a900dea-554c-440e-8b72-48e0fcae9b71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1620,7 +1620,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41dcd84f-1c22-4e95-8df4-2c7acaa0de5d" + "cfe184b6-2f2b-4419-a64b-839c6abce165" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1629,16 +1629,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "fb333bf8-4caa-47a2-8749-6008dda6286e" + "fe46eedb-d903-4618-8112-e2335d76a28d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215505Z:fb333bf8-4caa-47a2-8749-6008dda6286e" + "WESTUS:20200224T173724Z:fe46eedb-d903-4618-8112-e2335d76a28d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:05 GMT" + "Mon, 24 Feb 2020 17:37:23 GMT" ], "Content-Length": [ "97" @@ -1660,16 +1660,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1fbd9b5-6fdd-4c34-8a21-79ffdded62e9" + "909d37fb-c9ea-4375-aefd-b98032dc9049" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1683,7 +1683,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3abfddfa-8fc4-439f-851a-04d9c123180c" + "1f8836c7-6f9c-42d2-a2da-ce8e0d7fe77c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1692,16 +1692,16 @@ "11980" ], "x-ms-correlation-request-id": [ - "2cad1423-0d20-46f4-a26b-14b1bac749c7" + "e0e78d84-9caf-4824-a028-9981d58a1865" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215511Z:2cad1423-0d20-46f4-a26b-14b1bac749c7" + "WESTUS:20200224T173728Z:e0e78d84-9caf-4824-a028-9981d58a1865" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:11 GMT" + "Mon, 24 Feb 2020 17:37:27 GMT" ], "Content-Length": [ "97" @@ -1723,7 +1723,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48f62119-0554-4943-815c-b4023749909a" + "c0bdf2c4-960f-436e-b734-904bc128083b" ], "If-Match": [ "*" @@ -1732,10 +1732,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1749,7 +1749,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d5b30b8-5531-4f2a-b441-7e84258ee543" + "fecfde67-05c3-4f3f-b824-284c2eb8b3ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1758,16 +1758,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "bf574af4-91fb-46bf-9757-5506196abfab" + "b6a843b6-4414-425b-b715-d92eb55c8d98" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215505Z:bf574af4-91fb-46bf-9757-5506196abfab" + "WESTUS:20200224T173724Z:b6a843b6-4414-425b-b715-d92eb55c8d98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:04 GMT" + "Mon, 24 Feb 2020 17:37:23 GMT" ], "Expires": [ "-1" @@ -1786,7 +1786,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80ae472c-7bf8-43ca-b2fc-2de71e80d8eb" + "d68460c0-f2f5-4cc6-a5ef-041d48247adc" ], "If-Match": [ "*" @@ -1795,10 +1795,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1812,7 +1812,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "138b7059-ac37-4d07-9c39-aa493eb3d702" + "9e1e474f-0f99-4769-a803-20294ac7e26d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1821,16 +1821,16 @@ "14993" ], "x-ms-correlation-request-id": [ - "91483f2d-4903-4074-9537-b084a458416d" + "cdd62467-c921-4902-8f62-fab89d27dae7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215511Z:91483f2d-4903-4074-9537-b084a458416d" + "WESTUS:20200224T173728Z:cdd62467-c921-4902-8f62-fab89d27dae7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:11 GMT" + "Mon, 24 Feb 2020 17:37:27 GMT" ], "Expires": [ "-1" @@ -1849,16 +1849,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2a7e8a7-ed90-45d1-aabf-b88a22127e83" + "360e31bd-7283-4320-ba09-fb374ee6effd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1872,7 +1872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5624e1fe-b50e-4dc9-8928-649ef1dbc39f" + "2a4424ff-e2fa-483d-9479-1e71d19888d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1881,16 +1881,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "62023b21-6080-4229-a2a9-3a3fea416660" + "34066841-5976-43d8-aca5-8d70a5f2e631" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215506Z:62023b21-6080-4229-a2a9-3a3fea416660" + "WESTUS:20200224T173724Z:34066841-5976-43d8-aca5-8d70a5f2e631" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:05 GMT" + "Mon, 24 Feb 2020 17:37:23 GMT" ], "Content-Length": [ "7423" @@ -1912,16 +1912,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2661865-c7e1-4389-8a97-e665a6a5f94e" + "954666f9-f3e8-4a46-a9a1-4efe3c3c88d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1935,7 +1935,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b024ed26-6627-4cb8-9dd1-b3cef104bfaf" + "14ffb1f8-881a-4280-8f4b-29c18e931dc0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1944,16 +1944,16 @@ "11978" ], "x-ms-correlation-request-id": [ - "f3e61f10-505c-4e6d-afb1-314c786f11d3" + "d8643d7c-8117-4211-ab49-7c465ba8f80a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215511Z:f3e61f10-505c-4e6d-afb1-314c786f11d3" + "WESTUS:20200224T173728Z:d8643d7c-8117-4211-ab49-7c465ba8f80a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:11 GMT" + "Mon, 24 Feb 2020 17:37:28 GMT" ], "Content-Length": [ "7423" @@ -1975,7 +1975,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1e27bf0b-9262-414d-bd78-8e968fb58746" + "28278fb7-f5e3-4c6e-92d7-1dcdd0999b90" ], "If-Match": [ "*" @@ -1984,10 +1984,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2004,13 +2004,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJb8=\"" + "\"AAAAAAAACgk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a9edc4e-266a-41c8-b986-567f0956a731" + "d692484c-3fc7-4013-b1ea-6c020e2b05a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2019,16 +2019,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "50b3dba6-b706-49cf-87cf-b7efc4c7c03c" + "fc25ceb1-dd2a-4179-b82f-873c0dddc44d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215507Z:50b3dba6-b706-49cf-87cf-b7efc4c7c03c" + "WESTUS:20200224T173725Z:fc25ceb1-dd2a-4179-b82f-873c0dddc44d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:06 GMT" + "Mon, 24 Feb 2020 17:37:24 GMT" ], "Content-Length": [ "540" @@ -2041,7 +2041,7 @@ ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", - "StatusCode": 201 + "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=2019-01-01", @@ -2050,7 +2050,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8c01ac83-6baa-46bc-a815-8f119a733f21" + "260d8178-2037-4ebb-a2ed-415c0a1c536c" ], "If-Match": [ "*" @@ -2059,10 +2059,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2079,13 +2079,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJdw=\"" + "\"AAAAAAAACic=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a946682-5abc-4e66-85f0-dbc41cec476d" + "26c78f8c-3bd6-4bc7-9a75-7dcaef28817c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2094,16 +2094,16 @@ "1192" ], "x-ms-correlation-request-id": [ - "b9b7334a-818b-4b78-8aba-11b1101c7b56" + "14cac111-89a3-4fb0-af2c-026006ecf3a5" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215512Z:b9b7334a-818b-4b78-8aba-11b1101c7b56" + "WESTUS:20200224T173729Z:14cac111-89a3-4fb0-af2c-026006ecf3a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:12 GMT" + "Mon, 24 Feb 2020 17:37:28 GMT" ], "Content-Length": [ "540" @@ -2125,16 +2125,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "311f3a7e-ce6b-48c7-b2d3-e78d479fba47" + "f2caae91-fc1a-45c3-9931-0a68401baf20" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2145,13 +2145,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJb8=\"" + "\"AAAAAAAACgk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff5309d7-3842-41c8-9cb7-7d904edfad36" + "4b96047c-60d0-4a50-91af-49d63abdc88e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2160,16 +2160,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "df8c8c3f-b60e-4248-aaaf-8806ad5d8302" + "5ed29832-cd77-417c-88c1-b6981a5f9612" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215507Z:df8c8c3f-b60e-4248-aaaf-8806ad5d8302" + "WESTUS:20200224T173725Z:5ed29832-cd77-417c-88c1-b6981a5f9612" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:06 GMT" + "Mon, 24 Feb 2020 17:37:24 GMT" ], "Content-Length": [ "540" @@ -2191,16 +2191,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e50c54d-82eb-4603-af55-55f133eafaba" + "de242755-6f51-4a58-913b-f36bc2efc213" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2214,7 +2214,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4aee8907-b811-476b-a266-bc6e42537ac3" + "0a164caa-253b-4b17-99d4-eb068f0bbe90" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2223,16 +2223,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "a65221bd-8c88-4c7d-b2ac-5525eda0d90f" + "455a991d-ab4a-4629-9711-50979f92cad6" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215509Z:a65221bd-8c88-4c7d-b2ac-5525eda0d90f" + "WESTUS:20200224T173726Z:455a991d-ab4a-4629-9711-50979f92cad6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:08 GMT" + "Mon, 24 Feb 2020 17:37:25 GMT" ], "Content-Length": [ "97" @@ -2254,16 +2254,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9bcd0f0-7dbd-443a-8ebe-45114cefe9fc" + "d827571f-de98-433c-ae95-4aff047821f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2277,7 +2277,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27472b83-26a2-4857-b32b-fc2c50c2da85" + "0d77e0c2-3197-4fa8-8d69-487880461d44" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2286,16 +2286,16 @@ "11976" ], "x-ms-correlation-request-id": [ - "5e8b0dbb-e230-4c72-9c95-9a95b124bbff" + "e6d62c3c-bc6a-4478-bddd-f3335ed93bdf" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215512Z:5e8b0dbb-e230-4c72-9c95-9a95b124bbff" + "WESTUS:20200224T173729Z:e6d62c3c-bc6a-4478-bddd-f3335ed93bdf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:12 GMT" + "Mon, 24 Feb 2020 17:37:28 GMT" ], "Content-Length": [ "97" @@ -2317,7 +2317,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44fe4463-e7e3-40b4-b7f4-60740f0e6ece" + "9d0755b6-1d00-4748-827d-89308f81cd4f" ], "If-Match": [ "*" @@ -2326,10 +2326,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2343,7 +2343,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fd12520-9fc6-4847-99f2-409303c97261" + "da2c5990-725f-4d73-81e9-bad1cfe7f267" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2352,16 +2352,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "ac4dd95b-b818-4754-a6f2-73d840940955" + "9d7695f6-d47c-4537-bd38-7c26da4255d5" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215508Z:ac4dd95b-b818-4754-a6f2-73d840940955" + "WESTUS:20200224T173726Z:9d7695f6-d47c-4537-bd38-7c26da4255d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:07 GMT" + "Mon, 24 Feb 2020 17:37:25 GMT" ], "Expires": [ "-1" @@ -2380,7 +2380,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74eae8ce-0900-4eb6-8c7f-bc4df1291613" + "4a124488-6522-43be-83fa-643056484272" ], "If-Match": [ "*" @@ -2389,10 +2389,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2406,7 +2406,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3be914a4-e00b-4665-81f3-fb783e5d2344" + "b71b46ef-49a9-4ad0-bda4-fcaafc95472a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2415,16 +2415,16 @@ "14992" ], "x-ms-correlation-request-id": [ - "3d6bd446-4f95-4bca-bb09-218b45eaa347" + "8d97d4c1-ccb2-478f-b7ac-42997e6fb57d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215512Z:3d6bd446-4f95-4bca-bb09-218b45eaa347" + "WESTUS:20200224T173729Z:8d97d4c1-ccb2-478f-b7ac-42997e6fb57d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:12 GMT" + "Mon, 24 Feb 2020 17:37:28 GMT" ], "Expires": [ "-1" @@ -2443,16 +2443,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d558a7c-7b18-4343-8017-8afd3e271d23" + "a17e4e62-71d0-45f7-a419-fc955c72052c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2463,13 +2463,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJc0=\"" + "\"AAAAAAAAChk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfc0c0b0-55cb-473f-b620-c92c9821e0b1" + "5c1290ab-366b-417a-a9bd-4b5993eaded1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2478,16 +2478,16 @@ "11984" ], "x-ms-correlation-request-id": [ - "e86dcc76-ff72-46ac-b3f6-8bb702e59aea" + "bce61c1a-d69c-4e07-83a4-957bffee28ab" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215510Z:e86dcc76-ff72-46ac-b3f6-8bb702e59aea" + "WESTUS:20200224T173727Z:bce61c1a-d69c-4e07-83a4-957bffee28ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:09 GMT" + "Mon, 24 Feb 2020 17:37:26 GMT" ], "Content-Length": [ "581" @@ -2509,16 +2509,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53aecc6d-9d3e-419a-8543-eb93d0306310" + "f706298f-66f0-4194-984c-2cf184eecc19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2529,13 +2529,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJdQ=\"" + "\"AAAAAAAACiA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b33ef31-1265-45f5-83b9-b277e37450bc" + "56697e1d-f895-411d-bc31-2e560e376835" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2544,16 +2544,16 @@ "11981" ], "x-ms-correlation-request-id": [ - "b9a8fc27-ca06-4f59-ab3c-c480074b86ef" + "72aaf7c4-a620-4384-82c0-1e3fb463d7cd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215511Z:b9a8fc27-ca06-4f59-ab3c-c480074b86ef" + "WESTUS:20200224T173728Z:72aaf7c4-a620-4384-82c0-1e3fb463d7cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:11 GMT" + "Mon, 24 Feb 2020 17:37:27 GMT" ], "Content-Length": [ "813" @@ -2575,16 +2575,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "363692ea-51e8-4b52-9844-82c6bdb738cc" + "bda7740c-cd34-4e8d-bda8-684e75318d2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2595,13 +2595,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJdw=\"" + "\"AAAAAAAACic=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6164ffab-4bbe-44fe-8085-b7fcaee14587" + "bc4bddbb-c451-4861-9b03-d035d1e70a2f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2610,16 +2610,16 @@ "11977" ], "x-ms-correlation-request-id": [ - "16f91f60-7466-4177-bb1e-3fed55eca40e" + "87e94a09-a901-4503-9429-de03d2443d8d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215512Z:16f91f60-7466-4177-bb1e-3fed55eca40e" + "WESTUS:20200224T173729Z:87e94a09-a901-4503-9429-de03d2443d8d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:55:12 GMT" + "Mon, 24 Feb 2020 17:37:28 GMT" ], "Content-Length": [ "543" diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json index 32a38674f2f2..230d88379cdc 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3085f7a-90b4-40b8-aafd-165eefa1cf78" + "280e4ea5-1ad9-4d74-aab9-67d93841c17c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24b210c4-fd32-4ceb-8f84-17587ae9c214" + "11042a7b-d803-4582-8fb3-18ab16b54c9d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,19 +39,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "e036d40c-b4d6-4a23-bf9d-87884d0524e2" + "40a5b182-46bc-4b18-b964-a86cbedffff6" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215657Z:e036d40c-b4d6-4a23-bf9d-87884d0524e2" + "WESTUS:20200224T173908Z:40a5b182-46bc-4b18-b964-a86cbedffff6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:57 GMT" + "Mon, 24 Feb 2020 17:39:07 GMT" ], "Content-Length": [ - "1287" + "1285" ], "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/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2353\",\r\n \"terms\": \"ps8327\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps838\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps975\",\r\n \"terms\": \"ps6461\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps7549\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e251ba80-5ba7-4485-8ccb-1eee7798059b" + "5538790d-edee-49b5-886f-ddd67d43e237" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJjc=\"" + "\"AAAAAAAACoU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27f23744-da5c-4c15-af5d-cfd3f573df11" + "4f9b388c-5d93-4424-ab43-b5345860353c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,16 +111,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "573ff016-a4e3-47eb-8cdb-02df1648d038" + "1103bf5c-1ab8-4690-a9de-2cfbbdf37189" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215659Z:573ff016-a4e3-47eb-8cdb-02df1648d038" + "WESTUS:20200224T173908Z:1103bf5c-1ab8-4690-a9de-2cfbbdf37189" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:59 GMT" + "Mon, 24 Feb 2020 17:39:08 GMT" ], "Content-Length": [ "997" @@ -132,26 +132,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8914\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8914\",\r\n \"properties\": {\r\n \"displayName\": \"ps838\",\r\n \"description\": \"ps2353\",\r\n \"terms\": \"ps8327\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps3431\",\r\n \"properties\": {\r\n \"displayName\": \"ps7549\",\r\n \"description\": \"ps975\",\r\n \"terms\": \"ps6461\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05a0c062-8a2d-4181-98a0-f833a0bad008" + "31cd78c2-8faa-42a8-8ad9-ff8f85d9cb13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -162,13 +162,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJjc=\"" + "\"AAAAAAAACoU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c50075e-8e13-4dd4-9c0c-2252221ab375" + "40ee664f-ff99-4376-a461-37c2df1d68cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "b4f75093-a90d-4b77-9969-a5cda3fe1523" + "ef5da36b-734c-4b64-b603-18fb41cf8402" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215659Z:b4f75093-a90d-4b77-9969-a5cda3fe1523" + "WESTUS:20200224T173909Z:ef5da36b-734c-4b64-b603-18fb41cf8402" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:59 GMT" + "Mon, 24 Feb 2020 17:39:08 GMT" ], "Content-Length": [ "483" @@ -198,26 +198,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8914\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8914\",\r\n \"properties\": {\r\n \"displayName\": \"ps838\",\r\n \"description\": \"ps2353\",\r\n \"terms\": \"ps8327\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps3431\",\r\n \"properties\": {\r\n \"displayName\": \"ps7549\",\r\n \"description\": \"ps975\",\r\n \"terms\": \"ps6461\",\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/ps8914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6dcc986-f60a-4780-ae2f-fcc1babc5676" + "141f9556-5ee6-4c20-9b0a-107568818558" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -228,13 +228,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJkE=\"" + "\"AAAAAAAACo0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3fca6d1-4cf6-4dee-834e-ed5a6bb4925c" + "050541de-f9a3-4c66-91f5-8f2f2455ccf3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,19 +243,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "13024e16-be6f-4277-9e67-2f395e2d6634" + "0f7dea31-fbf8-4304-a466-f6308fd9a5de" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215701Z:13024e16-be6f-4277-9e67-2f395e2d6634" + "WESTUS:20200224T173910Z:0f7dea31-fbf8-4304-a466-f6308fd9a5de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:00 GMT" + "Mon, 24 Feb 2020 17:39:09 GMT" ], "Content-Length": [ - "485" + "484" ], "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/ps8914\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8914\",\r\n \"properties\": {\r\n \"displayName\": \"ps6428\",\r\n \"description\": \"ps2837\",\r\n \"terms\": \"ps3595\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps3431\",\r\n \"properties\": {\r\n \"displayName\": \"ps1219\",\r\n \"description\": \"ps6006\",\r\n \"terms\": \"ps913\",\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/ps8914/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxNC9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bcbc47d-b9bf-41c6-ac86-fddc9b2b3368" + "7ddf2698-70c0-4e42-84f0-07f38371771b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -297,7 +297,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b4dd01b-24a6-4b5e-bba1-548179b94613" + "9092a05b-6530-4efc-9c77-78316cb76b76" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,16 +306,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "d0108775-6871-4108-bfef-e6860fd401ee" + "7f496504-fcc3-4d43-98cc-e6438c04d0e9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215659Z:d0108775-6871-4108-bfef-e6860fd401ee" + "WESTUS:20200224T173909Z:7f496504-fcc3-4d43-98cc-e6438c04d0e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:59 GMT" + "Mon, 24 Feb 2020 17:39:08 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/ps8914/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxNC9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "217acd28-31c8-4df1-9a8a-138848577623" + "2c47dc16-7603-4937-a82d-286dc028c50c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -360,7 +360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3c75dcb-0928-4490-b30f-4d3fa2ed65ad" + "fde3177d-f1c3-47a9-aa85-10901ad0faad" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,19 +369,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "b447d065-ee0c-4ffe-b48a-dc8f6961ce4b" + "ec5e4674-1dab-4e71-b4e5-759fc643ea71" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215700Z:b447d065-ee0c-4ffe-b48a-dc8f6961ce4b" + "WESTUS:20200224T173909Z:ec5e4674-1dab-4e71-b4e5-759fc643ea71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:00 GMT" + "Mon, 24 Feb 2020 17:39:09 GMT" ], "Content-Length": [ - "715" + "754" ], "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/ps8914/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 \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431/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/ps8914/apis?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxNC9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "272ee521-603b-4a1a-b9f9-051b3f5a303d" + "59973aa9-876d-4f43-887c-ab6273979a34" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -423,7 +423,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "735c11a2-391e-4e46-9403-5ffdc7049464" + "e0c69916-a3a2-44ca-9ff2-b2f1ba318189" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -432,16 +432,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "93f1d858-998e-498a-b03f-8622fdc77afe" + "eb870b6d-bd08-499b-9853-36b4a8aa5d49" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215702Z:93f1d858-998e-498a-b03f-8622fdc77afe" + "WESTUS:20200224T173911Z:eb870b6d-bd08-499b-9853-36b4a8aa5d49" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:02 GMT" + "Mon, 24 Feb 2020 17:39:10 GMT" ], "Content-Length": [ "34" @@ -463,16 +463,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "938c0219-2144-45e0-beff-efbd529a2023" + "efdb4d32-bf6b-42c0-88db-513b295d217f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -486,7 +486,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a24b5e7-3f27-434e-9ec3-b4186b9b11a7" + "58bbe181-f11f-4fb7-a2be-5d059acd717f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -495,19 +495,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "68c2d349-5171-4968-aa2a-17b905630991" + "33a8d8b8-2916-4177-a624-b1419564967d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215700Z:68c2d349-5171-4968-aa2a-17b905630991" + "WESTUS:20200224T173909Z:33a8d8b8-2916-4177-a624-b1419564967d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:56:59 GMT" + "Mon, 24 Feb 2020 17:39:08 GMT" ], "Content-Length": [ - "690" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,7 +516,7 @@ "-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 \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/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 }, { @@ -526,16 +526,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09a413c7-aaa5-4867-9416-89c6354e62ff" + "d997a935-0069-425b-83c7-bced8f66a5ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -549,7 +549,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ae70f36-a518-4536-9113-4aab8fc22168" + "feb04090-5e40-4e05-ac00-c9fca250aea6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -558,19 +558,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "f535b236-ee07-4693-806c-3a14dd76fb72" + "e0454d23-5306-41f8-bda0-a657c97e5bd7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215701Z:f535b236-ee07-4693-806c-3a14dd76fb72" + "WESTUS:20200224T173911Z:e0454d23-5306-41f8-bda0-a657c97e5bd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:01 GMT" + "Mon, 24 Feb 2020 17:39:10 GMT" ], "Content-Length": [ - "690" + "729" ], "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 \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/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/ps8914/apis/echo-api?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxNC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fe92896-dc6d-4c4d-9e69-f6096ee47c53" + "7f405c27-1b8e-4d79-8614-555827f2006f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -609,13 +609,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJdc=\"" + "\"AAAAAAAACiM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bb79687-10ea-4bff-868f-74a74624a82d" + "df1339f3-b570-49d1-b044-45f9f7d3a42e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,19 +624,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "6fc9641e-5bc5-498c-b9f6-9dc9fcde4308" + "17147595-f9c4-4adf-9775-7e2538a6d52b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215700Z:6fc9641e-5bc5-498c-b9f6-9dc9fcde4308" + "WESTUS:20200224T173909Z:17147595-f9c4-4adf-9775-7e2538a6d52b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:00 GMT" + "Mon, 24 Feb 2020 17:39:09 GMT" ], "Content-Length": [ - "584" + "619" ], "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/ps8914/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 \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431/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/ps8914?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2837\",\r\n \"terms\": \"ps3595\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps6428\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6006\",\r\n \"terms\": \"ps913\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps1219\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a57d5509-c40e-4d66-93d4-9d9f414265fa" + "6ab6af6d-74cb-4a55-8263-e3c6caec3827" ], "If-Match": [ "*" @@ -664,16 +664,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "236" + "235" ] }, "ResponseHeaders": { @@ -687,7 +687,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bfdb244-93ff-4db2-b116-8ea3acac747d" + "1eeb0411-1ba0-4b1d-929d-fb6432af44df" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -696,16 +696,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "1f355e4a-ab1a-4e1d-986f-d643640501a9" + "c88ccd69-f249-4e68-8d4e-e0d4a7175d86" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215701Z:1f355e4a-ab1a-4e1d-986f-d643640501a9" + "WESTUS:20200224T173910Z:c88ccd69-f249-4e68-8d4e-e0d4a7175d86" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:00 GMT" + "Mon, 24 Feb 2020 17:39:09 GMT" ], "Expires": [ "-1" @@ -715,22 +715,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'ps6428'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ3BzNjQyOCcmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'ps1219'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ3BzMTIxOScmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "172ffde8-e477-4d19-a539-533c6b44d877" + "e55b0cfe-8968-4914-9ecd-c0e8b8f14627" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -744,7 +744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fdeb4ff7-eb4d-4204-aae2-c4078bc34f6e" + "a326c598-d49c-493c-a795-d7ed67391ca1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -753,19 +753,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "ee31d5f3-65d2-4a70-9854-62bb91a94c57" + "f8b9093f-4a64-463f-83f0-306a45cd21cc" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215701Z:ee31d5f3-65d2-4a70-9854-62bb91a94c57" + "WESTUS:20200224T173910Z:f8b9093f-4a64-463f-83f0-306a45cd21cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:01 GMT" + "Mon, 24 Feb 2020 17:39:10 GMT" ], "Content-Length": [ - "581" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -774,7 +774,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8914\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8914\",\r\n \"properties\": {\r\n \"displayName\": \"ps6428\",\r\n \"description\": \"ps2837\",\r\n \"terms\": \"ps3595\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps3431\",\r\n \"properties\": {\r\n \"displayName\": \"ps1219\",\r\n \"description\": \"ps6006\",\r\n \"terms\": \"ps913\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { @@ -784,16 +784,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c79429d3-2765-410f-9fda-d8367324a5bd" + "898a4029-bf47-49f1-a6a1-e313106d6619" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -807,7 +807,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b6fe0c7-a633-4125-8988-e8a4c6a80379" + "184b27f4-1de9-49a1-bf46-ff8ce0641dd9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -816,19 +816,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "dc8bdcca-0560-4211-a814-9cc8b14eeeef" + "2278a4e8-9e97-4dee-b726-97e6389e0d24" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215701Z:dc8bdcca-0560-4211-a814-9cc8b14eeeef" + "WESTUS:20200224T173911Z:2278a4e8-9e97-4dee-b726-97e6389e0d24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:01 GMT" + "Mon, 24 Feb 2020 17:39:10 GMT" ], "Content-Length": [ - "1888" + "1885" ], "Content-Type": [ "application/json; charset=utf-8" @@ -837,26 +837,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/ps8914\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps8914\",\r\n \"properties\": {\r\n \"displayName\": \"ps6428\",\r\n \"description\": \"ps2837\",\r\n \"terms\": \"ps3595\",\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/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/ps3431\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps3431\",\r\n \"properties\": {\r\n \"displayName\": \"ps1219\",\r\n \"description\": \"ps6006\",\r\n \"terms\": \"ps913\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8914/apis/echo-api?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxNC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a041279-5213-4d69-8c26-0d4d88c8ae6a" + "93137211-bcea-472b-8e9a-3c2ddc483158" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -870,7 +870,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22b41a1d-fca1-4ed6-8e91-a685939621e7" + "64cf8728-a76e-45b2-ba64-6a23169a6e06" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -879,16 +879,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "43daafb9-71ad-48d4-af67-7282c8155147" + "601e12db-94af-4584-8378-ca4c8610e789" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215702Z:43daafb9-71ad-48d4-af67-7282c8155147" + "WESTUS:20200224T173911Z:601e12db-94af-4584-8378-ca4c8610e789" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:01 GMT" + "Mon, 24 Feb 2020 17:39:10 GMT" ], "Expires": [ "-1" @@ -901,13 +901,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8914?deleteSubscriptions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODkxND9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps3431?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzMzQzMT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "211953c3-82b6-4764-bec6-2b3a1bedac64" + "5a5117fa-bfcc-4f99-9ef3-4792b2474504" ], "If-Match": [ "*" @@ -916,10 +916,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -933,7 +933,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77a2e7c2-aaa7-4982-ab4f-c661ab479159" + "f6176177-5168-4cbf-a722-b6b951a2f6bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -942,16 +942,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "60299380-777b-4b01-963b-1800970fcbe9" + "f75c7197-9a3d-4e52-87b4-8bfb902793be" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215703Z:60299380-777b-4b01-963b-1800970fcbe9" + "WESTUS:20200224T173912Z:f75c7197-9a3d-4e52-87b4-8bfb902793be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:03 GMT" + "Mon, 24 Feb 2020 17:39:11 GMT" ], "Expires": [ "-1" @@ -966,13 +966,13 @@ ], "Names": { "": [ - "ps8914", - "ps838", - "ps2353", - "ps8327", - "ps6428", - "ps2837", - "ps3595" + "ps3431", + "ps7549", + "ps975", + "ps6461", + "ps1219", + "ps6006", + "ps913" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json index d8e9fa0602d6..dfc6766ac092 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/properties/ps6997?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2OTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM0NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": false,\r\n \"displayName\": \"ps6736\",\r\n \"value\": \"ps1780\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": false,\r\n \"displayName\": \"ps3713\",\r\n \"value\": \"ps4455\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "058ab12e-7681-4f1b-a047-5cc1168485f6" + "763d62fc-86db-4c3d-a080-b4dea06c9b90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,31 +33,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1A=\"" + "\"AAAAAAAAC+8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8aba4e4-5a3a-4dd7-91b5-13e45812aa3a" + "08ce5fe3-d467-4eb2-8100-8eb0979e30ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "ee411e10-a1bd-418d-aa47-f008afffa81c" + "21a6533f-4f3d-482c-97cf-025fedf9c57d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220228Z:ee411e10-a1bd-418d-aa47-f008afffa81c" + "WESTUS:20200224T174602Z:21a6533f-4f3d-482c-97cf-025fedf9c57d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:27 GMT" + "Mon, 24 Feb 2020 17:46:01 GMT" ], "Content-Length": [ "413" @@ -69,17 +69,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6997\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6997\",\r\n \"properties\": {\r\n \"displayName\": \"ps6736\",\r\n \"value\": \"ps1780\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps4641\",\r\n \"properties\": {\r\n \"displayName\": \"ps3713\",\r\n \"value\": \"ps4455\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\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/properties/ps6997?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2OTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM0NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps6736\",\r\n \"value\": \"ps1780\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps3713\",\r\n \"value\": \"ps4455\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8f874075-dffb-453d-b680-9a323c0b5e78" + "e237b57a-b5e9-4bb7-93ef-318fb195f5e6" ], "If-Match": [ "*" @@ -88,10 +88,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -108,31 +108,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1M=\"" + "\"AAAAAAAAC/I=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6301819-5f5c-413a-b3b6-713c1b50629d" + "cfbcf80d-df55-4e85-86b7-8d8e7322b431" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "b6f0e047-ef82-4f93-b173-de8045e21219" + "a7ac240b-320c-4ba8-94fc-8e34cf6983fb" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220230Z:b6f0e047-ef82-4f93-b173-de8045e21219" + "WESTUS:20200224T174603Z:a7ac240b-320c-4ba8-94fc-8e34cf6983fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:30 GMT" + "Mon, 24 Feb 2020 17:46:03 GMT" ], "Content-Length": [ "412" @@ -144,26 +144,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6997\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6997\",\r\n \"properties\": {\r\n \"displayName\": \"ps6736\",\r\n \"value\": \"ps1780\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps4641\",\r\n \"properties\": {\r\n \"displayName\": \"ps3713\",\r\n \"value\": \"ps4455\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\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/properties/ps6605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps8675\",\r\n \"value\": \"ps9508\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps2365\",\r\n \"value\": \"ps1177\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d17e84a9-764f-4950-b696-ec9ec209ff5f" + "f9379803-9edc-4ee7-a0f5-101726726463" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,31 +180,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1E=\"" + "\"AAAAAAAAC/A=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b4a21dd-7378-49fd-892a-1e4940d8ce32" + "5588a0d2-2d3b-406c-bb64-15171b848361" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "8600b46d-4619-4347-83a0-f00ded7cb1ee" + "95e2818f-8f51-423c-b8b3-5594a407a064" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220228Z:8600b46d-4619-4347-83a0-f00ded7cb1ee" + "WESTUS:20200224T174602Z:95e2818f-8f51-423c-b8b3-5594a407a064" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:28 GMT" + "Mon, 24 Feb 2020 17:46:01 GMT" ], "Content-Length": [ "374" @@ -216,17 +216,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6605\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6605\",\r\n \"properties\": {\r\n \"displayName\": \"ps8675\",\r\n \"value\": \"ps9508\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps7830\",\r\n \"properties\": {\r\n \"displayName\": \"ps2365\",\r\n \"value\": \"ps1177\",\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/properties/ps6605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps8675\",\r\n \"value\": \"ps9508\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps2365\",\r\n \"value\": \"ps1177\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d9ec934-7bbf-43af-be22-3b88495a6b63" + "3de22c0c-b67f-4244-86c4-6d1b493d6280" ], "If-Match": [ "*" @@ -235,10 +235,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,31 +255,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1I=\"" + "\"AAAAAAAAC/E=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff7df631-f0b8-4007-a6a6-8a557f9a746b" + "e733dc99-e6df-42bf-b332-3c92f1e9de63" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "46da55ad-502e-49da-94c0-107486ec5b07" + "d35dd297-ea43-4e4e-81fa-f00336b5f443" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220230Z:46da55ad-502e-49da-94c0-107486ec5b07" + "WESTUS:20200224T174603Z:d35dd297-ea43-4e4e-81fa-f00336b5f443" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:29 GMT" + "Mon, 24 Feb 2020 17:46:02 GMT" ], "Content-Length": [ "412" @@ -291,7 +291,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6605\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6605\",\r\n \"properties\": {\r\n \"displayName\": \"ps8675\",\r\n \"value\": \"ps9508\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps7830\",\r\n \"properties\": {\r\n \"displayName\": \"ps2365\",\r\n \"value\": \"ps1177\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 200 }, { @@ -301,16 +301,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "671cbac6-9821-4164-8671-8c2c3d5e2651" + "f64119bd-0039-4afe-8691-3024df770e15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -324,25 +324,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7074a195-e082-42ae-aad9-c1388aaff854" + "041fe1cb-f212-467f-aeb9-65097eeb1d02" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "fab53467-676c-4c39-82f7-c72e68c85b57" + "04e54cb3-c64b-4689-90e5-fd466bcb3891" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220229Z:fab53467-676c-4c39-82f7-c72e68c85b57" + "WESTUS:20200224T174602Z:04e54cb3-c64b-4689-90e5-fd466bcb3891" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:28 GMT" + "Mon, 24 Feb 2020 17:46:01 GMT" ], "Content-Length": [ "930" @@ -354,7 +354,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6997\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6997\",\r\n \"properties\": {\r\n \"displayName\": \"ps6736\",\r\n \"value\": \"ps1780\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\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/properties/ps6605\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6605\",\r\n \"properties\": {\r\n \"displayName\": \"ps8675\",\r\n \"value\": \"ps9508\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps7830\",\r\n \"properties\": {\r\n \"displayName\": \"ps2365\",\r\n \"value\": \"ps1177\",\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/properties/ps4641\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps4641\",\r\n \"properties\": {\r\n \"displayName\": \"ps3713\",\r\n \"value\": \"ps4455\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { @@ -364,16 +364,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfc79a15-2921-4072-ac8b-7ddd771fcdd7" + "776327d4-12d8-4e08-aca8-f2e0a26e1c5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -387,25 +387,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63f02118-cdce-47d5-9a27-cf51f5110239" + "4a1b2b37-fe3c-497e-ad6c-3c55fe69b855" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-correlation-request-id": [ - "5fcb80e6-708e-416a-8527-bd3026fdce3e" + "e9177af5-4f08-491d-afe6-edf1133353e1" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220229Z:5fcb80e6-708e-416a-8527-bd3026fdce3e" + "WESTUS:20200224T174602Z:e9177af5-4f08-491d-afe6-edf1133353e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:28 GMT" + "Mon, 24 Feb 2020 17:46:02 GMT" ], "Content-Length": [ "930" @@ -417,7 +417,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6997\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6997\",\r\n \"properties\": {\r\n \"displayName\": \"ps6736\",\r\n \"value\": \"ps1780\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\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/properties/ps6605\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6605\",\r\n \"properties\": {\r\n \"displayName\": \"ps8675\",\r\n \"value\": \"ps9508\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps7830\",\r\n \"properties\": {\r\n \"displayName\": \"ps2365\",\r\n \"value\": \"ps1177\",\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/properties/ps4641\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps4641\",\r\n \"properties\": {\r\n \"displayName\": \"ps3713\",\r\n \"value\": \"ps4455\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { @@ -427,16 +427,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0823aec-b742-4a9b-8101-9ff80b95fb4a" + "f540f957-f471-4ef1-98ad-251818fdb0da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -450,25 +450,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74da3135-ecf0-4784-86ac-b4faaafa19f6" + "610b7d11-eb19-4097-a9b4-e75ef42485ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11990" ], "x-ms-correlation-request-id": [ - "a1d1d43c-6005-4941-bd0e-d2ea65ab37b1" + "ada43a4a-40b7-4a4d-a793-21d44637ce4a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220229Z:a1d1d43c-6005-4941-bd0e-d2ea65ab37b1" + "WESTUS:20200224T174602Z:ada43a4a-40b7-4a4d-a793-21d44637ce4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:28 GMT" + "Mon, 24 Feb 2020 17:46:02 GMT" ], "Content-Length": [ "509" @@ -480,26 +480,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6997\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6997\",\r\n \"properties\": {\r\n \"displayName\": \"ps6736\",\r\n \"value\": \"ps1780\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps4641\",\r\n \"properties\": {\r\n \"displayName\": \"ps3713\",\r\n \"value\": \"ps4455\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\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/properties/ps6605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30cd41ae-0108-423e-8c9b-bb6d5ede2a18" + "a2aaee4a-35dd-4289-a57c-7872513d6a19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -510,31 +510,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1E=\"" + "\"AAAAAAAAC/A=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18d3e050-02bb-4c3c-8652-35c799aeef50" + "8aa37a97-df0f-4a99-8b03-bffb11a25046" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11989" ], "x-ms-correlation-request-id": [ - "e785de59-43b1-4daa-b6ba-1f380ef781cf" + "88eaa084-2b87-4b00-af44-f7b66eb91a26" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220229Z:e785de59-43b1-4daa-b6ba-1f380ef781cf" + "WESTUS:20200224T174602Z:88eaa084-2b87-4b00-af44-f7b66eb91a26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:29 GMT" + "Mon, 24 Feb 2020 17:46:02 GMT" ], "Content-Length": [ "374" @@ -546,26 +546,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6605\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6605\",\r\n \"properties\": {\r\n \"displayName\": \"ps8675\",\r\n \"value\": \"ps9508\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps7830\",\r\n \"properties\": {\r\n \"displayName\": \"ps2365\",\r\n \"value\": \"ps1177\",\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/properties/ps6605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "960a0465-3336-4fa2-8264-c1afa128ad25" + "cfc06013-be05-467b-b6b8-0bfc00b73082" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -576,31 +576,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1E=\"" + "\"AAAAAAAAC/A=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5d2d1ff-9305-441a-8ff4-fc56ec8ac4d7" + "f7610506-0457-4157-8e8a-69d7c0f977df" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11988" ], "x-ms-correlation-request-id": [ - "562cc032-01b4-4c06-b74b-4fd88e01cc7b" + "1b078644-f41e-4620-a416-056a9fe7421c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220229Z:562cc032-01b4-4c06-b74b-4fd88e01cc7b" + "WESTUS:20200224T174603Z:1b078644-f41e-4620-a416-056a9fe7421c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:29 GMT" + "Mon, 24 Feb 2020 17:46:02 GMT" ], "Content-Length": [ "374" @@ -612,26 +612,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6605\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6605\",\r\n \"properties\": {\r\n \"displayName\": \"ps8675\",\r\n \"value\": \"ps9508\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps7830\",\r\n \"properties\": {\r\n \"displayName\": \"ps2365\",\r\n \"value\": \"ps1177\",\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/properties/ps6605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b368693-ecfb-4804-9384-ce1aa3f97b2d" + "141b98c8-ccc2-4dd2-aad3-d6524d3e0753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -642,31 +642,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1I=\"" + "\"AAAAAAAAC/E=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bae29e11-4fac-4b25-8dde-9affcab1df7a" + "c0227773-a271-47c6-bc5b-c4f018add6c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11987" ], "x-ms-correlation-request-id": [ - "28f17dcc-afb3-4899-b97f-8bca93610dc8" + "c43ad3c2-caaa-4e5b-ab4f-d218579762dc" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220230Z:28f17dcc-afb3-4899-b97f-8bca93610dc8" + "WESTUS:20200224T174603Z:c43ad3c2-caaa-4e5b-ab4f-d218579762dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:29 GMT" + "Mon, 24 Feb 2020 17:46:02 GMT" ], "Content-Length": [ "412" @@ -678,26 +678,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6605\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6605\",\r\n \"properties\": {\r\n \"displayName\": \"ps8675\",\r\n \"value\": \"ps9508\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps7830\",\r\n \"properties\": {\r\n \"displayName\": \"ps2365\",\r\n \"value\": \"ps1177\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\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/properties/ps6605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38c2550d-7f58-4ac0-879f-a67930ba40e6" + "f1ef64dc-3c13-45b5-8395-7e552c194270" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -711,25 +711,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c98a38b-8284-4305-91c8-80f77f8e3ad1" + "baf3ddb7-6f04-4d84-8bd1-01c26b0449df" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11984" ], "x-ms-correlation-request-id": [ - "9f1d2bc8-c23c-4934-a936-ed13de9d504b" + "c3d90fe3-4d15-4417-ba43-3dc8ca7cf443" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220231Z:9f1d2bc8-c23c-4934-a936-ed13de9d504b" + "WESTUS:20200224T174604Z:c3d90fe3-4d15-4417-ba43-3dc8ca7cf443" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:31 GMT" + "Mon, 24 Feb 2020 17:46:03 GMT" ], "Content-Length": [ "84" @@ -745,22 +745,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6997?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2OTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM0NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c80ba9bc-eb41-432b-a14e-66eec6d2aa45" + "b573a37e-1745-441b-b11e-1282293dc8a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -771,31 +771,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1A=\"" + "\"AAAAAAAAC+8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ce7efba-db6e-47a8-86b7-889745647f77" + "a54f1952-0a53-42e9-8c87-892434e2cac4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11986" ], "x-ms-correlation-request-id": [ - "197be54a-3462-4533-9deb-4b637e11fb56" + "f50dc57b-5a4b-4e13-9618-e2e65b463981" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220230Z:197be54a-3462-4533-9deb-4b637e11fb56" + "WESTUS:20200224T174603Z:f50dc57b-5a4b-4e13-9618-e2e65b463981" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:30 GMT" + "Mon, 24 Feb 2020 17:46:03 GMT" ], "Content-Length": [ "413" @@ -807,26 +807,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6997\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6997\",\r\n \"properties\": {\r\n \"displayName\": \"ps6736\",\r\n \"value\": \"ps1780\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps4641\",\r\n \"properties\": {\r\n \"displayName\": \"ps3713\",\r\n \"value\": \"ps4455\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\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/properties/ps6997?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2OTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM0NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1743c5a-1de2-4e01-8faa-ae2bc9f17d2d" + "45ccd30a-069a-4762-9256-416b3d654733" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -837,31 +837,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJ1M=\"" + "\"AAAAAAAAC/I=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5640454-1ecb-44d4-915f-b6d61d360f1d" + "98f1649d-8bee-44be-bf13-c5d9631b4b48" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11985" ], "x-ms-correlation-request-id": [ - "df2fae43-2d3f-4897-8e11-c161a3664ecc" + "81c9ca95-0d19-4f4b-864a-58d4c2f73d0e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220230Z:df2fae43-2d3f-4897-8e11-c161a3664ecc" + "WESTUS:20200224T174604Z:81c9ca95-0d19-4f4b-864a-58d4c2f73d0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:30 GMT" + "Mon, 24 Feb 2020 17:46:03 GMT" ], "Content-Length": [ "412" @@ -873,26 +873,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6997\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps6997\",\r\n \"properties\": {\r\n \"displayName\": \"ps6736\",\r\n \"value\": \"ps1780\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"ps4641\",\r\n \"properties\": {\r\n \"displayName\": \"ps3713\",\r\n \"value\": \"ps4455\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\"\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/properties/ps6997?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2OTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM0NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c64fe68-3c86-49fd-9aa9-9dbdf4367f0b" + "d0a05f7a-0842-447c-986c-ac82fbf497c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -906,25 +906,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac8d69fe-5c37-44d3-804c-1cb9aa2d5c64" + "0c8a3e4b-be01-4129-a969-edabfca8f951" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11983" ], "x-ms-correlation-request-id": [ - "7e653efc-d5f2-4c42-85ac-91d20360aca0" + "302a2b7c-c597-4972-af6f-0a20c14aaac9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220232Z:7e653efc-d5f2-4c42-85ac-91d20360aca0" + "WESTUS:20200224T174604Z:302a2b7c-c597-4972-af6f-0a20c14aaac9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:31 GMT" + "Mon, 24 Feb 2020 17:46:04 GMT" ], "Content-Length": [ "84" @@ -940,13 +940,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f01f452-074a-4a57-9c6c-1b406baf81ae" + "872d73d4-97d1-4335-a908-e64fdd7300df" ], "If-Match": [ "*" @@ -955,10 +955,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -972,7 +972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40d5e3e1-adaf-4a39-b823-26752617b709" + "ff284b0f-6904-4c29-bb82-19f868ae66da" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -981,16 +981,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "8c88a826-56ff-4a56-8448-b6532bbf4371" + "cc9621e0-02f1-4984-9e5e-a126f81a496f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220231Z:8c88a826-56ff-4a56-8448-b6532bbf4371" + "WESTUS:20200224T174604Z:cc9621e0-02f1-4984-9e5e-a126f81a496f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:31 GMT" + "Mon, 24 Feb 2020 17:46:03 GMT" ], "Expires": [ "-1" @@ -1003,13 +1003,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6605?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2NjA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps7830?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7144b83-69b4-45d4-9c5c-be93969a5dfe" + "c1e7596d-2c55-4e57-97fb-58ab477162bb" ], "If-Match": [ "*" @@ -1018,10 +1018,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1035,7 +1035,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2838651-f592-4767-a327-cdb0d58bc31e" + "6129e18b-6303-45d5-974d-2861a063189c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1044,16 +1044,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "bb6f5b08-abab-4db7-a56a-c7fecec80972" + "fc1aa3b6-f92d-4bb1-b756-ff8c57e86c67" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220232Z:bb6f5b08-abab-4db7-a56a-c7fecec80972" + "WESTUS:20200224T174604Z:fc1aa3b6-f92d-4bb1-b756-ff8c57e86c67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:31 GMT" + "Mon, 24 Feb 2020 17:46:04 GMT" ], "Expires": [ "-1" @@ -1063,13 +1063,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps6997?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM2OTk3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/properties/ps4641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb3BlcnRpZXMvcHM0NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b56033ac-ac68-4a07-be85-8d09190cfbde" + "f749d048-992a-4837-a7c1-094214c651e6" ], "If-Match": [ "*" @@ -1078,10 +1078,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1095,7 +1095,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f071169-6d11-480f-aa69-02547b95014f" + "148b5ad9-aecb-466a-a4b4-f4330ada5d8e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1104,16 +1104,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "0b9c29f7-5a92-4099-8338-dba3c343fa51" + "4581a5bd-8880-4752-9126-11b4c9f424dd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T220231Z:0b9c29f7-5a92-4099-8338-dba3c343fa51" + "WESTUS:20200224T174604Z:4581a5bd-8880-4752-9126-11b4c9f424dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:02:31 GMT" + "Mon, 24 Feb 2020 17:46:03 GMT" ], "Expires": [ "-1" @@ -1128,12 +1128,12 @@ ], "Names": { "": [ - "ps6997", - "ps6736", - "ps1780", - "ps6605", - "ps8675", - "ps9508" + "ps4641", + "ps3713", + "ps4455", + "ps7830", + "ps2365", + "ps1177" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json index c931656b7622..1c37e7c8f5b2 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66dd1c95-432e-4569-acc7-27f6b503746d" + "7ce034ba-3f6c-42fc-94d2-d42b68d1a348" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,28 +30,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9a6dcad-9ef7-4f4f-9000-700aa5fa144f" + "72a2c4ab-c340-4b82-addb-a6b8fb2ca743" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "f62e3c32-a8aa-4068-8377-57012c48301e" + "7aeedc86-376d-42fc-a9b8-0c8a16304845" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215953Z:f62e3c32-a8aa-4068-8377-57012c48301e" + "WESTUS:20200224T174208Z:7aeedc86-376d-42fc-a9b8-0c8a16304845" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:52 GMT" + "Mon, 24 Feb 2020 17:42:08 GMT" ], "Content-Length": [ - "3218" + "3219" ], "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/5d06c0eab37f30008f070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5d06c0eab37f30008f070001\",\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\": \"2019-06-16T22:21:30.777Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b4353a8c937c41c4a2aeeda8e75ebe13\",\r\n \"secondaryKey\": \"9f0430fafe3d4ed4a1e00c143b6f3927\",\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/5d06c0ebb37f30008f070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5d06c0ebb37f30008f070002\",\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\": \"2019-06-16T22:21:31.45Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"faa9f85a31da4722b60df81868cbf813\",\r\n \"secondaryKey\": \"c1e5f2f4cfe1490991ad385f3f04b333\",\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\": \"2019-06-16T22:42:43.393Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b3c16dcc4e1e406f9e8e0d34c4ec4572\",\r\n \"secondaryKey\": \"a38cfce68ddd486b90af63f5aefef580\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401e99d398d004e070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e5401e99d398d004e070001\",\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-02-24T17:03:37.243Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ace17bd7e97c43dea7c6f31098d159c3\",\r\n \"secondaryKey\": \"c557b7df431c4510ac4d42abf2091cde\",\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/5e5401ea9d398d004e070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e5401ea9d398d004e070002\",\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-02-24T17:03:38.093Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"12457119444a4b4fb07098f4a89b9f85\",\r\n \"secondaryKey\": \"dd418f0c088b4ba4b537d8d13922ec63\",\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-02-24T17:26:04.453Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"69c112cc89044e8080016d456b8c532a\",\r\n \"secondaryKey\": \"05d8039f7a244c8881d3793931b3df24\",\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/5d06c0eab37f30008f070001?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWQwNmMwZWFiMzdmMzAwMDhmMDcwMDAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401e99d398d004e070001?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWU1NDAxZTk5ZDM5OGQwMDRlMDcwMDAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e797b624-63e7-42db-afbc-2be820d78090" + "46e62da2-6de9-4625-853b-726d2235b162" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,31 +90,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACPc=\"" + "\"AAAAAAAACMc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "542eb5f4-07e9-4348-95c0-a75b6180c9cb" + "bb4756b7-31ad-4c32-8e2a-a1a1e536a2de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "bf9bc910-dfa5-4037-a947-1038f9c4add6" + "c51713bc-181c-416a-94fd-ca9680f28924" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215953Z:bf9bc910-dfa5-4037-a947-1038f9c4add6" + "WESTUS:20200224T174209Z:c51713bc-181c-416a-94fd-ca9680f28924" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:52 GMT" + "Mon, 24 Feb 2020 17:42:08 GMT" ], "Content-Length": [ "1043" @@ -126,26 +126,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5d06c0eab37f30008f070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5d06c0eab37f30008f070001\",\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\": \"2019-06-16T22:21:30.777Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b4353a8c937c41c4a2aeeda8e75ebe13\",\r\n \"secondaryKey\": \"9f0430fafe3d4ed4a1e00c143b6f3927\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401e99d398d004e070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e5401e99d398d004e070001\",\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-02-24T17:03:37.243Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ace17bd7e97c43dea7c6f31098d159c3\",\r\n \"secondaryKey\": \"c557b7df431c4510ac4d42abf2091cde\",\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/5d06c0ebb37f30008f070002?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWQwNmMwZWJiMzdmMzAwMDhmMDcwMDAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401ea9d398d004e070002?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWU1NDAxZWE5ZDM5OGQwMDRlMDcwMDAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4faea1ca-ed9d-4a19-9271-87e642032b98" + "8a49c774-b4b1-4645-824a-af1471586c65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -156,34 +156,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACPg=\"" + "\"AAAAAAAACMg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4942990d-3ec1-4352-9598-73137bd19683" + "ce26509c-c22d-4a0f-93ec-237153e6d27f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "103b653a-2d0e-4709-b689-77e951341096" + "2af70d0c-564a-44ae-b7f7-be00725d6493" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215953Z:103b653a-2d0e-4709-b689-77e951341096" + "WESTUS:20200224T174209Z:2af70d0c-564a-44ae-b7f7-be00725d6493" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:52 GMT" + "Mon, 24 Feb 2020 17:42:09 GMT" ], "Content-Length": [ - "1044" + "1045" ], "Content-Type": [ "application/json; charset=utf-8" @@ -192,7 +192,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5d06c0ebb37f30008f070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5d06c0ebb37f30008f070002\",\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\": \"2019-06-16T22:21:31.45Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"faa9f85a31da4722b60df81868cbf813\",\r\n \"secondaryKey\": \"c1e5f2f4cfe1490991ad385f3f04b333\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401ea9d398d004e070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e5401ea9d398d004e070002\",\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-02-24T17:03:38.093Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"12457119444a4b4fb07098f4a89b9f85\",\r\n \"secondaryKey\": \"dd418f0c088b4ba4b537d8d13922ec63\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { @@ -202,16 +202,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b1e8b04-0ea8-4d96-9d30-0956fdbd9d33" + "cbc4422e-052d-4cc0-abd6-c5ad62623179" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -222,31 +222,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACQE=\"" + "\"AAAAAAAACP8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71aab9ba-8322-4981-a341-c90bbba2ebe7" + "1a990c5f-a8e8-478b-8cdf-fd406046eb69" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "256400b8-408f-4f9a-b94c-71fc15fa0e0b" + "2ae7513e-68a1-47c2-bab2-0dbee02dc760" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215953Z:256400b8-408f-4f9a-b94c-71fc15fa0e0b" + "WESTUS:20200224T174209Z:2ae7513e-68a1-47c2-bab2-0dbee02dc760" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:52 GMT" + "Mon, 24 Feb 2020 17:42:09 GMT" ], "Content-Length": [ "849" @@ -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\": \"2019-06-16T22:42:43.393Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b3c16dcc4e1e406f9e8e0d34c4ec4572\",\r\n \"secondaryKey\": \"a38cfce68ddd486b90af63f5aefef580\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/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-02-24T17:26:04.453Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"69c112cc89044e8080016d456b8c532a\",\r\n \"secondaryKey\": \"05d8039f7a244c8881d3793931b3df24\",\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/ps127?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHMxMjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps5320?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM1MzIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps7216\",\r\n \"primaryKey\": \"ps1891\",\r\n \"secondaryKey\": \"ps9359\",\r\n \"state\": \"active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps6293\",\r\n \"primaryKey\": \"ps8705\",\r\n \"secondaryKey\": \"ps1275\",\r\n \"state\": \"active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6e2c38ca-4122-4b83-8999-2d1e0783b717" + "63ffc8be-149e-4cab-8f80-01ed537ea547" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJtc=\"" + "\"AAAAAAAACyw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "085121d7-2e2e-4758-8486-d83537df508a" + "bec9f9a0-4ece-4dae-a54d-e71ded83a2b9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,19 +309,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "73b40316-6dfa-4d9f-acb2-bcafcbc3f3e1" + "88348965-1105-40e2-98a0-312ca418263e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215954Z:73b40316-6dfa-4d9f-acb2-bcafcbc3f3e1" + "WESTUS:20200224T174211Z:88348965-1105-40e2-98a0-312ca418263e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:53 GMT" + "Mon, 24 Feb 2020 17:42:10 GMT" ], "Content-Length": [ - "750" + "752" ], "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/subscriptions/ps127\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps127\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps7216\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-09-30T21:59:53.8489411Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps1891\",\r\n \"secondaryKey\": \"ps9359\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps5320\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps5320\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps6293\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-24T17:42:10.0949596Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps8705\",\r\n \"secondaryKey\": \"ps1275\",\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/ps127?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHMxMjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps5320?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM1MzIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps8244\",\r\n \"primaryKey\": \"ps8851\",\r\n \"secondaryKey\": \"ps2408\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps358\",\r\n \"primaryKey\": \"ps2347\",\r\n \"secondaryKey\": \"ps5168\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "64ba10c9-0fc9-47bd-a761-d6c455c4e962" + "7de57819-ca37-4542-86f9-620d43eeff2d" ], "If-Match": [ "*" @@ -349,16 +349,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "192" + "191" ] }, "ResponseHeaders": { @@ -372,7 +372,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cab19c5c-6056-4fd1-a3cd-b606455467ae" + "db212582-fe78-41a3-99ee-49270eb59371" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -381,16 +381,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "2a7dc4ad-9ee2-4512-a13e-524b80649036" + "4b227bb8-ebe6-4a7e-8988-39d75ffe95af" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215954Z:2a7dc4ad-9ee2-4512-a13e-524b80649036" + "WESTUS:20200224T174211Z:4b227bb8-ebe6-4a7e-8988-39d75ffe95af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:53 GMT" + "Mon, 24 Feb 2020 17:42:11 GMT" ], "Expires": [ "-1" @@ -400,22 +400,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps127?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHMxMjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps5320?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM1MzIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aef95ffc-1491-4ece-9fab-bb74923cab56" + "0fb80244-720b-45b5-9893-7dd8f2ba0a9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -426,34 +426,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJto=\"" + "\"AAAAAAAACy8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1827250-0385-4329-a5ba-ea9aeaeeba5f" + "8e5735a1-42fe-4191-bf0e-93baa177218f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "12d82231-bddf-4519-a4c4-ee72f9af1f19" + "0e8ade04-4075-4502-a321-6fc313b75379" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215955Z:12d82231-bddf-4519-a4c4-ee72f9af1f19" + "WESTUS:20200224T174212Z:0e8ade04-4075-4502-a321-6fc313b75379" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:54 GMT" + "Mon, 24 Feb 2020 17:42:11 GMT" ], "Content-Length": [ - "935" + "937" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,7 +462,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps127\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps127\",\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\": \"ps8244\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-09-30T21:59:53.85Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps8851\",\r\n \"secondaryKey\": \"ps2408\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps5320\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps5320\",\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\": \"ps358\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-24T17:42:10.093Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps2347\",\r\n \"secondaryKey\": \"ps5168\",\r\n \"stateComment\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -472,16 +472,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f125bb2-efc9-4f61-b962-a937ebd88f61" + "72ff5c11-5f9d-426f-ad13-268dd2bdaa34" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -495,28 +495,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e94f4ae6-a370-4d1f-9f71-242c93b6a4df" + "cd1547be-404b-44e8-8c85-c4ad0a7b08b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "70295418-61c6-47fb-8f50-af6c67e69416" + "45635ba7-9754-4a1f-afb3-a2922a85b02b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215955Z:70295418-61c6-47fb-8f50-af6c67e69416" + "WESTUS:20200224T174212Z:45635ba7-9754-4a1f-afb3-a2922a85b02b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:54 GMT" + "Mon, 24 Feb 2020 17:42:11 GMT" ], "Content-Length": [ - "1051" + "1053" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps127\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps127\",\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\": \"ps8244\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-09-30T21:59:53.85Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps8851\",\r\n \"secondaryKey\": \"ps2408\",\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps5320\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps5320\",\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\": \"ps358\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-24T17:42:10.093Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps2347\",\r\n \"secondaryKey\": \"ps5168\",\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/ps127?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHMxMjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps5320?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM1MzIwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66694011-399f-459a-9d88-f5b45f76ad41" + "066415f6-2916-414e-bbf3-e864bc2ecaa8" ], "If-Match": [ "*" @@ -544,10 +544,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -561,7 +561,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e4b8315-b30c-47af-b481-22442df3138d" + "a4fcc004-ef79-48e2-b0fb-c0e988d600af" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -570,16 +570,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "38015a1b-ac70-4c07-8fb4-8f2168c3d794" + "bdcec910-d237-4b8d-ab3d-67945b0557cb" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215955Z:38015a1b-ac70-4c07-8fb4-8f2168c3d794" + "WESTUS:20200224T174212Z:bdcec910-d237-4b8d-ab3d-67945b0557cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:59:54 GMT" + "Mon, 24 Feb 2020 17:42:12 GMT" ], "Expires": [ "-1" @@ -594,13 +594,13 @@ ], "Names": { "": [ - "ps127", - "ps7216", - "ps1891", - "ps9359", - "ps8244", - "ps8851", - "ps2408" + "ps5320", + "ps6293", + "ps8705", + "ps1275", + "ps358", + "ps2347", + "ps5168" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json index 35348c4b450d..93af5399c5b1 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0a3308a-4466-4f1e-b939-258ed9ef5a71" + "e2e19ca1-de86-4fd3-8536-4bd14b56426f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,28 +30,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c423dcb8-1327-47e9-b182-802168416e6b" + "e6c73978-11b9-4003-a735-08b7e3daf012" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "567a2904-88cb-4bcd-b5e5-c580b3a716a4" + "d6b93f20-32aa-43cd-9b6e-afe9cfe040b7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215720Z:567a2904-88cb-4bcd-b5e5-c580b3a716a4" + "WESTUS:20200224T173927Z:d6b93f20-32aa-43cd-9b6e-afe9cfe040b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:19 GMT" + "Mon, 24 Feb 2020 17:39:26 GMT" ], "Content-Length": [ - "3218" + "3219" ], "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/5d06c0eab37f30008f070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5d06c0eab37f30008f070001\",\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\": \"2019-06-16T22:21:30.777Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b4353a8c937c41c4a2aeeda8e75ebe13\",\r\n \"secondaryKey\": \"9f0430fafe3d4ed4a1e00c143b6f3927\",\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/5d06c0ebb37f30008f070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5d06c0ebb37f30008f070002\",\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\": \"2019-06-16T22:21:31.45Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"faa9f85a31da4722b60df81868cbf813\",\r\n \"secondaryKey\": \"c1e5f2f4cfe1490991ad385f3f04b333\",\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\": \"2019-06-16T22:42:43.393Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b3c16dcc4e1e406f9e8e0d34c4ec4572\",\r\n \"secondaryKey\": \"a38cfce68ddd486b90af63f5aefef580\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401e99d398d004e070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e5401e99d398d004e070001\",\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-02-24T17:03:37.243Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ace17bd7e97c43dea7c6f31098d159c3\",\r\n \"secondaryKey\": \"c557b7df431c4510ac4d42abf2091cde\",\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/5e5401ea9d398d004e070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e5401ea9d398d004e070002\",\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-02-24T17:03:38.093Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"12457119444a4b4fb07098f4a89b9f85\",\r\n \"secondaryKey\": \"dd418f0c088b4ba4b537d8d13922ec63\",\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-02-24T17:26:04.453Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"69c112cc89044e8080016d456b8c532a\",\r\n \"secondaryKey\": \"05d8039f7a244c8881d3793931b3df24\",\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/5d06c0eab37f30008f070001?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWQwNmMwZWFiMzdmMzAwMDhmMDcwMDAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401e99d398d004e070001?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWU1NDAxZTk5ZDM5OGQwMDRlMDcwMDAxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b6ac3f9-dfef-4c00-98cc-174c2f8c3005" + "0372a859-6855-4da1-8264-85bf7458a6a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,31 +90,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACPc=\"" + "\"AAAAAAAACMc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3d8fa60-c16a-42a7-b2c9-89f408301e19" + "6a54e753-53b4-417a-a4a9-b4a28a98ac0e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "32cb6c82-f38d-46fa-af5f-b82da50407bd" + "7b3897a9-53f3-4cc0-a1e1-fe0a21362c71" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215720Z:32cb6c82-f38d-46fa-af5f-b82da50407bd" + "WESTUS:20200224T173927Z:7b3897a9-53f3-4cc0-a1e1-fe0a21362c71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:20 GMT" + "Mon, 24 Feb 2020 17:39:26 GMT" ], "Content-Length": [ "1043" @@ -126,26 +126,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5d06c0eab37f30008f070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5d06c0eab37f30008f070001\",\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\": \"2019-06-16T22:21:30.777Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b4353a8c937c41c4a2aeeda8e75ebe13\",\r\n \"secondaryKey\": \"9f0430fafe3d4ed4a1e00c143b6f3927\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401e99d398d004e070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e5401e99d398d004e070001\",\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-02-24T17:03:37.243Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ace17bd7e97c43dea7c6f31098d159c3\",\r\n \"secondaryKey\": \"c557b7df431c4510ac4d42abf2091cde\",\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/5d06c0ebb37f30008f070002?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWQwNmMwZWJiMzdmMzAwMDhmMDcwMDAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401ea9d398d004e070002?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWU1NDAxZWE5ZDM5OGQwMDRlMDcwMDAyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7fff6a2-7a18-464a-8e22-f33e5b31b515" + "07c6e879-ac5a-4b08-b29b-6037ca584e6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -156,34 +156,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACPg=\"" + "\"AAAAAAAACMg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a53485d1-c479-4910-a8cb-b26c0d7536d4" + "48e3989d-d869-4476-bddf-5c0c8823b973" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "b3b6a38e-dcec-4d6a-9bcb-d495490ed46d" + "0f5411d1-11f6-440b-8879-0714045a88d9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215721Z:b3b6a38e-dcec-4d6a-9bcb-d495490ed46d" + "WESTUS:20200224T173927Z:0f5411d1-11f6-440b-8879-0714045a88d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:20 GMT" + "Mon, 24 Feb 2020 17:39:26 GMT" ], "Content-Length": [ - "1044" + "1045" ], "Content-Type": [ "application/json; charset=utf-8" @@ -192,7 +192,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5d06c0ebb37f30008f070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5d06c0ebb37f30008f070002\",\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\": \"2019-06-16T22:21:31.45Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"faa9f85a31da4722b60df81868cbf813\",\r\n \"secondaryKey\": \"c1e5f2f4cfe1490991ad385f3f04b333\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401ea9d398d004e070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e5401ea9d398d004e070002\",\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-02-24T17:03:38.093Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"12457119444a4b4fb07098f4a89b9f85\",\r\n \"secondaryKey\": \"dd418f0c088b4ba4b537d8d13922ec63\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { @@ -202,16 +202,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a85f73a3-98d6-4482-bd82-e226a293317e" + "70860abb-3bc7-4ec7-8a3d-bee3fea820aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -222,31 +222,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACQE=\"" + "\"AAAAAAAACP8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eafd3876-4a87-4c4d-bf24-07701d07dd3c" + "d9962664-ff07-4c4e-9863-6fb11e9049f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "6ef976f2-775c-402e-8860-bf8e99b11d04" + "fe1cb70b-1eee-4dbc-b28b-b3cadfa3d0aa" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215721Z:6ef976f2-775c-402e-8860-bf8e99b11d04" + "WESTUS:20200224T173927Z:fe1cb70b-1eee-4dbc-b28b-b3cadfa3d0aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:20 GMT" + "Mon, 24 Feb 2020 17:39:26 GMT" ], "Content-Length": [ "849" @@ -258,7 +258,7 @@ "-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\": \"2019-06-16T22:42:43.393Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b3c16dcc4e1e406f9e8e0d34c4ec4572\",\r\n \"secondaryKey\": \"a38cfce68ddd486b90af63f5aefef580\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/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-02-24T17:26:04.453Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"69c112cc89044e8080016d456b8c532a\",\r\n \"secondaryKey\": \"05d8039f7a244c8881d3793931b3df24\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { @@ -268,7 +268,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptionsLimit\": 100\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "813ea0ae-c812-44fd-a1aa-96464c481a07" + "576f88be-1912-4355-8b56-4c6488489923" ], "If-Match": [ "*" @@ -277,10 +277,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -300,25 +300,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af8115d6-c039-40b0-affa-30361e582c53" + "d564daa4-f345-4750-b602-b0c7a0d03bea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "d07b6b5d-96f6-4045-804a-50f7bf028453" + "ecad1387-05fe-4cd0-8e55-b3f9e2378f48" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215722Z:d07b6b5d-96f6-4045-804a-50f7bf028453" + "WESTUS:20200224T173928Z:ecad1387-05fe-4cd0-8e55-b3f9e2378f48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:21 GMT" + "Mon, 24 Feb 2020 17:39:27 GMT" ], "Expires": [ "-1" @@ -328,22 +328,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8640?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjQwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps2275?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHMyMjc1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"scope\": \"/products/starter\",\r\n \"displayName\": \"ps2859\",\r\n \"primaryKey\": \"ps4415\",\r\n \"secondaryKey\": \"ps8133\",\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\": \"ps9431\",\r\n \"primaryKey\": \"ps9925\",\r\n \"secondaryKey\": \"ps4199\",\r\n \"state\": \"active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "013db7eb-c3f3-4007-9252-7f0624f6b183" + "fd85b0ff-cbad-440c-86a6-41ecdd4d0a43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,31 +360,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJmc=\"" + "\"AAAAAAAACrc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5086163b-24db-4108-a440-a09aea058c5b" + "3f6b014d-ce07-4384-a81b-2d1241e98636" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "5393acc6-0a59-4cf6-a58d-41c45f80c35c" + "617e5330-5be6-481c-8850-63d9f4985219" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215723Z:5393acc6-0a59-4cf6-a58d-41c45f80c35c" + "WESTUS:20200224T173929Z:617e5330-5be6-481c-8850-63d9f4985219" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:22 GMT" + "Mon, 24 Feb 2020 17:39:28 GMT" ], "Content-Length": [ "1366" @@ -396,17 +396,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8640\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8640\",\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\": \"2019-06-16T22:21:30.153Z\",\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\": \"ps2859\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-09-30T21:57:22.481869Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps4415\",\r\n \"secondaryKey\": \"ps8133\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps2275\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps2275\",\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-02-24T17:03:35.77Z\",\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\": \"ps9431\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-24T17:39:29.0120066Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps9925\",\r\n \"secondaryKey\": \"ps4199\",\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/ps8640?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjQwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps2275?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHMyMjc1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps3913\",\r\n \"primaryKey\": \"ps1964\",\r\n \"secondaryKey\": \"ps8412\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps1936\",\r\n \"primaryKey\": \"ps229\",\r\n \"secondaryKey\": \"ps4480\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "17d502b4-5a5d-4cf4-a023-c1e9a286de45" + "20a9d430-a8ce-494d-89e2-1d0aad4f7f4e" ], "If-Match": [ "*" @@ -415,16 +415,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "164" + "163" ] }, "ResponseHeaders": { @@ -438,25 +438,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cf4a185-aae6-4750-95d7-67d8da30b5ae" + "cc20b705-2811-4eca-a32f-09c4f6310a8d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "1c65b33c-f60e-4256-9632-6e6508f87c56" + "c3771b7c-2b51-436e-9583-89c4d8c05ae8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215723Z:1c65b33c-f60e-4256-9632-6e6508f87c56" + "WESTUS:20200224T173930Z:c3771b7c-2b51-436e-9583-89c4d8c05ae8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:23 GMT" + "Mon, 24 Feb 2020 17:39:29 GMT" ], "Expires": [ "-1" @@ -466,22 +466,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8640?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjQwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps2275?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHMyMjc1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c134294a-f002-422a-b749-b8ac6d6c4956" + "44d01bce-4191-46f9-8b26-7c910c78956a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -492,34 +492,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJmo=\"" + "\"AAAAAAAACro=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72556201-63f3-456f-b680-2a599119de87" + "84d75096-c074-480a-b84a-418e3aed7768" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "14fbe34f-6833-41bd-a73c-4be068be6008" + "62069e0f-3bbc-4254-9e4c-725d4541a6b1" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215724Z:14fbe34f-6833-41bd-a73c-4be068be6008" + "WESTUS:20200224T173930Z:62069e0f-3bbc-4254-9e4c-725d4541a6b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:23 GMT" + "Mon, 24 Feb 2020 17:39:29 GMT" ], "Content-Length": [ - "995" + "994" ], "Content-Type": [ "application/json; charset=utf-8" @@ -528,7 +528,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8640\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8640\",\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\": \"ps3913\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-09-30T21:57:22.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps1964\",\r\n \"secondaryKey\": \"ps8412\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps2275\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps2275\",\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\": \"ps1936\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-24T17:39:29.013Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps229\",\r\n \"secondaryKey\": \"ps4480\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { @@ -538,16 +538,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dbd2097-23d1-4d8d-a048-d60858d010e1" + "409a2da9-d7dc-4efa-a2bc-6fde6eeac096" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -561,28 +561,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b7fe1169-0075-49c4-998f-a7654d67db3a" + "e1a0cd31-78b4-466b-a363-3b3c335f7354" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "67413d6b-8e23-4e66-a5cb-c9286fb50af3" + "3878678f-d75f-47a6-bca6-b3260c008498" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215724Z:67413d6b-8e23-4e66-a5cb-c9286fb50af3" + "WESTUS:20200224T173931Z:3878678f-d75f-47a6-bca6-b3260c008498" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:23 GMT" + "Mon, 24 Feb 2020 17:39:30 GMT" ], "Content-Length": [ - "2293" + "2292" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,7 +591,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/5d06c0eab37f30008f070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"5d06c0eab37f30008f070001\",\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\": \"2019-06-16T22:21:30.777Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b4353a8c937c41c4a2aeeda8e75ebe13\",\r\n \"secondaryKey\": \"9f0430fafe3d4ed4a1e00c143b6f3927\",\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/ps8640\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps8640\",\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\": \"ps3913\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-09-30T21:57:22.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps1964\",\r\n \"secondaryKey\": \"ps8412\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/5e5401e99d398d004e070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"5e5401e99d398d004e070001\",\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-02-24T17:03:37.243Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ace17bd7e97c43dea7c6f31098d159c3\",\r\n \"secondaryKey\": \"c557b7df431c4510ac4d42abf2091cde\",\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/ps2275\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps2275\",\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\": \"ps1936\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-24T17:39:29.013Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps229\",\r\n \"secondaryKey\": \"ps4480\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { @@ -601,16 +601,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80d3ef90-41b2-406e-a71e-2ed4a6e3f553" + "ced1d0f4-3c1c-41de-a984-910a81e38cc2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -624,25 +624,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff664894-5702-4cae-98f6-53d3c9b53c25" + "901fd0a2-edfc-47c6-b408-4849129adeaf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "e0136fa5-a166-4d97-be61-9ff745210ea3" + "68ccf659-3525-48d1-a919-b80b0e306954" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215724Z:e0136fa5-a166-4d97-be61-9ff745210ea3" + "WESTUS:20200224T173931Z:68ccf659-3525-48d1-a919-b80b0e306954" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:24 GMT" + "Mon, 24 Feb 2020 17:39:31 GMT" ], "Content-Length": [ "3410" @@ -654,7 +654,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5d06c0eab37f30008f070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5d06c0eab37f30008f070001\",\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\": \"2019-06-16T22:21:30.777Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b4353a8c937c41c4a2aeeda8e75ebe13\",\r\n \"secondaryKey\": \"9f0430fafe3d4ed4a1e00c143b6f3927\",\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/5d06c0ebb37f30008f070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5d06c0ebb37f30008f070002\",\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\": \"2019-06-16T22:21:31.45Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"faa9f85a31da4722b60df81868cbf813\",\r\n \"secondaryKey\": \"c1e5f2f4cfe1490991ad385f3f04b333\",\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/ps8640\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps8640\",\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\": \"ps3913\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-09-30T21:57:22.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps1964\",\r\n \"secondaryKey\": \"ps8412\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5e5401e99d398d004e070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5e5401e99d398d004e070001\",\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-02-24T17:03:37.243Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ace17bd7e97c43dea7c6f31098d159c3\",\r\n \"secondaryKey\": \"c557b7df431c4510ac4d42abf2091cde\",\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/5e5401ea9d398d004e070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5e5401ea9d398d004e070002\",\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-02-24T17:03:38.093Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"12457119444a4b4fb07098f4a89b9f85\",\r\n \"secondaryKey\": \"dd418f0c088b4ba4b537d8d13922ec63\",\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/ps2275\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps2275\",\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\": \"ps1936\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-24T17:39:29.013Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps229\",\r\n \"secondaryKey\": \"ps4480\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { @@ -664,16 +664,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e727039-878f-4749-9ee2-9df2a56da428" + "b31632f4-436a-4aaf-9ed6-7300d0fbbe4e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -687,28 +687,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "647c6fd4-92aa-46ea-9b63-ed2e66cd740c" + "d6e601b5-cbdc-46ee-82a0-1636543be256" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "e13ed5e9-d66f-46b2-a227-efcc04529704" + "40851e9a-65a9-412e-914d-d88dc5c93997" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215725Z:e13ed5e9-d66f-46b2-a227-efcc04529704" + "WESTUS:20200224T173932Z:40851e9a-65a9-412e-914d-d88dc5c93997" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:24 GMT" + "Mon, 24 Feb 2020 17:39:31 GMT" ], "Content-Length": [ - "2241" + "2240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -717,17 +717,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/5d06c0eab37f30008f070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5d06c0eab37f30008f070001\",\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\": \"2019-06-16T22:21:30.777Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b4353a8c937c41c4a2aeeda8e75ebe13\",\r\n \"secondaryKey\": \"9f0430fafe3d4ed4a1e00c143b6f3927\",\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/ps8640\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8640\",\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\": \"ps3913\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-09-30T21:57:22.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps1964\",\r\n \"secondaryKey\": \"ps8412\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5e5401e99d398d004e070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5e5401e99d398d004e070001\",\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-02-24T17:03:37.243Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ace17bd7e97c43dea7c6f31098d159c3\",\r\n \"secondaryKey\": \"c557b7df431c4510ac4d42abf2091cde\",\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/ps2275\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps2275\",\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\": \"ps1936\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-02-24T17:39:29.013Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps229\",\r\n \"secondaryKey\": \"ps4480\",\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/ps8640?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjQwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps2275?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHMyMjc1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83d91dbe-76d2-41d7-a44b-bbb935550520" + "04195037-8bb4-41f3-a376-85f23cb1c677" ], "If-Match": [ "*" @@ -736,10 +736,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -753,7 +753,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2dc6923-0158-4a5b-b3f0-a8d8dfe38cc1" + "d975276f-9378-4e63-b974-343eb2ac1c8a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -762,16 +762,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "0602589f-1780-48a1-8c9f-3bd0161fb23d" + "b6494640-417b-4309-8278-58c7adf03dcc" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215725Z:0602589f-1780-48a1-8c9f-3bd0161fb23d" + "WESTUS:20200224T173932Z:b6494640-417b-4309-8278-58c7adf03dcc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:24 GMT" + "Mon, 24 Feb 2020 17:39:31 GMT" ], "Expires": [ "-1" @@ -786,13 +786,13 @@ ], "Names": { "": [ - "ps8640", - "ps2859", - "ps4415", - "ps8133", - "ps3913", - "ps1964", - "ps8412" + "ps2275", + "ps9431", + "ps9925", + "ps4199", + "ps1936", + "ps229", + "ps4480" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json index 546e191e6bad..e4e7ff0201a4 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e82cb4bb-52ec-4ca1-b0b7-3705fef66572" + "ed2c42ee-6083-4f47-b08f-2820937fe0b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAFaMAAAAAAAAAAA==\"" + "\"AAAAAAAACCEAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "84f8e53a-a9df-4dd6-b4c8-6ee1ef746c7f" + "6694f892-fe93-4f1a-8c7a-4c12ed4d9c23" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "e5fb4095-e19c-40d2-a369-d50f8aa90354" + "b3276ee0-f700-444e-8c1a-d05d66af476f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215715Z:e5fb4095-e19c-40d2-a369-d50f8aa90354" + "WESTUS:20200224T173923Z:b3276ee0-f700-444e-8c1a-d05d66af476f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:15 GMT" + "Mon, 24 Feb 2020 17:39:23 GMT" ], "Content-Length": [ "246" @@ -64,7 +64,7 @@ ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"px8oHNI+IbcNYtFtsb2bsdM0hy8F/4CwHmofmyADIEGN8Mgx96w3pP8aiIgsxIHejhvwYZnaW4L2J/4fCTUwaQ==\",\r\n \"secondaryKey\": \"8WIlMP85tsJNwT3yl0ZEgd7Ht+4hThjba63HjqLPKx09TmADUHljdDN9uIuh/wWPDGs30zkQLPe1XsI2xa9LQg==\",\r\n \"enabled\": false\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"LzdUTdzzX96lM/jYo/snTbo+Lgitx13IzNsn8yzxlbIpGkM8vXkJpdNytLJNzok02nI09UeYda/yQNDmwJzi0g==\",\r\n \"secondaryKey\": \"CzmjJTDkf4JqXwR1aDdECVpOeUbgdyfDJdf1UI3Jhjq/jq3qozBqWi7Bc2TwBR2vvIXoJ2mjk9SJdJKzsCbeIg==\",\r\n \"enabled\": false\r\n}", "StatusCode": 200 }, { @@ -74,16 +74,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0da02ab3-a6a6-475a-984a-0fa82e3ed346" + "d9646651-693d-4423-ad36-d7c733f89553" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -94,13 +94,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJmIAAAAAAAAAAA==\"" + "\"AAAAAAAACq8AAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ee8c949-0509-4796-aa25-7c0c3ef2892b" + "dcf4da57-ab3d-45a9-9dd5-dd085f88b58f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -109,16 +109,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "7925cb21-42d5-47e4-9d5b-0fd63373ce29" + "0066100d-cc8e-4313-8ab1-b79046860948" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215717Z:7925cb21-42d5-47e4-9d5b-0fd63373ce29" + "WESTUS:20200224T173923Z:0066100d-cc8e-4313-8ab1-b79046860948" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:16 GMT" + "Mon, 24 Feb 2020 17:39:23 GMT" ], "Content-Length": [ "245" @@ -131,7 +131,7 @@ ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"px8oHNI+IbcNYtFtsb2bsdM0hy8F/4CwHmofmyADIEGN8Mgx96w3pP8aiIgsxIHejhvwYZnaW4L2J/4fCTUwaQ==\",\r\n \"secondaryKey\": \"8WIlMP85tsJNwT3yl0ZEgd7Ht+4hThjba63HjqLPKx09TmADUHljdDN9uIuh/wWPDGs30zkQLPe1XsI2xa9LQg==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"LzdUTdzzX96lM/jYo/snTbo+Lgitx13IzNsn8yzxlbIpGkM8vXkJpdNytLJNzok02nI09UeYda/yQNDmwJzi0g==\",\r\n \"secondaryKey\": \"CzmjJTDkf4JqXwR1aDdECVpOeUbgdyfDJdf1UI3Jhjq/jq3qozBqWi7Bc2TwBR2vvIXoJ2mjk9SJdJKzsCbeIg==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { @@ -141,16 +141,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32b018e5-9fe5-4fc7-bfb1-d851baeec2aa" + "2e052eed-99fe-49ab-9fbe-82f9fb4d0919" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -161,13 +161,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJmMAAAAAAAAAAA==\"" + "\"AAAAAAAACrAAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef7a1e8f-64ad-40c0-b2c6-67117d64d46e" + "af9430d6-5718-44bf-b29e-a0cef3a82cba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -176,16 +176,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "414cfeff-80a2-4b11-b217-546a0df76a96" + "c812435c-ac5b-4e05-bc8d-5adb92230db1" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215717Z:414cfeff-80a2-4b11-b217-546a0df76a96" + "WESTUS:20200224T173924Z:c812435c-ac5b-4e05-bc8d-5adb92230db1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:17 GMT" + "Mon, 24 Feb 2020 17:39:24 GMT" ], "Content-Length": [ "246" @@ -198,7 +198,7 @@ ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"px8oHNI+IbcNYtFtsb2bsdM0hy8F/4CwHmofmyADIEGN8Mgx96w3pP8aiIgsxIHejhvwYZnaW4L2J/4fCTUwaQ==\",\r\n \"secondaryKey\": \"8WIlMP85tsJNwT3yl0ZEgd7Ht+4hThjba63HjqLPKx09TmADUHljdDN9uIuh/wWPDGs30zkQLPe1XsI2xa9LQg==\",\r\n \"enabled\": false\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"LzdUTdzzX96lM/jYo/snTbo+Lgitx13IzNsn8yzxlbIpGkM8vXkJpdNytLJNzok02nI09UeYda/yQNDmwJzi0g==\",\r\n \"secondaryKey\": \"CzmjJTDkf4JqXwR1aDdECVpOeUbgdyfDJdf1UI3Jhjq/jq3qozBqWi7Bc2TwBR2vvIXoJ2mjk9SJdJKzsCbeIg==\",\r\n \"enabled\": false\r\n}", "StatusCode": 200 }, { @@ -208,7 +208,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e8dc6ea8-3004-4004-a345-cb36fd6ed239" + "697b6e07-9f9f-423c-8590-dee5374e4a51" ], "If-Match": [ "*" @@ -217,10 +217,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,7 +240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "099e3113-7443-4c51-8831-6caead1210f3" + "57edb99e-5184-45fe-a183-6b5b0c460004" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -249,16 +249,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "c6535a63-6c51-4a1a-ad46-e4cbf3215d7c" + "4e98d0d8-cc2f-4097-8ebf-3bfa7bfd89ba" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215716Z:c6535a63-6c51-4a1a-ad46-e4cbf3215d7c" + "WESTUS:20200224T173923Z:4e98d0d8-cc2f-4097-8ebf-3bfa7bfd89ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:16 GMT" + "Mon, 24 Feb 2020 17:39:23 GMT" ], "Expires": [ "-1" @@ -274,7 +274,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "11d43d97-7940-4984-925f-c3f9ce60c657" + "1df044ad-5bff-4143-9a80-3e11e0794b89" ], "If-Match": [ "*" @@ -283,10 +283,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,7 +306,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6996614a-5a3e-4441-a04b-db7c9f229d66" + "1f26fea9-df0c-48b8-ab06-8dadbc3819f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -315,16 +315,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "fd6d4ebf-fa9b-4114-9c23-8a5907a3f0f5" + "6fe6057d-1cdf-45c2-be05-01e4c2fc38fb" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215717Z:fd6d4ebf-fa9b-4114-9c23-8a5907a3f0f5" + "WESTUS:20200224T173924Z:6fe6057d-1cdf-45c2-be05-01e4c2fc38fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:17 GMT" + "Mon, 24 Feb 2020 17:39:24 GMT" ], "Expires": [ "-1" diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json index 93baf10a63f7..333a123a6afb 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f6d7cc4-67bd-4569-8756-f558799636d7" + "e83284d8-00bd-46c6-b59f-8617564ef827" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACKEAAAAAAAAAAA==\"" + "\"AAAAAAAACCMAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf79f7b6-9269-4434-b652-3674add3c4c2" + "83afc087-b1cc-45a7-ab82-423c2edd3cc5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "347fd3d4-9ecb-4c9a-95e7-10ba3c04d1bc" + "8ac6b720-4346-4a8c-926e-f69b592b6e8c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215244Z:347fd3d4-9ecb-4c9a-95e7-10ba3c04d1bc" + "WESTUS:20200224T173535Z:8ac6b720-4346-4a8c-926e-f69b592b6e8c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:43 GMT" + "Mon, 24 Feb 2020 17:35:34 GMT" ], "Content-Length": [ "237" @@ -64,7 +64,7 @@ ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] - "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"Qf2C+4P7rEhabR08nCUIGjLvlQG7h+Vt6cVmuuuGLdwaPIXDM7cCwvhtqT3IIlYvtcwYD5TSpsGXjtwfhNSXcw==\",\r\n \"secondaryKey\": \"xhh1evrjy68M1sW3sJ9/qK68N//ba0ZjlOO211N0L2wbvE8IU08c+SzyOgi6vrBvjdbLIoF1+MGk2HM2TDqA7g==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"GHXk49NTqRRt2onx2JYfoZOgc23k/NiLVhL500zRIXDN6cmQZo3hjjDhlf0flUhhl1J8v9EViFg2f9+7SMeLWQ==\",\r\n \"secondaryKey\": \"7BSwYYijxcUM4KQyeSbUAp9cRjUKOXOrd8kdQzSi+NVriLT3tFFFIXL/Qw3lgNZkePsnWoCUyEBbROX3WG9k1A==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { @@ -74,16 +74,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a3e9b1f-f883-458e-b594-ad4eb46d0a1a" + "c5963206-ff5c-4520-ae58-e64655763af6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -97,7 +97,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36ae7dec-9d5a-4df0-96e2-e2364540aaa7" + "5024edf6-e7ae-485a-aced-bc39bc820391" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -106,19 +106,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "f31f8891-6f4e-466f-9a03-c2bee795ef8e" + "4b1d2116-da91-411e-961e-5aecbab63f9b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215244Z:f31f8891-6f4e-466f-9a03-c2bee795ef8e" + "WESTUS:20200224T173536Z:4b1d2116-da91-411e-961e-5aecbab63f9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:44 GMT" + "Mon, 24 Feb 2020 17:35:35 GMT" ], "Content-Length": [ - "309" + "158" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,7 +127,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"48156c07189d2b9d4f63265af5e33a6e97203b67\",\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-07-29T16:26:01.7052168Z\",\r\n \"configurationChangeDate\": \"2019-09-30T21:52:40.004157Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5d3f1e05787c95133452a571\"\r\n}", + "ResponseBody": "{\r\n \"branch\": null,\r\n \"commitId\": null,\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": null,\r\n \"configurationChangeDate\": \"2020-02-24T17:35:31.8651583Z\"\r\n}", "StatusCode": 200 }, { @@ -137,16 +137,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fad35ab-4d50-400e-a138-4cffa5c43b97" + "04064f63-7202-4706-85cf-e02b93b1059f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -160,28 +160,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4eb11c73-ee20-4daa-8fbc-fef926b43956" + "ab88aba8-fcd2-41c2-8ce3-258d41679604" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "554091df-229d-4643-9b60-dc7d7f4fa2f9" + "2378b633-3953-46cd-821e-3f259cb8ae2c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215346Z:554091df-229d-4643-9b60-dc7d7f4fa2f9" + "WESTUS:20200224T173607Z:2378b633-3953-46cd-821e-3f259cb8ae2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:53:46 GMT" + "Mon, 24 Feb 2020 17:36:06 GMT" ], "Content-Length": [ - "307" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,7 +190,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"898b39aab7dff36312faf4417babdd497cec5f20\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-09-30T21:53:15.8481211Z\",\r\n \"configurationChangeDate\": \"2019-09-30T21:52:40.004157Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5d92792c787c9527240ff122\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"1eadb19b29be807468d5180c91f6fc3510f3794c\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-02-24T17:36:04.3341084Z\",\r\n \"configurationChangeDate\": \"2020-02-24T17:35:31.8651583Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5e5409686f56470f90c9a5df\"\r\n}", "StatusCode": 200 }, { @@ -200,16 +200,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44849f00-8ca5-4afa-944a-4dfc456f1fe7" + "bdad2dfc-b34d-4054-9f1d-d5f871bca5d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -223,25 +223,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6dfe864-5629-4fe5-80f6-fef71a1cc8e9" + "5c6bdef9-69d1-478a-9495-329023ec9d5d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "e9227f7a-f112-46e2-a87a-ab94bbd4e217" + "889a0468-e7f0-4968-b2d9-caec5b3b9d8d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215448Z:e9227f7a-f112-46e2-a87a-ab94bbd4e217" + "WESTUS:20200224T173710Z:889a0468-e7f0-4968-b2d9-caec5b3b9d8d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:47 GMT" + "Mon, 24 Feb 2020 17:37:09 GMT" ], "Content-Length": [ "309" @@ -253,7 +253,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"898b39aab7dff36312faf4417babdd497cec5f20\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-09-30T21:54:45.3018203Z\",\r\n \"configurationChangeDate\": \"2019-09-30T21:54:45.3018203Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5d927989787c9527240ff126\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"1eadb19b29be807468d5180c91f6fc3510f3794c\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-02-24T17:36:56.6157354Z\",\r\n \"configurationChangeDate\": \"2020-02-24T17:36:56.6157354Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5e5409a76f56470f90c9a5e3\"\r\n}", "StatusCode": 200 }, { @@ -263,16 +263,16 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f92fc5-1d02-49c4-8a87-50ed7a0f69ac" + "abc25e2f-6518-4a3d-80a7-aee151e169af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -289,13 +289,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d92792c787c9527240ff122?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5e5409686f56470f90c9a5df?api-version=2019-01-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eff2ebe9-7f06-481a-b891-4202be3426f5" + "47b7ff8b-e260-4eaa-ac6e-8af1471cd279" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -304,16 +304,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "fce87127-cbe8-4d42-b24c-56344b6455b3" + "16314504-eca8-4bc9-88ab-2143b6eaa74b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215245Z:fce87127-cbe8-4d42-b24c-56344b6455b3" + "WESTUS:20200224T173537Z:16314504-eca8-4bc9-88ab-2143b6eaa74b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:52:45 GMT" + "Mon, 24 Feb 2020 17:35:36 GMT" ], "Content-Length": [ "33" @@ -325,20 +325,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5d92792c787c9527240ff122\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e5409686f56470f90c9a5df\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d92792c787c9527240ff122?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWQ5Mjc5MmM3ODdjOTUyNzI0MGZmMTIyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5e5409686f56470f90c9a5df?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWU1NDA5Njg2ZjU2NDcwZjkwYzlhNWRmP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -348,89 +348,29 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d92792c787c9527240ff122?api-version=2019-01-01" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c349ed6-fe5d-45ac-8c3e-ca52b6e8dcf6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "95ca4594-462d-4f35-a50d-8290c335e838" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ - "ebdc21e5-ea19-422c-afad-fdaa12100b33" - ], - "x-ms-routing-request-id": [ - "WESTUS:20190930T215315Z:ebdc21e5-ea19-422c-afad-fdaa12100b33" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 30 Sep 2019 21:53:14 GMT" - ], - "Content-Length": [ - "160" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"5d92792c787c9527240ff122\",\r\n \"status\": \"InProgress\",\r\n \"started\": \"2019-09-30T21:52:44.643Z\",\r\n \"updated\": \"2019-09-30T21:52:44.643Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d92792c787c9527240ff122?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWQ5Mjc5MmM3ODdjOTUyNzI0MGZmMTIyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "6d66ca87-e947-4744-99b5-772b6786c7d5" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], "x-ms-correlation-request-id": [ - "02d0abc2-43cc-438b-917e-31779cc1ffcc" + "971a3a30-7c76-413f-81f0-bdbb59c30bf2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215346Z:02d0abc2-43cc-438b-917e-31779cc1ffcc" + "WESTUS:20200224T173607Z:971a3a30-7c76-413f-81f0-bdbb59c30bf2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:53:45 GMT" + "Mon, 24 Feb 2020 17:36:06 GMT" ], "Content-Length": [ "273" @@ -442,20 +382,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5d92792c787c9527240ff122\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-09-30T21:52:44.643Z\",\r\n \"updated\": \"2019-09-30T21:53:15.85Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 898b39aab7dff36312faf4417babdd497cec5f20.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e5409686f56470f90c9a5df\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-24T17:35:36.79Z\",\r\n \"updated\": \"2020-02-24T17:36:04.323Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 1eadb19b29be807468d5180c91f6fc3510f3794c.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d92792c787c9527240ff122?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWQ5Mjc5MmM3ODdjOTUyNzI0MGZmMTIyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5e5409686f56470f90c9a5df?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWU1NDA5Njg2ZjU2NDcwZjkwYzlhNWRmP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -469,25 +409,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a58bc453-c297-45dc-9ec3-4be92dbb84ac" + "a70bfe11-1984-43d7-b173-d3352ffa9924" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "1cf7e89f-0b07-412b-8310-79d8fe67b7f6" + "291f540d-18ab-452c-9b3d-1763d99e1606" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215346Z:1cf7e89f-0b07-412b-8310-79d8fe67b7f6" + "WESTUS:20200224T173607Z:291f540d-18ab-452c-9b3d-1763d99e1606" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:53:46 GMT" + "Mon, 24 Feb 2020 17:36:06 GMT" ], "Content-Length": [ "273" @@ -499,7 +439,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5d92792c787c9527240ff122\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-09-30T21:52:44.643Z\",\r\n \"updated\": \"2019-09-30T21:53:15.85Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 898b39aab7dff36312faf4417babdd497cec5f20.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e5409686f56470f90c9a5df\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-24T17:35:36.79Z\",\r\n \"updated\": \"2020-02-24T17:36:04.323Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 1eadb19b29be807468d5180c91f6fc3510f3794c.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { @@ -509,16 +449,16 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bc0aab20-55c6-4a6e-a244-8cad68412ea8" + "7b5d79c5-386f-4aab-aaca-6e8e4bd5c147" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,13 +475,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d92796a787c9527240ff124?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5e5409886f56470f90c9a5e1?api-version=2019-01-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bddbefe6-7b4e-4c8c-9244-86d3b1077f18" + "ec8c42b3-3bbc-433f-864b-4e34b63d5467" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -550,16 +490,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "856cb76c-fb6e-4456-978c-3bb430399ef2" + "fde3bf5e-59c4-4bf4-9a42-bd7470d7431d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215346Z:856cb76c-fb6e-4456-978c-3bb430399ef2" + "WESTUS:20200224T173608Z:fde3bf5e-59c4-4bf4-9a42-bd7470d7431d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:53:46 GMT" + "Mon, 24 Feb 2020 17:36:08 GMT" ], "Content-Length": [ "33" @@ -571,20 +511,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5d92796a787c9527240ff124\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e5409886f56470f90c9a5e1\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d92796a787c9527240ff124?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWQ5Mjc5NmE3ODdjOTUyNzI0MGZmMTI0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5e5409886f56470f90c9a5e1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWU1NDA5ODg2ZjU2NDcwZjkwYzlhNWUxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -598,28 +538,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d9b6e986-95f3-436f-8837-1dbe8cd80a23" + "35f0aa32-f774-4ac2-b486-c4ee30c2452d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "19d0b6c7-8ab6-4c90-8cf9-b26b248ebab0" + "8000be9b-b0ea-4a1b-903b-a5dcba79e7e4" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215417Z:19d0b6c7-8ab6-4c90-8cf9-b26b248ebab0" + "WESTUS:20200224T173638Z:8000be9b-b0ea-4a1b-903b-a5dcba79e7e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:16 GMT" + "Mon, 24 Feb 2020 17:36:38 GMT" ], "Content-Length": [ - "279" + "197" ], "Content-Type": [ "application/json; charset=utf-8" @@ -628,20 +568,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5d92796a787c9527240ff124\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-09-30T21:53:46.533Z\",\r\n \"updated\": \"2019-09-30T21:53:57.127Z\",\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}", + "ResponseBody": "{\r\n \"id\": \"5e5409886f56470f90c9a5e1\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-24T17:36:08.077Z\",\r\n \"updated\": \"2020-02-24T17:36:14.827Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d92796a787c9527240ff124?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWQ5Mjc5NmE3ODdjOTUyNzI0MGZmMTI0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5e5409886f56470f90c9a5e1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWU1NDA5ODg2ZjU2NDcwZjkwYzlhNWUxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -655,28 +595,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d4f7473-0133-4c7b-8c54-e6ba8549842e" + "2233fa2e-68cd-4c8b-9130-7d1f57f9da70" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "93d4d6cd-cfa9-4798-b2a7-73c7b924df42" + "62a4119d-6bba-4666-bd96-fc0d552ba6bf" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215417Z:93d4d6cd-cfa9-4798-b2a7-73c7b924df42" + "WESTUS:20200224T173639Z:62a4119d-6bba-4666-bd96-fc0d552ba6bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:16 GMT" + "Mon, 24 Feb 2020 17:36:38 GMT" ], "Content-Length": [ - "279" + "197" ], "Content-Type": [ "application/json; charset=utf-8" @@ -685,7 +625,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5d92796a787c9527240ff124\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-09-30T21:53:46.533Z\",\r\n \"updated\": \"2019-09-30T21:53:57.127Z\",\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}", + "ResponseBody": "{\r\n \"id\": \"5e5409886f56470f90c9a5e1\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-24T17:36:08.077Z\",\r\n \"updated\": \"2020-02-24T17:36:14.827Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { @@ -695,16 +635,16 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f19303c-697b-4f17-9ed5-263d2657bdfd" + "eb5b3e72-7201-4f7c-8540-6bd1ddb598f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -721,13 +661,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d927989787c9527240ff126?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5e5409a76f56470f90c9a5e3?api-version=2019-01-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "125dff60-250b-455c-b51e-8e8c34d52cc9" + "a2e15d37-b5ba-498e-b02b-5ea9685269e2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -736,16 +676,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "98209c44-0551-4a62-b5f7-b673a6b49b77" + "5231d278-00b1-4a8f-91cb-3018eb7cbb39" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215417Z:98209c44-0551-4a62-b5f7-b673a6b49b77" + "WESTUS:20200224T173639Z:5231d278-00b1-4a8f-91cb-3018eb7cbb39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:16 GMT" + "Mon, 24 Feb 2020 17:36:39 GMT" ], "Content-Length": [ "33" @@ -757,20 +697,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5d927989787c9527240ff126\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5e5409a76f56470f90c9a5e3\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d927989787c9527240ff126?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWQ5Mjc5ODk3ODdjOTUyNzI0MGZmMTI2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5e5409a76f56470f90c9a5e3?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWU1NDA5YTc2ZjU2NDcwZjkwYzlhNWUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -784,28 +724,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a275393c-002a-4d2c-9787-842e2942ff9b" + "ca97d52c-3de5-4d36-8f4e-11fa28a9f151" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "a7168cb3-6e63-4305-ad60-91d082a9c492" + "20b242a9-ff0f-4aec-bdb8-49e4ae8f9394" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215447Z:a7168cb3-6e63-4305-ad60-91d082a9c492" + "WESTUS:20200224T173709Z:20b242a9-ff0f-4aec-bdb8-49e4ae8f9394" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:47 GMT" + "Mon, 24 Feb 2020 17:37:09 GMT" ], "Content-Length": [ - "460" + "379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -814,20 +754,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5d927989787c9527240ff126\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-09-30T21:54:17.417Z\",\r\n \"updated\": \"2019-09-30T21:54:45.28Z\",\r\n \"resultInfo\": \"Latest commit 898b39aab7dff36312faf4417babdd497cec5f20 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}", + "ResponseBody": "{\r\n \"id\": \"5e5409a76f56470f90c9a5e3\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-24T17:36:39.173Z\",\r\n \"updated\": \"2020-02-24T17:36:56.593Z\",\r\n \"resultInfo\": \"Latest commit 1eadb19b29be807468d5180c91f6fc3510f3794c 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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5d927989787c9527240ff126?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWQ5Mjc5ODk3ODdjOTUyNzI0MGZmMTI2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5e5409a76f56470f90c9a5e3?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWU1NDA5YTc2ZjU2NDcwZjkwYzlhNWUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -841,28 +781,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e51a6b0-61ad-4bec-abc3-f4bcb82f4fb5" + "61603275-f5df-483e-9e2d-278d5fd31753" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "58d61a5c-f716-4fc3-a1e1-145516746e35" + "08b3e9ee-e07c-45a2-8353-ec08aa4a8498" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215447Z:58d61a5c-f716-4fc3-a1e1-145516746e35" + "WESTUS:20200224T173710Z:08b3e9ee-e07c-45a2-8353-ec08aa4a8498" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:54:47 GMT" + "Mon, 24 Feb 2020 17:37:09 GMT" ], "Content-Length": [ - "460" + "379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -871,7 +811,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5d927989787c9527240ff126\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-09-30T21:54:17.417Z\",\r\n \"updated\": \"2019-09-30T21:54:45.28Z\",\r\n \"resultInfo\": \"Latest commit 898b39aab7dff36312faf4417babdd497cec5f20 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}", + "ResponseBody": "{\r\n \"id\": \"5e5409a76f56470f90c9a5e3\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-02-24T17:36:39.173Z\",\r\n \"updated\": \"2020-02-24T17:36:56.593Z\",\r\n \"resultInfo\": \"Latest commit 1eadb19b29be807468d5180c91f6fc3510f3794c 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}", "StatusCode": 200 } ], diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json index 0120f671c232..d31e2fd35173 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46ba484a-61c2-4c23-9791-91bc1e1912fe" + "56b9cd17-37b6-4637-85d1-efaad6b6af23" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -30,28 +30,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d9e2a85a-01cf-4f72-a004-f1a6e38095b6" + "f32e9edd-2dc4-4b29-ab12-1ee0ef9f2c84" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "76b5924f-8eb5-48a2-96eb-e2d9a8f266c2" + "75741850-ccd9-40f0-a83e-b67eff9a57b4" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215706Z:76b5924f-8eb5-48a2-96eb-e2d9a8f266c2" + "WESTUS:20200224T173914Z:75741850-ccd9-40f0-a83e-b67eff9a57b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:05 GMT" + "Mon, 24 Feb 2020 17:39:14 GMT" ], "Content-Length": [ - "665" + "664" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,7 +60,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\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\": \"2019-06-16T22:21:30.153Z\",\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/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-02-24T17:03:35.77Z\",\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 }, { @@ -70,16 +70,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "368fdae9-6dfa-41de-a9f6-4ea797af2ae9" + "a3eacc73-e908-4300-a28e-6ca1c47e863e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -90,34 +90,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJioAAAAAAAAInA==\"" + "\"AAAAAAAACngAAAAAAAAIHg==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56f0b927-7c85-4292-8758-d8974525943d" + "43df652d-5810-4113-a006-a6c62d56d6c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "8dafdf73-42e0-4d99-a2f0-28e4926e4150" + "ff70c2d5-a959-40b4-9bf6-5cbcb3b14203" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215706Z:8dafdf73-42e0-4d99-a2f0-28e4926e4150" + "WESTUS:20200224T173914Z:ff70c2d5-a959-40b4-9bf6-5cbcb3b14203" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:05 GMT" + "Mon, 24 Feb 2020 17:39:14 GMT" ], "Content-Length": [ - "549" + "548" ], "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\": \"2019-06-16T22:21:30.153Z\",\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/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-02-24T17:03:35.77Z\",\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/ps1875?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps1633\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps7486\",\r\n \"lastName\": \"ps1106\",\r\n \"password\": \"ps3366\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps3532\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps5585\",\r\n \"lastName\": \"ps173\",\r\n \"password\": \"ps3093\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "46dbd202-24ab-4de0-aa85-ce67e80557b8" + "4fcd6767-868a-437e-bbc8-26f75fa6689b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "195" + "194" ] }, "ResponseHeaders": { @@ -162,34 +162,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJk4AAAAAAAAmUA==\"" + "\"AAAAAAAACpsAAAAAAAAKnQ==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee8f8515-db03-4336-88c9-542e276cb4ae" + "f7f54cd8-8f7a-45bf-8f80-5bbfb2f8e76c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "bfbb566e-8409-43f7-8d6d-05899cbf9993" + "9047504c-2d69-4998-b583-5d7f59216edf" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215707Z:bfbb566e-8409-43f7-8d6d-05899cbf9993" + "WESTUS:20200224T173915Z:9047504c-2d69-4998-b583-5d7f59216edf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:07 GMT" + "Mon, 24 Feb 2020 17:39:15 GMT" ], "Content-Length": [ - "1054" + "1053" ], "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/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps7486\",\r\n \"lastName\": \"ps1106\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps1633\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps5585\",\r\n \"lastName\": \"ps173\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps3532\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps1875?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e77a417c-8045-4e71-ac6d-3641ce97e1a5" + "31bd6120-95ac-4905-ae5d-103b6e721d82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -228,34 +228,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJk4AAAAAAAAmUA==\"" + "\"AAAAAAAACpsAAAAAAAAKnQ==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a454963d-4c5e-41d7-ab96-e0d3a16da32b" + "ffafedfa-a721-4da1-8f2a-636ce9d5be03" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "a7085a40-b5d9-49c7-9d1a-368bd93ae82e" + "d1f9d923-0c04-4fef-9524-591a1316fa73" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215708Z:a7085a40-b5d9-49c7-9d1a-368bd93ae82e" + "WESTUS:20200224T173916Z:d1f9d923-0c04-4fef-9524-591a1316fa73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:07 GMT" + "Mon, 24 Feb 2020 17:39:15 GMT" ], "Content-Length": [ - "580" + "579" ], "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/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps7486\",\r\n \"lastName\": \"ps1106\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps1633\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps5585\",\r\n \"lastName\": \"ps173\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps3532\",\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/ps1875?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20254636-0b02-4d88-aeed-a27f4fe6575d" + "ae4d252b-a74d-4b91-95bf-aee6f8623752" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -294,34 +294,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJlQAAAAAAAAmVQ==\"" + "\"AAAAAAAACqEAAAAAAAAKog==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aaf748c9-7361-4109-a4a5-2ef5827cee20" + "28693e22-40a3-4fc9-bb05-718bdefc3d4f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "cae5dec1-3ee9-40fd-b53f-f8f63d8d4b7e" + "1f59c393-1fae-42cc-b063-11b8699e493e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215709Z:cae5dec1-3ee9-40fd-b53f-f8f63d8d4b7e" + "WESTUS:20200224T173918Z:1f59c393-1fae-42cc-b063-11b8699e493e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:09 GMT" + "Mon, 24 Feb 2020 17:39:17 GMT" ], "Content-Length": [ - "588" + "587" ], "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/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps1967\",\r\n \"lastName\": \"ps5119\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps8263\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps1787\",\r\n \"lastName\": \"ps752\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps9671\",\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/ps1875?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9134c247-01a1-4f37-b66e-cad98084a817" + "5d906518-2e08-4abf-9cfa-e103bf3d96c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -360,34 +360,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJlgAAAAAAAAmWQ==\"" + "\"AAAAAAAACqUAAAAAAAAKpg==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd5345a5-3148-43cb-b12f-c66e7589d625" + "e588aadb-028b-4a5a-a970-c9df3c3fd25d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "0c1ce39b-9a68-44e2-a208-c1a6f0dc6b19" + "427fac03-11c1-4ec6-802f-884ed2c66a90" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215710Z:0c1ce39b-9a68-44e2-a208-c1a6f0dc6b19" + "WESTUS:20200224T173919Z:427fac03-11c1-4ec6-802f-884ed2c66a90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:10 GMT" + "Mon, 24 Feb 2020 17:39:18 GMT" ], "Content-Length": [ - "589" + "588" ], "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/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps1967\",\r\n \"lastName\": \"ps5119\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps8263\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps1787\",\r\n \"lastName\": \"ps752\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps9671\",\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/ps1875?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6010cfbb-bd88-453e-a438-9378b8e4a1d6" + "d125ed0e-fc92-40e8-80b5-5de9ee06027a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -426,34 +426,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAJlwAAAAAAAAmXQ==\"" + "\"AAAAAAAACqkAAAAAAAAKqg==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8cf59a18-cb12-4c9a-9a86-241b3c949b32" + "03641ef8-36f7-4ab9-8cc4-3472b1061f6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-correlation-request-id": [ - "6e6acd74-c5cb-47c4-88be-6f6a210abb04" + "70cdcdda-0f20-4a15-818a-29bd856e255b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215711Z:6e6acd74-c5cb-47c4-88be-6f6a210abb04" + "WESTUS:20200224T173919Z:70cdcdda-0f20-4a15-818a-29bd856e255b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:10 GMT" + "Mon, 24 Feb 2020 17:39:19 GMT" ], "Content-Length": [ - "588" + "587" ], "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/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps1967\",\r\n \"lastName\": \"ps5119\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps8263\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps1787\",\r\n \"lastName\": \"ps752\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps9671\",\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/ps1875?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e83037e7-0b63-4e83-a9e4-443da9fc8e21" + "c7f9677f-d251-410d-85b9-11b1ace1e500" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -495,25 +495,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03e3cc4f-ad23-493c-a3e6-2cda30fee627" + "c5f9ea03-dce1-46b8-af56-af7b4b2799e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "43accd88-12ec-41c8-817e-0356aa9c4850" + "24cfa22e-a51c-4fdc-adcb-4d7af3cccfff" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215712Z:43accd88-12ec-41c8-817e-0356aa9c4850" + "WESTUS:20200224T173921Z:24cfa22e-a51c-4fdc-adcb-4d7af3cccfff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:12 GMT" + "Mon, 24 Feb 2020 17:39:20 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/ps1875?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps8263\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps5947\",\r\n \"firstName\": \"ps1967\",\r\n \"lastName\": \"ps5119\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps9671\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps3015\",\r\n \"firstName\": \"ps1787\",\r\n \"lastName\": \"ps752\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "93f0a810-a144-45f7-a2e7-d108bf116594" + "e31d4fa8-31d0-4e1e-840c-e885ca79d3bf" ], "If-Match": [ "*" @@ -544,16 +544,16 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "203" + "202" ] }, "ResponseHeaders": { @@ -567,25 +567,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c239223e-ed01-4ad8-bc86-3b32a3866682" + "eb8630c5-8ed9-4d36-9e2c-99bee8484a1d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "c0bf4e12-81b1-42b5-a487-acc763de24a2" + "06fbd0f3-3f7d-4b2b-8160-f24ed44947c0" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215709Z:c0bf4e12-81b1-42b5-a487-acc763de24a2" + "WESTUS:20200224T173918Z:06fbd0f3-3f7d-4b2b-8160-f24ed44947c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:08 GMT" + "Mon, 24 Feb 2020 17:39:17 GMT" ], "Expires": [ "-1" @@ -595,13 +595,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps1875?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Blocked\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "37648c0a-f6ce-4040-8ef7-684526c12403" + "76c54b78-c16a-43f7-ab1e-e76144f84907" ], "If-Match": [ "*" @@ -610,10 +610,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,25 +633,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b5f91e1-d934-4266-bb88-0db05e3a1bd4" + "19ceaca1-d0d8-457e-9fed-69e5a8973e6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "469ca20a-5e89-4d3e-a985-e4df8c8c4f32" + "642581a2-962f-4c1c-8805-d319c6bd9617" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215710Z:469ca20a-5e89-4d3e-a985-e4df8c8c4f32" + "WESTUS:20200224T173919Z:642581a2-962f-4c1c-8805-d319c6bd9617" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:09 GMT" + "Mon, 24 Feb 2020 17:39:18 GMT" ], "Expires": [ "-1" @@ -661,13 +661,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps1875?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "962a552c-97f1-4cee-812f-97eb72db1471" + "e2c74c48-6bcb-44b3-8788-42dbfab25ebc" ], "If-Match": [ "*" @@ -676,10 +676,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,25 +699,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02141c07-0126-4053-9675-eaf9a9500943" + "9a675063-645e-4cb7-ae5e-4b8b02c3edd3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "33c0e4b2-4143-428e-9622-3ff37dbf9c21" + "4c241489-9f25-45db-9675-028662132a0d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215711Z:33c0e4b2-4143-428e-9622-3ff37dbf9c21" + "WESTUS:20200224T173919Z:4c241489-9f25-45db-9675-028662132a0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:10 GMT" + "Mon, 24 Feb 2020 17:39:19 GMT" ], "Expires": [ "-1" @@ -733,16 +733,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d6a1038-2153-43f3-808a-3ff5db3954da" + "7b3caf7c-afff-405f-8e01-10bbb124332f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -756,28 +756,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a555fbb-76ee-4b28-ac04-2066af1c75da" + "58bec724-03ef-4b7b-a429-9eba2bfc7bbe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "1faf450e-6ac7-4249-b944-80a3fe814479" + "65c73f21-709d-4ab7-a879-3af7b7b8bd7e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215709Z:1faf450e-6ac7-4249-b944-80a3fe814479" + "WESTUS:20200224T173918Z:65c73f21-709d-4ab7-a879-3af7b7b8bd7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:09 GMT" + "Mon, 24 Feb 2020 17:39:18 GMT" ], "Content-Length": [ - "704" + "703" ], "Content-Type": [ "application/json; charset=utf-8" @@ -786,26 +786,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/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps1967\",\r\n \"lastName\": \"ps5119\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps8263\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps1787\",\r\n \"lastName\": \"ps752\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps9671\",\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'ps1967'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAncHMxOTY3JyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=firstName%20eq%20'ps1787'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAncHMxNzg3JyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35c9eb87-8544-4f1f-814c-70bb4f7cae7f" + "8e930d73-a0b1-4ab2-8a19-bcaf6f4735b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -819,28 +819,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d94f25a8-dd3f-42c2-bcc3-2e443d1881fb" + "3f748aef-c018-410d-a5d1-d85aa75c3293" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "0c2d776f-e405-4d4b-a0ee-a9783093ba68" + "0a68cbee-6a1d-4fc5-92a6-9ed1c6584216" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215710Z:0c2d776f-e405-4d4b-a0ee-a9783093ba68" + "WESTUS:20200224T173918Z:0a68cbee-6a1d-4fc5-92a6-9ed1c6584216" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:09 GMT" + "Mon, 24 Feb 2020 17:39:18 GMT" ], "Content-Length": [ - "704" + "703" ], "Content-Type": [ "application/json; charset=utf-8" @@ -849,26 +849,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/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps1967\",\r\n \"lastName\": \"ps5119\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps8263\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps1787\",\r\n \"lastName\": \"ps752\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps9671\",\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'ps5119'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczUxMTknJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps752'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczc1MicmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64eefff3-babc-4f8b-a207-057f6aba14da" + "2c197c74-71e6-407d-b2f3-5066299d46ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -882,28 +882,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "512b9eb5-a9f6-4668-8a0d-8eef587f0581" + "b0d18a52-667a-4275-a120-bdbc9cf4958b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "d5d10f1c-9bbf-4814-a168-152e4c1e5d4b" + "0f4fb803-2bc2-41a2-96cf-d4220fa39907" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215710Z:d5d10f1c-9bbf-4814-a168-152e4c1e5d4b" + "WESTUS:20200224T173918Z:0f4fb803-2bc2-41a2-96cf-d4220fa39907" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:09 GMT" + "Mon, 24 Feb 2020 17:39:18 GMT" ], "Content-Length": [ - "704" + "703" ], "Content-Type": [ "application/json; charset=utf-8" @@ -912,26 +912,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/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps1967\",\r\n \"lastName\": \"ps5119\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps8263\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps1787\",\r\n \"lastName\": \"ps752\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps9671\",\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'ps5119'&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczUxMTknJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps752'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczc1MicmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb9a05f6-6881-45e0-8353-095f5baae91b" + "a8a82a65-3745-43fc-8602-3aba7b67e05a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -945,28 +945,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef949fc0-e75c-4805-85b3-554ff543422b" + "b648148b-bc5e-4b6e-bf10-e987e03a98f9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "88aa182b-718f-41f9-98b9-f80005e2efad" + "cfad2456-5e38-4e06-8e13-6add3c51ddcd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215710Z:88aa182b-718f-41f9-98b9-f80005e2efad" + "WESTUS:20200224T173919Z:cfad2456-5e38-4e06-8e13-6add3c51ddcd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:09 GMT" + "Mon, 24 Feb 2020 17:39:18 GMT" ], "Content-Length": [ - "704" + "703" ], "Content-Type": [ "application/json; charset=utf-8" @@ -975,7 +975,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps1967\",\r\n \"lastName\": \"ps5119\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps8263\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps1787\",\r\n \"lastName\": \"ps752\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps9671\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { @@ -985,16 +985,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07c0738a-6a18-4e1d-9a94-b32e8ca7327e" + "f4d93271-d889-48f2-9dd1-9eb47a673b9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1008,28 +1008,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aca9b156-1375-4128-acd0-b2c9e5d6fc1e" + "eedebd3e-c4f8-4679-bf23-f948a90f85c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "10d695f4-a573-467a-ac5c-e3227fb83ae5" + "77938c5c-e9d3-4e84-8b88-8f1084174935" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215711Z:10d695f4-a573-467a-ac5c-e3227fb83ae5" + "WESTUS:20200224T173919Z:77938c5c-e9d3-4e84-8b88-8f1084174935" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:10 GMT" + "Mon, 24 Feb 2020 17:39:19 GMT" ], "Content-Length": [ - "705" + "704" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1038,26 +1038,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/ps1875\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps1875\",\r\n \"properties\": {\r\n \"firstName\": \"ps1967\",\r\n \"lastName\": \"ps5119\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2019-09-30T21:57:07.093Z\",\r\n \"note\": \"ps8263\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps2689\",\r\n \"properties\": {\r\n \"firstName\": \"ps1787\",\r\n \"lastName\": \"ps752\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-02-24T17:39:15.267Z\",\r\n \"note\": \"ps9671\",\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/ps1875/generateSsoUrl?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689/generateSsoUrl?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1b065d0-fa9d-422b-8db1-5a73129a543b" + "e4b1bdf5-cb96-47e4-bf61-80497604f706" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1071,7 +1071,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "136482b2-5f5c-4344-a01b-1da7497d6b8e" + "68b8ce35-0432-4dae-a4cc-37b42f17555c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1080,16 +1080,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "ddee705d-e532-439a-8c0e-e94a0c3ae863" + "3446a7e9-114a-42f5-ac0c-2c8fc6d85c32" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215711Z:ddee705d-e532-439a-8c0e-e94a0c3ae863" + "WESTUS:20200224T173920Z:3446a7e9-114a-42f5-ac0c-2c8fc6d85c32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:10 GMT" + "Mon, 24 Feb 2020 17:39:19 GMT" ], "Content-Length": [ "201" @@ -1101,26 +1101,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps1875%26201909302202%264ixrIbCani%2fclJ5nMR0ML9ZSxgj7H0%2bDU3z4vCiq%2fHEqaqfde701xpHKeCvRE3mjbu86HVC2GxyBNpisIt3xFw%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps2689%26202002241744%26VnOhLAFxgxf%2fwM0DsyKieShCVxHbTpG2raTBCaZCqRBDKlbfcttiQhy5FJr628%2b6K2lYAEM8n%2b2DRshg9Q6zKA%3d%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps1875/token?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NS90b2tlbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689/token?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OS90b2tlbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2019-10-01T05:57:11.6276882Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2020-02-25T01:39:20.0869025Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e7030546-7cd6-4c61-bcbb-3e70789092b7" + "f52a313d-95d2-49ef-9eeb-9a9863b57230" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1140,7 +1140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2defe20a-58ed-4251-bbe4-08327947dbac" + "b8a633e2-e6c7-40fc-93c9-f90e4a854500" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1149,16 +1149,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "da0af26d-6201-4fd2-9e91-ec3e9b89d775" + "7a34d7d6-8a8a-4e79-8b63-5a3b9138f439" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215711Z:da0af26d-6201-4fd2-9e91-ec3e9b89d775" + "WESTUS:20200224T173920Z:7a34d7d6-8a8a-4e79-8b63-5a3b9138f439" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:11 GMT" + "Mon, 24 Feb 2020 17:39:19 GMT" ], "Content-Length": [ "120" @@ -1170,17 +1170,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps1875&201910010557&0n2KPgI3KRq2t92QKD1KNtuGkJdo+LezGAEJv4ZnT6HjwtgDAm2/029QUcTUEj9VouisjVDuJ6Na8TuIusg/9A==\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps2689&202002250139&Gh8uD+jJEg/B0mUczJ4nQ1CMp/U7YNZerr17VTaouFIWdjXDcio7yraxsVjrTmaCtkzTfdm9/TcXa0fdGHQMfQ==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps1875?deleteSubscriptions=true&api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMTg3NT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps2689?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMjY4OT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "314ea41e-2464-4432-bd3b-02334503053c" + "ea7744fc-2ce8-48bd-8b90-9be1a15546ff" ], "If-Match": [ "*" @@ -1189,10 +1189,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.11.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1206,7 +1206,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a87b154-255a-4010-84e8-c50aad42c14a" + "8c01f125-9b1c-4430-991c-051e3fce2e9d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1215,16 +1215,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "f0cc1913-d99e-4924-8efc-2dd82f116723" + "6a3bf5a9-d9a7-4253-9f82-0d7b377924c2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T215712Z:f0cc1913-d99e-4924-8efc-2dd82f116723" + "WESTUS:20200224T173921Z:6a3bf5a9-d9a7-4253-9f82-0d7b377924c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 21:57:12 GMT" + "Mon, 24 Feb 2020 17:39:20 GMT" ], "Expires": [ "-1" @@ -1239,15 +1239,15 @@ ], "Names": { "": [ - "ps1875", - "ps7486", - "ps1106", - "ps3366", - "ps1633", - "ps1967", - "ps5119", - "ps5947", - "ps8263" + "ps2689", + "ps5585", + "ps173", + "ps3093", + "ps3532", + "ps1787", + "ps752", + "ps3015", + "ps9671" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj index 1c5dfe641b32..d6a61c057bee 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj +++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs index 0139cf504ab1..2939df25414c 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs @@ -416,7 +416,8 @@ private static void ConfigureMappings() .ForMember(dest => dest.SignupPolicyName, opt => opt.MapFrom(src => src.SignupPolicyName)) .ForMember(dest => dest.ProfileEditingPolicyName, opt => opt.MapFrom(src => src.ProfileEditingPolicyName)) .ForMember(dest => dest.PasswordResetPolicyName, opt => opt.MapFrom(src => src.PasswordResetPolicyName)) - .ForMember(dest => dest.Authority, opt => opt.MapFrom(src => src.Authority)) + .ForMember(dest => dest.Authority, opt => opt.MapFrom(src => src.Authority)) + .ForMember(dest => dest.SigninTenant, opt => opt.MapFrom(src => src.SigninTenant)) .ForMember(dest => dest.AllowedTenants, opt => opt.MapFrom(src => src.AllowedTenants == null ? new string[0] : src.AllowedTenants.ToArray())); cfg @@ -1077,7 +1078,10 @@ private string GetContentFormatForApiImport( headerValue = fromFile ? ContentFormat.SwaggerJson : ContentFormat.SwaggerLinkJson; break; case PsApiManagementApiFormat.OpenApi: - headerValue = fromFile ? ContentFormat.Openapijson : ContentFormat.OpenapiLink; + headerValue = fromFile ? ContentFormat.Openapi : ContentFormat.OpenapiLink; + break; + case PsApiManagementApiFormat.OpenApiJson: + headerValue = fromFile ? ContentFormat.Openapijson : ContentFormat.OpenapijsonLink; break; case PsApiManagementApiFormat.Wsdl: headerValue = fromFile ? ContentFormat.Wsdl : ContentFormat.WsdlLink; @@ -1107,6 +1111,8 @@ private string GetFormatForApiExport( return ExportFormat.Swagger; case PsApiManagementApiFormat.OpenApi: return ExportFormat.Openapi; + case PsApiManagementApiFormat.OpenApiJson: + return ExportFormat.OpenapiJson; case PsApiManagementApiFormat.Wadl: return ExportFormat.Wadl; case PsApiManagementApiFormat.Wsdl: @@ -3087,7 +3093,8 @@ public PsApiManagementIdentityProvider IdentityProviderCreate( string signinPolicyName, string signupPolicyName, string passwordResetPolicyName, - string profileEditPolicyName) + string profileEditPolicyName, + string signinTenant) { var identityProviderCreateParameters = new IdentityProviderContract(clientId, clientSecret); if (allowedTenants != null) @@ -3120,6 +3127,11 @@ public PsApiManagementIdentityProvider IdentityProviderCreate( identityProviderCreateParameters.PasswordResetPolicyName = passwordResetPolicyName; } + if (!string.IsNullOrEmpty(signinTenant)) + { + identityProviderCreateParameters.SigninTenant = signinTenant; + } + var response = Client.IdentityProvider.CreateOrUpdate( context.ResourceGroupName, context.ServiceName, @@ -3169,6 +3181,7 @@ public void IdentityProviderSet( string signupPolicyName, string passwordResetPolicyName, string profileEditPolicyName, + string signinTenant, PsApiManagementIdentityProvider identityProvider) { var parameters = new IdentityProviderUpdateParameters(); @@ -3218,6 +3231,11 @@ public void IdentityProviderSet( parameters.PasswordResetPolicyName = passwordResetPolicyName; } + if (!string.IsNullOrEmpty(signinTenant)) + { + parameters.SigninTenant = signinTenant; + } + Client.IdentityProvider.Update( resourceGroupName, serviceName, diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementIdentityProvider.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementIdentityProvider.cs index 2c3cb907f7be..9673fe5cdbe1 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementIdentityProvider.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementIdentityProvider.cs @@ -88,6 +88,12 @@ public class NewAzureApiManagementIdentityProvider : AzureApiManagementCmdletBas HelpMessage = "Password Reset Policy Name. Only applies to AAD B2C Identity Provider. This parameter is optional.")] public String PasswordResetPolicyName { get; set; } + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "Signin Tenant to use for AAD Authentication. Only applies to AAD B2C Identity Provider. This parameter is optional.")] + public String SigninTenant { get; set; } + public override void ExecuteApiManagementCmdlet() { if (ShouldProcess(Type.ToString("g"), "Creates a new Identity Provider")) @@ -102,7 +108,8 @@ public override void ExecuteApiManagementCmdlet() SigninPolicyName, SignupPolicyName, PasswordResetPolicyName, - ProfileEditingPolicyName); + ProfileEditingPolicyName, + SigninTenant); WriteObject(identityProvider); } diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementIdentityProvider.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementIdentityProvider.cs index 43f11eb3d00c..be7aded8a6aa 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementIdentityProvider.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementIdentityProvider.cs @@ -101,6 +101,12 @@ public class SetAzureApiManagementIdentityProvider : AzureApiManagementCmdletBas Mandatory = false, HelpMessage = "Password Reset Policy Name. Only applies to AAD B2C Identity Provider. This parameter is optional.")] public String PasswordResetPolicyName { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "Signin Tenant to use for AAD Authentication. Only applies to AAD B2C Identity Provider. This parameter is optional.")] + public String SigninTenant { get; set; } [Parameter( ValueFromPipelineByPropertyName = true, @@ -143,6 +149,7 @@ public override void ExecuteApiManagementCmdlet() SignupPolicyName, PasswordResetPolicyName, ProfileEditingPolicyName, + SigninTenant, InputObject); if (PassThru) diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApiFormat.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApiFormat.cs index 25dab2af1573..2f7bf8452901 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApiFormat.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApiFormat.cs @@ -18,6 +18,7 @@ public enum PsApiManagementApiFormat Wadl = 1, Swagger = 2, Wsdl = 3, - OpenApi = 4 + OpenApi = 4, + OpenApiJson = 5 } } \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementIdentityProvider.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementIdentityProvider.cs index 5e40e78f7df3..3d043be0e243 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementIdentityProvider.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementIdentityProvider.cs @@ -68,5 +68,11 @@ public class PsApiManagementIdentityProvider : PsApiManagementArmResource /// Identity Provider. /// public string PasswordResetPolicyName { get; set; } + + /// + /// Gets or sets the SignIn Tenant to override the `common` AAD Tenant + /// configuration. + /// + public string SigninTenant { get; set; } } } \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj b/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj index 69299869a3a8..1ddc0e9d5e8d 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.Test/ScenarioTests/ApiManagementTests.ps1 b/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1 index 1ac79546569a..c5527f578bd4 100644 --- a/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1 +++ b/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1 @@ -48,6 +48,10 @@ function Test-CrudApiManagement { Assert-AreEqual $location $result.Location Assert-AreEqual "Developer" $result.Sku Assert-AreEqual 1 $result.Capacity + Assert-NotNull $result.DeveloperPortalUrl + Assert-NotNull $result.PortalUrl + Assert-NotNull $result.RuntimeUrl + Assert-NotNull $result.ManagementApiUrl Assert-AreEqual "None" $result.VpnType Assert-NotNull $result.SslSetting Assert-AreEqual "True" $result.SslSetting.FrontendProtocol["Tls10"] @@ -183,7 +187,7 @@ Tests ApiManagementVirtualNetworkCRUD #> function Test-ApiManagementVirtualNetworkCRUD { # Setup - $primarylocation = "North Central US" + $primarylocation = "East US" $secondarylocation = "South Central US" $resourceGroupName = Get-ResourceGroupName $apiManagementName = Get-ApiManagementServiceName @@ -191,7 +195,7 @@ function Test-ApiManagementVirtualNetworkCRUD { $adminEmail = "apim@powershell.org" $sku = "Developer" $capacity = 1 - $primarySubnetResourceId = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default" + $primarySubnetResourceId = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default" $additionalSubnetResourceId = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default" $vpnType = "External" @@ -286,12 +290,13 @@ Then updates the service by removing all but just one proxy hostname and adding #> function Test-ApiManagementHostnamesCRUD { # Setup - $location = "North Central US" + $location = "East US" $certFilePath = "$TestOutputRoot/powershelltest.pfx"; $certPassword = "Password"; $certSubject = "CN=*.msitesting.net" $certThumbprint = "8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2" $portalHostName = "portalsdk.msitesting.net" + $devPortalHostName = "devportalsdk.msitesting.net" $proxyHostName1 = "gateway1.msitesting.net" $proxyHostName2 = "gateway2.msitesting.net" $managementHostName = "mgmt.msitesting.net" @@ -311,8 +316,9 @@ function Test-ApiManagementHostnamesCRUD { $customProxy1 = New-AzApiManagementCustomHostnameConfiguration -Hostname $proxyHostName1 -HostnameType Proxy -PfxPath $certFilePath -PfxPassword $securePfxPassword -DefaultSslBinding $customProxy2 = New-AzApiManagementCustomHostnameConfiguration -Hostname $proxyHostName2 -HostnameType Proxy -PfxPath $certFilePath -PfxPassword $securePfxPassword $customPortal = New-AzApiManagementCustomHostnameConfiguration -Hostname $portalHostName -HostnameType Portal -PfxPath $certFilePath -PfxPassword $securePfxPassword + $customDevPortal = New-AzApiManagementCustomHostnameConfiguration -Hostname $devPortalHostName -HostnameType DeveloperPortal -PfxPath $certFilePath -PfxPassword $securePfxPassword $customMgmt = New-AzApiManagementCustomHostnameConfiguration -Hostname $managementHostName -HostnameType Management -PfxPath $certFilePath -PfxPassword $securePfxPassword - $customHostnames = @($customProxy1, $customProxy2, $customPortal, $customMgmt) + $customHostnames = @($customProxy1, $customProxy2, $customPortal, $customMgmt, $customDevPortal) # Create API Management service $result = New-AzApiManagement -ResourceGroupName $resourceGroupName -Location $location -Name $apiManagementName -Organization $organization -AdminEmail $adminEmail -Sku $sku -Capacity $capacity -CustomHostnameConfiguration $customHostnames @@ -359,12 +365,19 @@ function Test-ApiManagementHostnamesCRUD { Assert-AreEqual Management $result.ManagementCustomHostnameConfiguration.HostnameType Assert-AreEqual $certThumbprint $result.ManagementCustomHostnameConfiguration.CertificateInformation.Thumbprint + #validate the DeveloperPortal custom hostname configuration + Assert-NotNull $result.DeveloperPortalHostnameConfiguration + Assert-AreEqual $devPortalHostName $result.DeveloperPortalHostnameConfiguration.Hostname + Assert-AreEqual DeveloperPortal $result.DeveloperPortalHostnameConfiguration.HostnameType + Assert-AreEqual $certThumbprint $result.DeveloperPortalHostnameConfiguration.CertificateInformation.Thumbprint + #scm configuration is null Assert-Null $result.ScmCustomHostnameConfiguration # now delete all but one Proxy Custom Hostname $result.ManagementCustomHostnameConfiguration = $null $result.PortalCustomHostnameConfiguration = $null + $result.DeveloperPortalHostnameConfiguration = $null $result.ProxyCustomHostnameConfiguration = @($customProxy1) # add a system certificate @@ -398,6 +411,8 @@ function Test-ApiManagementHostnamesCRUD { #validate the portal custom hostname configuration Assert-Null $result.PortalCustomHostnameConfiguration + #validate the developerPortal custom hostname configuration + Assert-Null $result.DeveloperPortalHostnameConfiguration #validate the management custom hostname configuration Assert-Null $result.ManagementCustomHostnameConfiguration #scm configuration is null diff --git a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestApiManagementHostnamesCrud.json b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestApiManagementHostnamesCrud.json index f2ce35a9c77a..e79cdb813974 100644 --- a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestApiManagementHostnamesCrud.json +++ b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestApiManagementHostnamesCrud.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps536?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNTM2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps289?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMjg5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "667319c1-5ba4-4019-8706-334af1be81c3" + "d508e303-5423-48c6-8e8d-e5f5ec71ede3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "29" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "bf60b7a5-c137-4e75-944e-2b4b9e45f959" + "e210f4c2-8660-47e8-b367-b39a2298713a" ], "x-ms-correlation-request-id": [ - "bf60b7a5-c137-4e75-944e-2b4b9e45f959" + "e210f4c2-8660-47e8-b367-b39a2298713a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T151519Z:bf60b7a5-c137-4e75-944e-2b4b9e45f959" + "WESTUS:20200224T065805Z:e210f4c2-8660-47e8-b367-b39a2298713a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:15:19 GMT" + "Mon, 24 Feb 2020 06:58:05 GMT" ], "Content-Length": [ - "171" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,33 +63,33 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536\",\r\n \"name\": \"ps536\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289\",\r\n \"name\": \"ps289\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] - "RequestBody": "{\r\n \"properties\": {\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "61367f66-adc5-435f-b3b6-094676e47786" + "96e41997-d4d1-4e80-9cec-7524e14a59a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "10985" + "13664" ] }, "ResponseHeaders": { @@ -100,10 +100,10 @@ "no-cache" ], "ETag": [ - "\"AAAAAAF/lrs=\"" + "\"AAAAAAACrhg=\"" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -112,8 +112,8 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45ecb56d-002f-45c5-a9f0-d8dc87f27518", - "3d3f747c-b196-4300-b3f0-a112176cfc26" + "8c5b0aab-b498-41de-8304-3ad4a37d2ebd", + "fab5650e-f128-4ed8-ba05-74c3c5f62d20" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -122,19 +122,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "e4d0132d-7c75-4764-92ea-9ce92c00a816" + "f05bec2d-bd40-4290-877e-9e5f8ce7b2a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T151522Z:e4d0132d-7c75-4764-92ea-9ce92c00a816" + "WESTUS:20200224T065809Z:f05bec2d-bd40-4290-877e-9e5f8ce7b2a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:15:21 GMT" + "Mon, 24 Feb 2020 06:58:08 GMT" ], "Content-Length": [ - "2378" + "2736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -143,33 +143,33 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955\",\r\n \"name\": \"ps1955\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF/lrs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-05-08T15:15:21.6215751Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392\",\r\n \"name\": \"ps7392\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACrhg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-24T06:58:07.6812538Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] - "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"storeName\": \"CertificateAuthority\"\r\n }\r\n ],\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"storeName\": \"CertificateAuthority\"\r\n }\r\n ],\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "39ccba1d-a446-4f64-97db-324f69af45a8" + "d954e42c-d084-4d08-a9e5-866f1d0bd668" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "6414" + "6405" ] }, "ResponseHeaders": { @@ -180,10 +180,10 @@ "no-cache" ], "ETag": [ - "\"AAAAAAF/mJc=\"" + "\"AAAAAAACrlA=\"" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -192,8 +192,8 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e21905f2-23af-445e-90bf-7950b5867f67", - "3e171f57-6e1d-4bce-98db-58e01e3ae0ca" + "0376be74-a81c-4387-a951-2eaac85655da", + "7c0ba8f0-7519-40b2-bc1b-17cb14f8194b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -202,19 +202,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "42024dc4-c122-483a-9102-ad4abd19ccfa" + "7a9e69aa-24aa-49e0-8658-1a02211fc6bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153249Z:42024dc4-c122-483a-9102-ad4abd19ccfa" + "WESTUS:20200224T071716Z:7a9e69aa-24aa-49e0-8658-1a02211fc6bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:32:49 GMT" + "Mon, 24 Feb 2020 07:17:16 GMT" ], "Content-Length": [ - "3250" + "3638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -223,20 +223,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955\",\r\n \"name\": \"ps1955\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF/mJc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2019-05-08T15:15:21.6215751Z\",\r\n \"gatewayUrl\": \"https://ps1955.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps1955-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps1955.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps1955.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps1955.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps1955.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.242.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392\",\r\n \"name\": \"ps7392\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACrlA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2020-02-24T06:58:07.6812538Z\",\r\n \"gatewayUrl\": \"https://ps7392.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps7392-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps7392.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps7392.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps7392.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps7392.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7392.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.224.68.236\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -247,7 +247,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -256,7 +256,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb15baf5-0d36-4372-8dee-c18a1c2af208" + "06062991-4ac9-4ea5-ab5d-a76e751a37a0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -265,16 +265,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "7c9f1214-1919-406b-9bbf-c4f3a50b9c49" + "ecacd400-8a91-4e55-a1a2-4df29ad28aee" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T151622Z:7c9f1214-1919-406b-9bbf-c4f3a50b9c49" + "WESTUS:20200224T065910Z:ecacd400-8a91-4e55-a1a2-4df29ad28aee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:16:22 GMT" + "Mon, 24 Feb 2020 06:59:09 GMT" ], "Expires": [ "-1" @@ -287,16 +287,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -307,7 +307,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -316,7 +316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc62a2ae-7a3f-4935-a4a8-d5a3d6e37dff" + "f2d76969-b415-4077-b2ac-7d30fe09ab5e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -325,16 +325,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "49f37cab-8814-47ad-8d80-f3f364a41223" + "c8572551-8734-492c-9491-8fa2c7aeee87" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T151723Z:49f37cab-8814-47ad-8d80-f3f364a41223" + "WESTUS:20200224T070010Z:c8572551-8734-492c-9491-8fa2c7aeee87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:17:22 GMT" + "Mon, 24 Feb 2020 07:00:10 GMT" ], "Expires": [ "-1" @@ -347,16 +347,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -367,7 +367,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -376,7 +376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c4a9e94-8443-4677-9ab0-409dd0dbc9b0" + "d42cbfd6-d75b-4eb6-bb14-1cadd7ee2f87" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -385,16 +385,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "11a84ebb-a9f5-49a9-9e14-918e123a0789" + "579f2114-6e29-4630-a3c2-bfd1291eb1c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T151823Z:11a84ebb-a9f5-49a9-9e14-918e123a0789" + "WESTUS:20200224T070110Z:579f2114-6e29-4630-a3c2-bfd1291eb1c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:18:23 GMT" + "Mon, 24 Feb 2020 07:01:10 GMT" ], "Expires": [ "-1" @@ -407,16 +407,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -427,7 +427,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -436,7 +436,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c0bfcaf-af26-449d-b23c-cf0056ef8444" + "f2295a1c-9db8-4fb9-b4ee-c2b5e03a0e60" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -445,16 +445,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "c7a8eaf1-0e4c-4c49-b368-b7d25801a251" + "655effd9-6d62-4553-a0fd-c225b20c8031" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T151923Z:c7a8eaf1-0e4c-4c49-b368-b7d25801a251" + "WESTUS:20200224T070211Z:655effd9-6d62-4553-a0fd-c225b20c8031" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:19:23 GMT" + "Mon, 24 Feb 2020 07:02:10 GMT" ], "Expires": [ "-1" @@ -467,16 +467,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -487,7 +487,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -496,7 +496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac829155-03c8-4419-bdb3-a978c2a0e80d" + "968de2fc-917d-4d6b-b0f8-8c6177160f0b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -505,16 +505,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "b812e6e8-10a0-4a0a-974a-5e3b0a636549" + "42e3defa-0136-4ea0-b985-102dab7ed7d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152024Z:b812e6e8-10a0-4a0a-974a-5e3b0a636549" + "WESTUS:20200224T070311Z:42e3defa-0136-4ea0-b985-102dab7ed7d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:20:23 GMT" + "Mon, 24 Feb 2020 07:03:11 GMT" ], "Expires": [ "-1" @@ -527,16 +527,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -547,7 +547,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -556,7 +556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36c3c142-6026-411b-9b55-d3b36e29d097" + "02024897-ea0e-4269-ba7a-8f8e730564d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -565,16 +565,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "6db01902-519a-4a72-a256-faf7bac3da1a" + "80e0256d-0353-4f75-a91f-bfcd2b467c49" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152124Z:6db01902-519a-4a72-a256-faf7bac3da1a" + "WESTUS:20200224T070412Z:80e0256d-0353-4f75-a91f-bfcd2b467c49" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:21:24 GMT" + "Mon, 24 Feb 2020 07:04:11 GMT" ], "Expires": [ "-1" @@ -587,16 +587,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -607,7 +607,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -616,25 +616,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9702ccb4-80be-4852-8265-48a3c027482b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0d3038bb-b70f-4c66-a57a-5f816a3fbead" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "be6cdbc7-3664-45ee-89a1-05d33bd56c83" + "39c6abcf-da43-434d-8359-1773a9fb0783" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152225Z:be6cdbc7-3664-45ee-89a1-05d33bd56c83" + "WESTUS:20200224T070512Z:39c6abcf-da43-434d-8359-1773a9fb0783" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:22:24 GMT" + "Mon, 24 Feb 2020 07:05:11 GMT" ], "Expires": [ "-1" @@ -647,16 +647,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -667,7 +667,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -676,7 +676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ffede6ef-41af-414e-b7bc-77d7a9f90791" + "460c1a17-005c-4f9f-b46a-2e85374c53b4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -685,16 +685,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "da4b66c8-a145-4618-982e-baf4a387a69e" + "6623ed61-c8d9-45a8-a799-a2f6d3341ced" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152344Z:da4b66c8-a145-4618-982e-baf4a387a69e" + "WESTUS:20200224T070612Z:6623ed61-c8d9-45a8-a799-a2f6d3341ced" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:23:44 GMT" + "Mon, 24 Feb 2020 07:06:11 GMT" ], "Expires": [ "-1" @@ -707,16 +707,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -727,7 +727,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -736,7 +736,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3c5ec3e-63e6-44d2-bf39-db3ab64c71a3" + "4bb6493a-b939-4900-bd4a-a61e6491a092" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -745,16 +745,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "86e197f4-3fc5-4cce-99b2-c6412915f1c4" + "55685fac-b33c-4378-93ae-4c502b0b8310" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152445Z:86e197f4-3fc5-4cce-99b2-c6412915f1c4" + "WESTUS:20200224T070712Z:55685fac-b33c-4378-93ae-4c502b0b8310" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:24:45 GMT" + "Mon, 24 Feb 2020 07:07:12 GMT" ], "Expires": [ "-1" @@ -767,16 +767,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -787,7 +787,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -796,7 +796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41b601a4-e320-429d-9b86-8d7e94365764" + "4ad106ca-18ba-4689-9f23-d571f23d2e5e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -805,16 +805,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "3f59ead6-5f60-4583-ad27-2b797528d8ca" + "db4ba5d6-a33a-4f1f-b811-1822d7d51483" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152545Z:3f59ead6-5f60-4583-ad27-2b797528d8ca" + "WESTUS:20200224T070813Z:db4ba5d6-a33a-4f1f-b811-1822d7d51483" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:25:44 GMT" + "Mon, 24 Feb 2020 07:08:12 GMT" ], "Expires": [ "-1" @@ -827,16 +827,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -847,7 +847,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -856,7 +856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "813982bd-63f6-49c5-9c8f-b09aaef17f37" + "be28e425-0527-4c89-b0ec-2a50d9cf3a2d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -865,16 +865,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "029e007a-7bf6-4e8a-a277-8b9bca5ab0f9" + "3940403d-84f2-492d-924c-aef5d6dacc71" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152645Z:029e007a-7bf6-4e8a-a277-8b9bca5ab0f9" + "WESTUS:20200224T070913Z:3940403d-84f2-492d-924c-aef5d6dacc71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:26:45 GMT" + "Mon, 24 Feb 2020 07:09:13 GMT" ], "Expires": [ "-1" @@ -887,16 +887,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -907,7 +907,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -916,7 +916,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16e9533c-0110-43a4-920f-e163ff75f43b" + "9c8ea51a-81bf-47e1-8a24-ad1e46f4fed2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -925,16 +925,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "796b79ea-fce2-487d-9578-35243b1da5d3" + "67ea7a6a-7adc-4f4a-9af7-3e5508480d0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152746Z:796b79ea-fce2-487d-9578-35243b1da5d3" + "WESTUS:20200224T071013Z:67ea7a6a-7adc-4f4a-9af7-3e5508480d0c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:27:46 GMT" + "Mon, 24 Feb 2020 07:10:12 GMT" ], "Expires": [ "-1" @@ -947,16 +947,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -967,7 +967,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -976,7 +976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf60a51a-e7d6-49ee-be7d-0a8af9f02e89" + "facb39f2-ea1a-40e4-af80-8a554aacf194" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -985,16 +985,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "66ed82c6-7b47-4201-a1b4-aea0d1443512" + "68f0c83a-d868-42f3-ab02-be70c76d91b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152846Z:66ed82c6-7b47-4201-a1b4-aea0d1443512" + "WESTUS:20200224T071113Z:68f0c83a-d868-42f3-ab02-be70c76d91b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:28:46 GMT" + "Mon, 24 Feb 2020 07:11:13 GMT" ], "Expires": [ "-1" @@ -1007,16 +1007,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1027,7 +1027,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1036,7 +1036,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9fdfd34a-3151-4fd4-bfb0-5eff3edec157" + "da25d0f6-2fad-443e-8306-431a1fa5e722" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1045,16 +1045,16 @@ "11986" ], "x-ms-correlation-request-id": [ - "69f389b0-c99d-46ef-9b18-43c9569d11f9" + "9ca60fc4-9811-4908-b804-fd5eab7cf95a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T152946Z:69f389b0-c99d-46ef-9b18-43c9569d11f9" + "WESTUS:20200224T071214Z:9ca60fc4-9811-4908-b804-fd5eab7cf95a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:29:46 GMT" + "Mon, 24 Feb 2020 07:12:13 GMT" ], "Expires": [ "-1" @@ -1067,16 +1067,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1087,7 +1087,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1096,7 +1096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4841646d-27ea-4314-a4ca-2f1447e230b2" + "e7c6a5f4-280d-4ad9-9795-87a3b3e64fc5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1105,16 +1105,16 @@ "11985" ], "x-ms-correlation-request-id": [ - "02982d47-1d34-461f-89ef-7cbdc536889d" + "44e965ea-3565-4a84-8047-e305b9e6cdbf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153047Z:02982d47-1d34-461f-89ef-7cbdc536889d" + "WESTUS:20200224T071314Z:44e965ea-3565-4a84-8047-e305b9e6cdbf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:30:47 GMT" + "Mon, 24 Feb 2020 07:13:14 GMT" ], "Expires": [ "-1" @@ -1127,16 +1127,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1147,7 +1147,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1156,7 +1156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64fb6ea3-ac3a-462e-9f57-cea5a422e327" + "5b7a96d9-b4db-4509-b00e-0803b658ebc6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1165,16 +1165,16 @@ "11984" ], "x-ms-correlation-request-id": [ - "d1bd7879-ce36-434b-8488-8b6c02538266" + "9c3996b1-74b3-4393-9862-69a2f494dbb1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153147Z:d1bd7879-ce36-434b-8488-8b6c02538266" + "WESTUS:20200224T071414Z:9c3996b1-74b3-4393-9862-69a2f494dbb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:31:47 GMT" + "Mon, 24 Feb 2020 07:14:13 GMT" ], "Expires": [ "-1" @@ -1187,16 +1187,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X0FjdF9lZDZjMGQwNA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDBGamRGOWxaRFpqTUdRd05BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1206,11 +1206,17 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "819db259-0bc7-453f-82f9-01183a91e69a" + "14684665-9d6d-4d14-a26b-89cfecb978fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1219,19 +1225,133 @@ "11983" ], "x-ms-correlation-request-id": [ - "b6ff5925-c9f7-4daf-b0a5-189cbb2ec669" + "beb39107-cf69-4ace-97a2-be974c0a15db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153248Z:b6ff5925-c9f7-4daf-b0a5-189cbb2ec669" + "WESTUS:20200224T071515Z:beb39107-cf69-4ace-97a2-be974c0a15db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:32:47 GMT" + "Mon, 24 Feb 2020 07:15:14 GMT" + ], + "Expires": [ + "-1" ], "Content-Length": [ - "3242" + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "edb90806-b546-4bf3-bb44-c74893679d8b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "0c13d8c8-6b4a-4cc8-ad84-e3fd43aed757" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T071615Z:0c13d8c8-6b4a-4cc8-ad84-e3fd43aed757" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 07:16:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9BY3RfZWNiMTY5ZmI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlCWTNSZlpXTmlNVFk1Wm1JPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46a51e29-80ef-4f10-be8b-8fe4132e3605" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "e444b626-b718-440a-b588-d162ba553c1f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T071716Z:e444b626-b718-440a-b588-d162ba553c1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 07:17:15 GMT" + ], + "Content-Length": [ + "3630" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1240,20 +1360,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955\",\r\n \"name\": \"ps1955\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF/mJU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T15:15:21.6215751Z\",\r\n \"gatewayUrl\": \"https://ps1955.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps1955-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps1955.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps1955.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps1955.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps1955.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.242.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392\",\r\n \"name\": \"ps7392\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACrk8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-24T06:58:07.6812538Z\",\r\n \"gatewayUrl\": \"https://ps7392.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps7392-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps7392.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps7392.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps7392.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps7392.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7392.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.224.68.236\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDFWd1pHRjBaVjltTTJaa1lXSXhNUT09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlWY0dSaGRHVmZPREptTmpnek5URT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1264,7 +1384,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1273,25 +1393,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0913406-ff98-4f82-b8c6-7758a79f174d" + "20915204-64ec-4c5f-ba5c-0062948b33a8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-correlation-request-id": [ - "71b98f62-7360-4bd8-8a26-01ab2660515e" + "59f41127-810d-45a0-8c99-31c194caf8a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153349Z:71b98f62-7360-4bd8-8a26-01ab2660515e" + "WESTUS:20200224T071817Z:59f41127-810d-45a0-8c99-31c194caf8a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:33:49 GMT" + "Mon, 24 Feb 2020 07:18:16 GMT" ], "Expires": [ "-1" @@ -1304,16 +1424,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDFWd1pHRjBaVjltTTJaa1lXSXhNUT09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlWY0dSaGRHVmZPREptTmpnek5URT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1324,7 +1444,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1333,25 +1453,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c97e5f49-d8e8-4740-871a-3a405d982883" + "6aa2be93-2380-4692-aa3c-19d372be0f65" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-correlation-request-id": [ - "3c661426-7886-4e08-adb1-39f598c6c73b" + "e61e1c16-21e2-44f1-89fe-11ed337a26a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153450Z:3c661426-7886-4e08-adb1-39f598c6c73b" + "WESTUS:20200224T071917Z:e61e1c16-21e2-44f1-89fe-11ed337a26a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:34:49 GMT" + "Mon, 24 Feb 2020 07:19:17 GMT" ], "Expires": [ "-1" @@ -1364,16 +1484,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDFWd1pHRjBaVjltTTJaa1lXSXhNUT09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlWY0dSaGRHVmZPREptTmpnek5URT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1384,7 +1504,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1393,25 +1513,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1be26ff-945c-440c-9fb9-b17fda9ca6e6" + "ecf14d66-edb3-427a-8702-5473ee02df2b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-correlation-request-id": [ - "02934fd8-e6f4-42ec-82df-899b52ffc260" + "cb9ba46b-b5fa-4a9c-85ac-a44dfd0617b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153550Z:02934fd8-e6f4-42ec-82df-899b52ffc260" + "WESTUS:20200224T072018Z:cb9ba46b-b5fa-4a9c-85ac-a44dfd0617b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:35:49 GMT" + "Mon, 24 Feb 2020 07:20:17 GMT" ], "Expires": [ "-1" @@ -1424,16 +1544,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDFWd1pHRjBaVjltTTJaa1lXSXhNUT09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlWY0dSaGRHVmZPREptTmpnek5URT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1444,7 +1564,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1453,25 +1573,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc727fb3-1f93-4c4d-907d-253f8025ecb5" + "139b900c-93e3-477e-9ab9-6e78d2407b61" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11998" ], "x-ms-correlation-request-id": [ - "fdd32a76-a373-4578-a93d-cd4361cfcadd" + "27612884-5ced-4bd3-9e42-1b1bc974251d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153650Z:fdd32a76-a373-4578-a93d-cd4361cfcadd" + "WESTUS:20200224T072118Z:27612884-5ced-4bd3-9e42-1b1bc974251d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:36:50 GMT" + "Mon, 24 Feb 2020 07:21:18 GMT" ], "Expires": [ "-1" @@ -1484,16 +1604,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955/operationresults/cHMxOTU1X1VwZGF0ZV9mM2ZkYWIxMQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMTk1NS9vcGVyYXRpb25yZXN1bHRzL2NITXhPVFUxWDFWd1pHRjBaVjltTTJaa1lXSXhNUT09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlWY0dSaGRHVmZPREptTmpnek5URT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1503,32 +1623,92 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85256e96-f5fa-4a58-af28-72531c981399" + "ce08cb9b-6f62-4c39-b602-1c724e895b32" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11997" ], "x-ms-correlation-request-id": [ - "981d09fc-8f50-422a-b33b-2609bca3dfbf" + "507e933a-5973-49a2-aec4-2e43841c945f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153751Z:981d09fc-8f50-422a-b33b-2609bca3dfbf" + "WESTUS:20200224T072218Z:507e933a-5973-49a2-aec4-2e43841c945f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:37:50 GMT" + "Mon, 24 Feb 2020 07:22:17 GMT" + ], + "Expires": [ + "-1" ], "Content-Length": [ - "2487" + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392/operationresults/ZWFzdHVzOnBzNzM5Ml9VcGRhdGVfODJmNjgzNTE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzM5Mi9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek56TTVNbDlWY0dSaGRHVmZPREptTmpnek5URT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f42d054-5ae2-4c9c-b603-dd5774153a98" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "6ddb516b-ef58-4935-a038-7abad2d36d24" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T072319Z:6ddb516b-ef58-4935-a038-7abad2d36d24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 07:23:18 GMT" + ], + "Content-Length": [ + "2534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1537,26 +1717,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps536/providers/Microsoft.ApiManagement/service/ps1955\",\r\n \"name\": \"ps1955\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF/mNQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T15:15:21.6215751Z\",\r\n \"gatewayUrl\": \"https://ps1955.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps1955-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps1955.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps1955.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps1955.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps1955.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.242.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps289/providers/Microsoft.ApiManagement/service/ps7392\",\r\n \"name\": \"ps7392\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACrlg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-24T06:58:07.6812538Z\",\r\n \"gatewayUrl\": \"https://ps7392.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps7392-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps7392.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps7392.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps7392.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps7392.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7392.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.224.68.236\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps536?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNTM2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps289?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMjg5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd2c9089-6f3e-4eff-8b33-b79f0b7e1871" + "bfc459f1-aed4-47c1-a3d9-b487d0857325" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -1567,7 +1747,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1576,13 +1756,13 @@ "14999" ], "x-ms-request-id": [ - "2ca11409-0a22-4713-b196-17b232caa7e5" + "9bcb52ee-af8d-499e-90d7-7ad002dcc147" ], "x-ms-correlation-request-id": [ - "2ca11409-0a22-4713-b196-17b232caa7e5" + "9bcb52ee-af8d-499e-90d7-7ad002dcc147" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153752Z:2ca11409-0a22-4713-b196-17b232caa7e5" + "WESTUS:20200224T072321Z:9bcb52ee-af8d-499e-90d7-7ad002dcc147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1591,7 +1771,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:37:52 GMT" + "Mon, 24 Feb 2020 07:23:20 GMT" ], "Expires": [ "-1" @@ -1604,16 +1784,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -1624,7 +1804,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1633,13 +1813,13 @@ "11999" ], "x-ms-request-id": [ - "88a17046-6720-46e8-a7b1-5697e7522d04" + "645fe6ea-cea8-4b45-874c-462f96d0b94f" ], "x-ms-correlation-request-id": [ - "88a17046-6720-46e8-a7b1-5697e7522d04" + "645fe6ea-cea8-4b45-874c-462f96d0b94f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153808Z:88a17046-6720-46e8-a7b1-5697e7522d04" + "WESTUS:20200224T072336Z:645fe6ea-cea8-4b45-874c-462f96d0b94f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1648,7 +1828,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:38:07 GMT" + "Mon, 24 Feb 2020 07:23:35 GMT" ], "Expires": [ "-1" @@ -1661,16 +1841,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -1681,7 +1861,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1690,13 +1870,13 @@ "11998" ], "x-ms-request-id": [ - "98dc5a1b-875f-470e-b8f6-c7172c5936cf" + "a23beee1-bdba-4838-919d-9d7ab6b67e3d" ], "x-ms-correlation-request-id": [ - "98dc5a1b-875f-470e-b8f6-c7172c5936cf" + "a23beee1-bdba-4838-919d-9d7ab6b67e3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153823Z:98dc5a1b-875f-470e-b8f6-c7172c5936cf" + "WESTUS:20200224T072351Z:a23beee1-bdba-4838-919d-9d7ab6b67e3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1705,7 +1885,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:38:23 GMT" + "Mon, 24 Feb 2020 07:23:50 GMT" ], "Expires": [ "-1" @@ -1718,16 +1898,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -1738,7 +1918,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1747,13 +1927,13 @@ "11997" ], "x-ms-request-id": [ - "30b9b767-b1ee-464e-bb80-19089f4e46bc" + "e391cfee-543f-4f72-8ac9-81d5fde732be" ], "x-ms-correlation-request-id": [ - "30b9b767-b1ee-464e-bb80-19089f4e46bc" + "e391cfee-543f-4f72-8ac9-81d5fde732be" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153838Z:30b9b767-b1ee-464e-bb80-19089f4e46bc" + "WESTUS:20200224T072406Z:e391cfee-543f-4f72-8ac9-81d5fde732be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1762,7 +1942,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:38:37 GMT" + "Mon, 24 Feb 2020 07:24:05 GMT" ], "Expires": [ "-1" @@ -1775,16 +1955,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -1795,7 +1975,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1804,13 +1984,13 @@ "11996" ], "x-ms-request-id": [ - "949bd32f-a4af-4c25-9efd-3d49106a14ae" + "100449c1-760c-40bd-84a8-77b4188b115b" ], "x-ms-correlation-request-id": [ - "949bd32f-a4af-4c25-9efd-3d49106a14ae" + "100449c1-760c-40bd-84a8-77b4188b115b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153853Z:949bd32f-a4af-4c25-9efd-3d49106a14ae" + "WESTUS:20200224T072421Z:100449c1-760c-40bd-84a8-77b4188b115b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,7 +1999,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:38:52 GMT" + "Mon, 24 Feb 2020 07:24:21 GMT" ], "Expires": [ "-1" @@ -1832,16 +2012,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -1852,7 +2032,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1861,13 +2041,13 @@ "11995" ], "x-ms-request-id": [ - "35b2fb40-df9f-4cd2-8e90-6f017bd3df4e" + "33bb7d47-b7dc-42c5-a95a-b443b903d001" ], "x-ms-correlation-request-id": [ - "35b2fb40-df9f-4cd2-8e90-6f017bd3df4e" + "33bb7d47-b7dc-42c5-a95a-b443b903d001" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153908Z:35b2fb40-df9f-4cd2-8e90-6f017bd3df4e" + "WESTUS:20200224T072436Z:33bb7d47-b7dc-42c5-a95a-b443b903d001" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1876,7 +2056,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:39:07 GMT" + "Mon, 24 Feb 2020 07:24:36 GMT" ], "Expires": [ "-1" @@ -1889,16 +2069,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -1909,7 +2089,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1918,13 +2098,13 @@ "11994" ], "x-ms-request-id": [ - "804e16a3-189c-475b-b6ea-e2108b61c675" + "d3ef2edf-5eb5-462b-90dc-7d9bc670800f" ], "x-ms-correlation-request-id": [ - "804e16a3-189c-475b-b6ea-e2108b61c675" + "d3ef2edf-5eb5-462b-90dc-7d9bc670800f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153923Z:804e16a3-189c-475b-b6ea-e2108b61c675" + "WESTUS:20200224T072452Z:d3ef2edf-5eb5-462b-90dc-7d9bc670800f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1933,7 +2113,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:39:23 GMT" + "Mon, 24 Feb 2020 07:24:52 GMT" ], "Expires": [ "-1" @@ -1946,16 +2126,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -1966,7 +2146,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1975,13 +2155,13 @@ "11993" ], "x-ms-request-id": [ - "63526ac5-c568-4d28-988a-61504836b641" + "a290ac75-1337-497b-9f68-a5887bdee1de" ], "x-ms-correlation-request-id": [ - "63526ac5-c568-4d28-988a-61504836b641" + "a290ac75-1337-497b-9f68-a5887bdee1de" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153938Z:63526ac5-c568-4d28-988a-61504836b641" + "WESTUS:20200224T072507Z:a290ac75-1337-497b-9f68-a5887bdee1de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1990,7 +2170,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:39:38 GMT" + "Mon, 24 Feb 2020 07:25:07 GMT" ], "Expires": [ "-1" @@ -2003,16 +2183,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2023,7 +2203,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2032,13 +2212,13 @@ "11992" ], "x-ms-request-id": [ - "30204a5b-dc8b-4021-b189-a120b9a37f1a" + "fc67c19f-f648-42a0-8740-23275f70f2f6" ], "x-ms-correlation-request-id": [ - "30204a5b-dc8b-4021-b189-a120b9a37f1a" + "fc67c19f-f648-42a0-8740-23275f70f2f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T153953Z:30204a5b-dc8b-4021-b189-a120b9a37f1a" + "WESTUS:20200224T072522Z:fc67c19f-f648-42a0-8740-23275f70f2f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2047,7 +2227,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:39:53 GMT" + "Mon, 24 Feb 2020 07:25:22 GMT" ], "Expires": [ "-1" @@ -2060,16 +2240,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2080,7 +2260,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2089,13 +2269,13 @@ "11991" ], "x-ms-request-id": [ - "5cca6c06-c674-4f37-be79-7350686ad705" + "b1aea345-430f-4367-a35d-9251c784f236" ], "x-ms-correlation-request-id": [ - "5cca6c06-c674-4f37-be79-7350686ad705" + "b1aea345-430f-4367-a35d-9251c784f236" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T154008Z:5cca6c06-c674-4f37-be79-7350686ad705" + "WESTUS:20200224T072537Z:b1aea345-430f-4367-a35d-9251c784f236" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2104,7 +2284,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:40:07 GMT" + "Mon, 24 Feb 2020 07:25:37 GMT" ], "Expires": [ "-1" @@ -2117,16 +2297,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2137,7 +2317,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2146,13 +2326,13 @@ "11990" ], "x-ms-request-id": [ - "8b89b199-d4cf-45b4-be73-5cf9fca8ca32" + "ca90a324-2077-42e7-931e-fb9b66c2d664" ], "x-ms-correlation-request-id": [ - "8b89b199-d4cf-45b4-be73-5cf9fca8ca32" + "ca90a324-2077-42e7-931e-fb9b66c2d664" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T154024Z:8b89b199-d4cf-45b4-be73-5cf9fca8ca32" + "WESTUS:20200224T072552Z:ca90a324-2077-42e7-931e-fb9b66c2d664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2161,7 +2341,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:40:23 GMT" + "Mon, 24 Feb 2020 07:25:52 GMT" ], "Expires": [ "-1" @@ -2174,16 +2354,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2194,7 +2374,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2203,13 +2383,13 @@ "11989" ], "x-ms-request-id": [ - "dc546868-a3be-4b1b-9dd7-61b28704d8a7" + "f5a1ca23-9507-48bc-b823-95da1b9174ab" ], "x-ms-correlation-request-id": [ - "dc546868-a3be-4b1b-9dd7-61b28704d8a7" + "f5a1ca23-9507-48bc-b823-95da1b9174ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T154039Z:dc546868-a3be-4b1b-9dd7-61b28704d8a7" + "WESTUS:20200224T072608Z:f5a1ca23-9507-48bc-b823-95da1b9174ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2218,7 +2398,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:40:38 GMT" + "Mon, 24 Feb 2020 07:26:07 GMT" ], "Expires": [ "-1" @@ -2231,16 +2411,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2251,7 +2431,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2260,13 +2440,13 @@ "11988" ], "x-ms-request-id": [ - "bbb39855-0dc5-435a-9d18-a85d6422584e" + "6075e892-e1ab-4c3c-ad56-5ccc17d20cbe" ], "x-ms-correlation-request-id": [ - "bbb39855-0dc5-435a-9d18-a85d6422584e" + "6075e892-e1ab-4c3c-ad56-5ccc17d20cbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T154054Z:bbb39855-0dc5-435a-9d18-a85d6422584e" + "WESTUS:20200224T072623Z:6075e892-e1ab-4c3c-ad56-5ccc17d20cbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2275,7 +2455,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:40:53 GMT" + "Mon, 24 Feb 2020 07:26:23 GMT" ], "Expires": [ "-1" @@ -2288,16 +2468,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2308,7 +2488,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2317,13 +2497,13 @@ "11987" ], "x-ms-request-id": [ - "146b0085-1dd0-4340-8158-ac3c1be870b6" + "de80b26b-41a6-4b05-900b-fd94e8ce2280" ], "x-ms-correlation-request-id": [ - "146b0085-1dd0-4340-8158-ac3c1be870b6" + "de80b26b-41a6-4b05-900b-fd94e8ce2280" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T154109Z:146b0085-1dd0-4340-8158-ac3c1be870b6" + "WESTUS:20200224T072638Z:de80b26b-41a6-4b05-900b-fd94e8ce2280" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2332,7 +2512,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:41:08 GMT" + "Mon, 24 Feb 2020 07:26:38 GMT" ], "Expires": [ "-1" @@ -2345,16 +2525,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2365,7 +2545,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2374,13 +2554,13 @@ "11986" ], "x-ms-request-id": [ - "1d99b7a8-fbd0-4945-9ac3-387a2b5c089e" + "461cac1a-221a-4f17-b5ba-414cd8096a9e" ], "x-ms-correlation-request-id": [ - "1d99b7a8-fbd0-4945-9ac3-387a2b5c089e" + "461cac1a-221a-4f17-b5ba-414cd8096a9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T154124Z:1d99b7a8-fbd0-4945-9ac3-387a2b5c089e" + "WESTUS:20200224T072653Z:461cac1a-221a-4f17-b5ba-414cd8096a9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2389,7 +2569,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:41:24 GMT" + "Mon, 24 Feb 2020 07:26:53 GMT" ], "Expires": [ "-1" @@ -2402,16 +2582,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2421,17 +2601,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-request-id": [ - "901038b4-d6d8-4bf2-9c9b-8151e4850c3e" + "20a248fa-f8b2-4bc2-aa2b-2f8ee7f74dd9" ], "x-ms-correlation-request-id": [ - "901038b4-d6d8-4bf2-9c9b-8151e4850c3e" + "20a248fa-f8b2-4bc2-aa2b-2f8ee7f74dd9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T154139Z:901038b4-d6d8-4bf2-9c9b-8151e4850c3e" + "WESTUS:20200224T072708Z:20a248fa-f8b2-4bc2-aa2b-2f8ee7f74dd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2440,7 +2626,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:41:39 GMT" + "Mon, 24 Feb 2020 07:27:08 GMT" ], "Expires": [ "-1" @@ -2450,19 +2636,19 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzNi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek5pMU9UMUpVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYm05eWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2476,13 +2662,64 @@ "11984" ], "x-ms-request-id": [ - "52bd7d65-be34-416f-b90e-fa83582f0d3d" + "ae43946b-b4fb-4392-b5dc-cc3420c839b5" + ], + "x-ms-correlation-request-id": [ + "ae43946b-b4fb-4392-b5dc-cc3420c839b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T072723Z:ae43946b-b4fb-4392-b5dc-cc3420c839b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 07:27:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE9TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "28c1f6b8-475b-4845-9a6e-8bd0c2d2f66e" ], "x-ms-correlation-request-id": [ - "52bd7d65-be34-416f-b90e-fa83582f0d3d" + "28c1f6b8-475b-4845-9a6e-8bd0c2d2f66e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T154139Z:52bd7d65-be34-416f-b90e-fa83582f0d3d" + "WESTUS:20200224T072724Z:28c1f6b8-475b-4845-9a6e-8bd0c2d2f66e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2491,7 +2728,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 15:41:39 GMT" + "Mon, 24 Feb 2020 07:27:23 GMT" ], "Expires": [ "-1" @@ -2506,8 +2743,8 @@ ], "Names": { "Test-ApiManagementHostnamesCRUD": [ - "ps536", - "ps1955" + "ps289", + "ps7392" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagement.json b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagement.json index 3684c819149c..ffd34e317482 100644 --- a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagement.json +++ b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagement.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecd61970-f709-4ab6-b905-085e1af48fe3" + "7453b631-9a6f-4eeb-8a68-9f7d119f0d50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "e6e014dc-a451-4f7c-b4ab-3f9e3b8ee216" + "abc86425-03db-4ff1-bac5-4fb579e4d8ec" ], "x-ms-correlation-request-id": [ - "e6e014dc-a451-4f7c-b4ab-3f9e3b8ee216" + "abc86425-03db-4ff1-bac5-4fb579e4d8ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021221Z:e6e014dc-a451-4f7c-b4ab-3f9e3b8ee216" + "WESTUS:20200223T220259Z:abc86425-03db-4ff1-bac5-4fb579e4d8ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:12:20 GMT" + "Sun, 23 Feb 2020 22:02:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "2019" + "2276" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps531?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNTMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps6673?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNjY3Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "08ca5089-db4e-4dd6-9bb6-4a6725ffc7df" + "e4a191c2-da51-4afc-992f-d887b3ddb72e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "be338068-40ba-42f7-ba31-9cd9827162d4" + "6c7767e9-8b21-4413-b925-20c30c3496c6" ], "x-ms-correlation-request-id": [ - "be338068-40ba-42f7-ba31-9cd9827162d4" + "6c7767e9-8b21-4413-b925-20c30c3496c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021222Z:be338068-40ba-42f7-ba31-9cd9827162d4" + "WESTUS:20200223T220300Z:6c7767e9-8b21-4413-b925-20c30c3496c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:12:21 GMT" + "Sun, 23 Feb 2020 22:03:00 GMT" ], "Content-Length": [ - "166" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531\",\r\n \"name\": \"ps531\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673\",\r\n \"name\": \"ps6673\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1ND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\"\r\n },\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e230db3b-8d45-42f8-af47-d48ee77c47ea" + "60386b15-a861-415a-9313-98991d90535e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,10 +159,10 @@ "no-cache" ], "ETag": [ - "\"AAAAAAF/Z1A=\"" + "\"AAAAAAACjns=\"" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -171,29 +171,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "385ff57a-5c37-4b21-98af-4edae4e64f65", - "a0efb0fd-4d75-40fd-b661-108e9e8dcd08" + "d24e27fa-fe8d-43d1-adcf-aba58b3fe5a9", + "013e2676-d7e8-43e9-b2fe-c81d38a65878" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "e964d1dc-e0b9-4f53-a431-f6d73d78037c" + "8a736798-6cac-4dcb-b14b-e8b8d13104fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021223Z:e964d1dc-e0b9-4f53-a431-f6d73d78037c" + "WESTUS:20200223T220304Z:8a736798-6cac-4dcb-b14b-e8b8d13104fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:12:22 GMT" + "Sun, 23 Feb 2020 22:03:03 GMT" ], "Content-Length": [ - "1223" + "1249" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,20 +202,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022\",\r\n \"name\": \"ps3022\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/Z1A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-05-08T02:12:22.775763Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654\",\r\n \"name\": \"ps654\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjns=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-23T22:03:02.4411385Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -226,7 +226,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -235,25 +235,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1970d1cf-9496-4639-b299-e470896734b7" + "183a28b0-1687-4273-a593-1e8b7af80aea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "0f2f89ca-1752-4ea4-9f02-c75ef61ed2f4" + "c9fc3f8d-c2a3-45f7-a4c6-4b714f1ac590" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021323Z:0f2f89ca-1752-4ea4-9f02-c75ef61ed2f4" + "WESTUS:20200223T220404Z:c9fc3f8d-c2a3-45f7-a4c6-4b714f1ac590" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:13:23 GMT" + "Sun, 23 Feb 2020 22:04:03 GMT" ], "Expires": [ "-1" @@ -266,16 +266,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -286,7 +286,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -295,25 +295,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32e5b031-60d3-48e0-a02a-8a8244e650af" + "1ea2cead-5fdb-4e98-a9ba-eb3e02be0efb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "2c9b6ac9-bd17-4989-9e56-cad21f5d7732" + "7e05e1f0-064e-4b16-9bf9-2c30e35d6e5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021424Z:2c9b6ac9-bd17-4989-9e56-cad21f5d7732" + "WESTUS:20200223T220504Z:7e05e1f0-064e-4b16-9bf9-2c30e35d6e5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:14:24 GMT" + "Sun, 23 Feb 2020 22:05:04 GMT" ], "Expires": [ "-1" @@ -326,16 +326,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -346,7 +346,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -355,25 +355,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e47d4a86-af07-49f1-85d2-e0f3b06b9fb3" + "14426538-9bcd-4ae3-a249-7d97ec04675b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "92f14b53-80ca-44c3-b79a-386806abfef3" + "fb52c8cb-feed-4b1d-98c9-8ffc632e6619" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021524Z:92f14b53-80ca-44c3-b79a-386806abfef3" + "WESTUS:20200223T220604Z:fb52c8cb-feed-4b1d-98c9-8ffc632e6619" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:15:23 GMT" + "Sun, 23 Feb 2020 22:06:04 GMT" ], "Expires": [ "-1" @@ -386,16 +386,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -406,7 +406,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -415,25 +415,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fc3f352-e252-4d16-8b87-c50d03d9e2f1" + "07a7af21-9e32-4c83-9a4a-1df012511374" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "aeefa9df-c9f6-41f5-8c8c-69ade3597df3" + "4b2bee28-a733-43fa-9bf9-6cadf7c85f71" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021624Z:aeefa9df-c9f6-41f5-8c8c-69ade3597df3" + "WESTUS:20200223T220705Z:4b2bee28-a733-43fa-9bf9-6cadf7c85f71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:16:24 GMT" + "Sun, 23 Feb 2020 22:07:05 GMT" ], "Expires": [ "-1" @@ -446,16 +446,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -466,7 +466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -475,25 +475,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a3ac401-4e16-45a8-861c-49065c2dfdb1" + "6348f265-114f-4b3e-9108-91103b88363f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "1a96adff-e91f-4d89-b392-fd8c7e1743b9" + "9db86483-cf12-4164-9d9a-7cfe456a75a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021725Z:1a96adff-e91f-4d89-b392-fd8c7e1743b9" + "WESTUS:20200223T220805Z:9db86483-cf12-4164-9d9a-7cfe456a75a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:17:24 GMT" + "Sun, 23 Feb 2020 22:08:04 GMT" ], "Expires": [ "-1" @@ -506,16 +506,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -526,7 +526,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -535,25 +535,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5a0d5d7-5c2f-4977-ba33-3b2cc66e779d" + "944edbbc-0898-40ac-af3c-f7211a67d564" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "3bba167a-099b-45e6-959c-7eed32b3771a" + "28745c2a-c798-473f-9bea-7a5594fadab7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021825Z:3bba167a-099b-45e6-959c-7eed32b3771a" + "WESTUS:20200223T220905Z:28745c2a-c798-473f-9bea-7a5594fadab7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:18:25 GMT" + "Sun, 23 Feb 2020 22:09:05 GMT" ], "Expires": [ "-1" @@ -566,16 +566,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -586,7 +586,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -595,25 +595,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f20a8c9-52af-4a4a-94b1-5c3717ae711a" + "d49f3af9-e48d-408b-9648-8eb247f3874e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "e48220bc-e128-416d-b83a-7bfb7319aea4" + "6f5e2ffb-e9c8-4c58-8c0f-be3e003e763d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021925Z:e48220bc-e128-416d-b83a-7bfb7319aea4" + "WESTUS:20200223T221006Z:6f5e2ffb-e9c8-4c58-8c0f-be3e003e763d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:19:25 GMT" + "Sun, 23 Feb 2020 22:10:05 GMT" ], "Expires": [ "-1" @@ -626,16 +626,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -646,7 +646,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -655,25 +655,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0062bc22-ab01-4ba3-80d7-d0fab9eb07c9" + "77b8722d-4411-4d09-9eed-efb241d3f1fc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "91bb0260-327f-4561-9819-26fd145a5143" + "5a9cab33-2b1c-4263-a8b8-a226706557fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022026Z:91bb0260-327f-4561-9819-26fd145a5143" + "WESTUS:20200223T221106Z:5a9cab33-2b1c-4263-a8b8-a226706557fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:20:25 GMT" + "Sun, 23 Feb 2020 22:11:06 GMT" ], "Expires": [ "-1" @@ -686,16 +686,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -706,7 +706,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -715,25 +715,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51639f55-2a49-4803-ab37-e5821b140bdd" + "c0fc4e99-3fd4-4eb8-b14f-881d3ec2a97b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "f061b984-8337-403c-ad8a-2bf94d936482" + "db0685c2-dd45-4e4c-bec4-e5f2dec12a77" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022126Z:f061b984-8337-403c-ad8a-2bf94d936482" + "WESTUS:20200223T221206Z:db0685c2-dd45-4e4c-bec4-e5f2dec12a77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:21:25 GMT" + "Sun, 23 Feb 2020 22:12:06 GMT" ], "Expires": [ "-1" @@ -746,16 +746,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -766,7 +766,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -775,25 +775,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4adae2a-e5d9-477a-a3f3-a735736994e2" + "8cf12306-4f1c-4828-a4df-dbb9809c9c46" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "80a64d5a-5808-45da-b8bf-80f32063bb7a" + "97f6a24d-e1db-42e2-a686-d4601f835e12" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022227Z:80a64d5a-5808-45da-b8bf-80f32063bb7a" + "WESTUS:20200223T221306Z:97f6a24d-e1db-42e2-a686-d4601f835e12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:22:26 GMT" + "Sun, 23 Feb 2020 22:13:06 GMT" ], "Expires": [ "-1" @@ -806,16 +806,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -826,7 +826,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -835,25 +835,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8063ca9d-6450-427b-91de-935777b45cd2" + "04ecc7f7-b019-43c6-a25e-ed979d0c6618" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-correlation-request-id": [ - "49893822-c0e1-41fa-ad72-51890d934303" + "026154fc-a36a-451f-a9e6-46ade5e34aa9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022327Z:49893822-c0e1-41fa-ad72-51890d934303" + "WESTUS:20200223T221407Z:026154fc-a36a-451f-a9e6-46ade5e34aa9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:23:26 GMT" + "Sun, 23 Feb 2020 22:14:06 GMT" ], "Expires": [ "-1" @@ -866,16 +866,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -886,7 +886,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -895,25 +895,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f869cba-3d3e-4040-8056-dbfa8ec1f474" + "b6f11b33-0143-4807-bea2-3ca1ff36eb89" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "7e6bfa85-a9d1-4a01-9760-dd9931c8637b" + "4b1ee68f-d2bc-4f2e-a08c-70257a6c65fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022427Z:7e6bfa85-a9d1-4a01-9760-dd9931c8637b" + "WESTUS:20200223T221507Z:4b1ee68f-d2bc-4f2e-a08c-70257a6c65fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:24:27 GMT" + "Sun, 23 Feb 2020 22:15:07 GMT" ], "Expires": [ "-1" @@ -926,16 +926,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -946,7 +946,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -955,25 +955,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02f61c3d-9fd5-41bf-8b51-60e11b7fdec9" + "77e537cb-fee7-4e3e-a3c6-8f0c23439273" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-correlation-request-id": [ - "961e8b56-c114-443c-8919-3f47b66aa726" + "04f4dd5a-8514-4327-a48a-1a91cb449843" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022528Z:961e8b56-c114-443c-8919-3f47b66aa726" + "WESTUS:20200223T221607Z:04f4dd5a-8514-4327-a48a-1a91cb449843" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:25:28 GMT" + "Sun, 23 Feb 2020 22:16:07 GMT" ], "Expires": [ "-1" @@ -986,16 +986,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1006,7 +1006,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1015,25 +1015,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac2d0296-e3e1-4ab2-a779-76a675267855" + "203db4bc-0840-41fc-bbaa-51b59dd6fc77" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-correlation-request-id": [ - "a32a578f-79ea-4217-ac42-40c25167972c" + "fd9f50d2-d038-4b72-86ef-401b0d86ae77" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022628Z:a32a578f-79ea-4217-ac42-40c25167972c" + "WESTUS:20200223T221708Z:fd9f50d2-d038-4b72-86ef-401b0d86ae77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:26:27 GMT" + "Sun, 23 Feb 2020 22:17:07 GMT" ], "Expires": [ "-1" @@ -1046,16 +1046,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1066,7 +1066,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1075,25 +1075,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f0c3dc3-1d77-43cf-803d-6399834d60db" + "4b180269-d462-476e-a7ec-7301825f613a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-correlation-request-id": [ - "297dfeff-0e05-4714-ae78-79e2a196b5b3" + "9aac1627-60f8-46cf-a061-98d3172c9584" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022728Z:297dfeff-0e05-4714-ae78-79e2a196b5b3" + "WESTUS:20200223T221808Z:9aac1627-60f8-46cf-a061-98d3172c9584" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:27:28 GMT" + "Sun, 23 Feb 2020 22:18:07 GMT" ], "Expires": [ "-1" @@ -1106,16 +1106,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1126,7 +1126,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1135,25 +1135,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f76e65e5-2137-483c-b331-184b31a34e7d" + "8066f75c-9f1f-4d99-a414-3de5135d785e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11984" ], "x-ms-correlation-request-id": [ - "c52ed33e-5302-4fbe-af97-9cb23db1912c" + "f5e6a1d6-f7ad-47cc-a558-865b1836b347" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022829Z:c52ed33e-5302-4fbe-af97-9cb23db1912c" + "WESTUS:20200223T221908Z:f5e6a1d6-f7ad-47cc-a558-865b1836b347" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:28:28 GMT" + "Sun, 23 Feb 2020 22:19:08 GMT" ], "Expires": [ "-1" @@ -1166,16 +1166,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1186,7 +1186,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1195,25 +1195,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ac9ca18-072f-4052-b7fb-bcdbf7da691b" + "e74bbc5d-1ce1-4765-8395-407d6e1d5c73" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11983" ], "x-ms-correlation-request-id": [ - "26ba5d24-f3db-467c-87cc-e4765033f484" + "c1065a26-200c-4efd-9323-678ee2fdae3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T022929Z:26ba5d24-f3db-467c-87cc-e4765033f484" + "WESTUS:20200223T222009Z:c1065a26-200c-4efd-9323-678ee2fdae3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:29:29 GMT" + "Sun, 23 Feb 2020 22:20:09 GMT" ], "Expires": [ "-1" @@ -1226,16 +1226,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1246,7 +1246,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1255,25 +1255,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d9cfc70d-3e69-44b8-bb67-653c418ee4bc" + "4d34e7b3-6ab1-4baf-af4b-8b0b7e99cc44" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11982" ], "x-ms-correlation-request-id": [ - "0860316b-d18d-4835-bca0-20330bee8e55" + "b198c701-36f7-4627-9c15-cf72c96fdda7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023029Z:0860316b-d18d-4835-bca0-20330bee8e55" + "WESTUS:20200223T222109Z:b198c701-36f7-4627-9c15-cf72c96fdda7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:30:28 GMT" + "Sun, 23 Feb 2020 22:21:08 GMT" ], "Expires": [ "-1" @@ -1286,16 +1286,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1306,7 +1306,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1315,25 +1315,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d27b364-57de-420f-8d94-8ae763e609a0" + "5037518f-a679-409e-b500-6b0cc8bb971d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11981" ], "x-ms-correlation-request-id": [ - "e61457df-0470-4bdc-a136-c7b8ffedd896" + "a0d4d2e3-0a1d-47a6-b86e-d2b7915ce5ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023130Z:e61457df-0470-4bdc-a136-c7b8ffedd896" + "WESTUS:20200223T222209Z:a0d4d2e3-0a1d-47a6-b86e-d2b7915ce5ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:31:29 GMT" + "Sun, 23 Feb 2020 22:22:09 GMT" ], "Expires": [ "-1" @@ -1346,16 +1346,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1366,7 +1366,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1375,25 +1375,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "622489fe-47a5-4b77-859d-7b9558df7e67" + "926a2d96-3ca0-47ab-9142-b9632b3f6766" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11980" ], "x-ms-correlation-request-id": [ - "d086b326-34bb-47ed-907d-900d03fe62d0" + "33fbfc8e-e7b5-4c41-ae44-0576ac3fe982" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023230Z:d086b326-34bb-47ed-907d-900d03fe62d0" + "WESTUS:20200223T222310Z:33fbfc8e-e7b5-4c41-ae44-0576ac3fe982" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:32:30 GMT" + "Sun, 23 Feb 2020 22:23:09 GMT" ], "Expires": [ "-1" @@ -1406,16 +1406,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1426,7 +1426,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1435,25 +1435,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39848db3-6598-48c7-891b-5f4d7eadc959" + "c72140f7-c995-4c37-9d88-d385eedf74e5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11979" ], "x-ms-correlation-request-id": [ - "ac411a18-15f0-4c13-a121-7b7987762d74" + "f86ef87e-2a8e-4ddd-8952-147d64ba6261" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023330Z:ac411a18-15f0-4c13-a121-7b7987762d74" + "WESTUS:20200223T222410Z:f86ef87e-2a8e-4ddd-8952-147d64ba6261" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:33:30 GMT" + "Sun, 23 Feb 2020 22:24:09 GMT" ], "Expires": [ "-1" @@ -1466,16 +1466,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1486,7 +1486,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1495,25 +1495,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09821227-b0e2-4b79-b5ec-7be196041703" + "20f3e496-222a-4c4e-881b-6dcc9b9f559c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11978" ], "x-ms-correlation-request-id": [ - "a01f5572-8f5a-441d-b214-42dfed679add" + "b6871ea6-1933-40d5-88d8-02f89d10efb1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023431Z:a01f5572-8f5a-441d-b214-42dfed679add" + "WESTUS:20200223T222510Z:b6871ea6-1933-40d5-88d8-02f89d10efb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:34:31 GMT" + "Sun, 23 Feb 2020 22:25:09 GMT" ], "Expires": [ "-1" @@ -1526,16 +1526,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1546,7 +1546,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1555,25 +1555,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bdd8eea3-fc2b-4655-bf21-3148a846f048" + "6518e062-3b9a-4d08-829d-543f5e290f65" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11977" ], "x-ms-correlation-request-id": [ - "f32b4289-26cd-4bc8-8803-c11a18892df8" + "44cc42e2-41f8-434f-abb6-70664347b60e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023531Z:f32b4289-26cd-4bc8-8803-c11a18892df8" + "WESTUS:20200223T222610Z:44cc42e2-41f8-434f-abb6-70664347b60e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:35:31 GMT" + "Sun, 23 Feb 2020 22:26:10 GMT" ], "Expires": [ "-1" @@ -1586,16 +1586,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1606,7 +1606,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1615,25 +1615,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "700f08af-cdca-4974-b259-6586f54fb661" + "eddd5aee-94be-4dcd-a30b-d0c162fd7333" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11976" ], "x-ms-correlation-request-id": [ - "418a456e-c51a-4734-acc3-4607fe698775" + "6ea2ad1b-a40c-49fd-8197-8b0435d18bb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023632Z:418a456e-c51a-4734-acc3-4607fe698775" + "WESTUS:20200223T222711Z:6ea2ad1b-a40c-49fd-8197-8b0435d18bb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:36:31 GMT" + "Sun, 23 Feb 2020 22:27:10 GMT" ], "Expires": [ "-1" @@ -1646,16 +1646,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1666,7 +1666,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1675,25 +1675,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f12eab8c-495c-4254-8254-2feff1962cde" + "5173c298-12ef-4365-b0b8-80c256699628" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11975" ], "x-ms-correlation-request-id": [ - "da0e3d8e-faea-4d09-8368-6d5806e273cd" + "472e6052-1cb8-4390-b00b-5d13af93b8ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023751Z:da0e3d8e-faea-4d09-8368-6d5806e273cd" + "WESTUS:20200223T222811Z:472e6052-1cb8-4390-b00b-5d13af93b8ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:37:50 GMT" + "Sun, 23 Feb 2020 22:28:10 GMT" ], "Expires": [ "-1" @@ -1706,16 +1706,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1726,7 +1726,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1735,25 +1735,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2014061-f7dd-4610-af2e-0370e5cb7699" + "54b7fa2e-8693-4a51-b223-348fee035d86" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11974" ], "x-ms-correlation-request-id": [ - "ee635745-aa5c-4df6-8d4d-3501ae3a7ee8" + "a44d290b-06dc-4744-a79e-655f514c38ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023852Z:ee635745-aa5c-4df6-8d4d-3501ae3a7ee8" + "WESTUS:20200223T222911Z:a44d290b-06dc-4744-a79e-655f514c38ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:38:51 GMT" + "Sun, 23 Feb 2020 22:29:11 GMT" ], "Expires": [ "-1" @@ -1766,16 +1766,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX0FjdF9hYTA3YmIwYQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDBGamRGOWhZVEEzWW1Jd1lRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1785,60 +1785,57 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21d2fd65-de7b-4a99-8e4c-6d1c3a5269b4" + "63925290-0c82-421e-a41e-cf1c39f3759b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11973" ], "x-ms-correlation-request-id": [ - "6f3aadd4-6280-4f91-a71d-54f822cbe8cb" + "3dc54548-1550-4e20-b937-87ba7eee9630" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023952Z:6f3aadd4-6280-4f91-a71d-54f822cbe8cb" + "WESTUS:20200223T223011Z:3dc54548-1550-4e20-b937-87ba7eee9630" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:39:51 GMT" - ], - "Content-Length": [ - "1922" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 22:30:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022\",\r\n \"name\": \"ps3022\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/aT0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T02:12:22.775763Z\",\r\n \"gatewayUrl\": \"https://ps3022.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3022-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3022.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3022.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3022.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3022.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.102.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/getssotoken?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9nZXRzc290b2tlbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b4966794-9c19-4596-a1ba-abcf268a6837" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1848,60 +1845,57 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57ce772d-f234-48b6-9955-cc1a8132fbfb" + "e557ad4d-9488-4f55-8112-ac777b098ff8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "x-ms-correlation-request-id": [ - "c8141516-c68c-4231-a04e-7682666c735e" + "aafbba23-63b6-448f-bcf1-3f1a06a59703" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023953Z:c8141516-c68c-4231-a04e-7682666c735e" + "WESTUS:20200223T223112Z:aafbba23-63b6-448f-bcf1-3f1a06a59703" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:39:53 GMT" - ], - "Content-Length": [ - "190" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 22:31:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"redirectUri\": \"https://ps3022.portal.azure-api.net:443/signin-sso?token=1%26201905080244%26EYXAFVRUSj8pZquvugCWCWorFmVneodveYCNBkaGWkgMbkmxQt6TWxP13yIn9sZpWcgyLEf%2fW%2fA4u5ZEH01aCQ%3d%3d\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a70d9039-5fef-4749-9bde-da48edac18d6" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1911,11 +1905,17 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3480c40e-c71a-4055-aa7d-1591cafffeb0" + "e5c16cb8-c90f-455f-b941-3736e466de51" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1924,47 +1924,38 @@ "11971" ], "x-ms-correlation-request-id": [ - "b3154e93-afe5-4f4d-b674-1522d230fa0d" + "6e842b2f-a21b-4a28-8012-d627542a3fdd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023953Z:b3154e93-afe5-4f4d-b674-1522d230fa0d" + "WESTUS:20200223T223212Z:6e842b2f-a21b-4a28-8012-d627542a3fdd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:39:53 GMT" - ], - "Content-Length": [ - "1934" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 22:32:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022\",\r\n \"name\": \"ps3022\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/aT0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T02:12:22.775763Z\",\r\n \"gatewayUrl\": \"https://ps3022.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3022-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3022.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3022.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3022.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3022.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.102.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b2b66195-1091-498f-b324-d4b2a144a8f0" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1974,60 +1965,57 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2975eb54-4726-441c-abc9-9c0e64b75f09" + "40a76cbb-2359-41a9-b5dd-250e9624561a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11970" ], "x-ms-correlation-request-id": [ - "b0b4bb20-1bb3-435d-baff-536f7cb14874" + "07d7f44d-26d1-4a6a-9f09-f2ffbd26fb00" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031130Z:b0b4bb20-1bb3-435d-baff-536f7cb14874" + "WESTUS:20200223T223312Z:07d7f44d-26d1-4a6a-9f09-f2ffbd26fb00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:11:30 GMT" - ], - "Content-Length": [ - "5520" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 22:33:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246\",\r\n \"name\": \"ps3246\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/auU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T02:39:54.3012885Z\",\r\n \"gatewayUrl\": \"https://ps3246.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3246-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3246.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3246.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3246.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3246.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.116.252\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022\",\r\n \"name\": \"ps3022\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/aT0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T02:12:22.775763Z\",\r\n \"gatewayUrl\": \"https://ps3022.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3022-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3022.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3022.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3022.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3022.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.102.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps7310\",\r\n \"name\": \"ps7310\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAAlQ0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T03:10:28.8858085Z\",\r\n \"gatewayUrl\": \"https://ps7310.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7310.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "263bc3b8-3c53-4196-b65f-570452395cc4" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2037,66 +2025,57 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3cac6f98-1295-456f-bceb-5eb8b1758930" + "f0384dc2-49de-458f-ae43-0820360c07fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11969" ], "x-ms-correlation-request-id": [ - "e5649e84-7ab3-4d66-a467-de0f4da6e639" + "ed7ea5ae-f163-49ce-bf40-49e89137ff60" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031454Z:e5649e84-7ab3-4d66-a467-de0f4da6e639" + "WESTUS:20200223T223412Z:ed7ea5ae-f163-49ce-bf40-49e89137ff60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:14:54 GMT" - ], - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 22:34:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "37d87d71-e5e3-4aaf-9261-be1c5a157224" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "253" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2106,11 +2085,8 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAF/aT8=\"" - ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2119,51 +2095,47 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee91a46a-c683-475f-b909-816d7fc95f45", - "180f4384-dbbb-412c-8711-b6fd1932cfb3" + "d0a02d29-fc00-4016-876b-3029079bb200" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" ], "x-ms-correlation-request-id": [ - "6b1298b7-8cfa-460f-a563-667bcaf8fced" + "7fc62bfd-6dc0-4083-82ed-15f537382052" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T023954Z:6b1298b7-8cfa-460f-a563-667bcaf8fced" + "WESTUS:20200223T223513Z:7fc62bfd-6dc0-4083-82ed-15f537382052" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:39:54 GMT" - ], - "Content-Length": [ - "1074" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 22:35:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246\",\r\n \"name\": \"ps3246\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/aT8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-05-08T02:39:54.3012885Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 201 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2174,7 +2146,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2183,25 +2155,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd46090e-08bf-4a7f-b889-6982f12f245a" + "f4b082ac-6d30-4e82-8a85-1ef4bb1b82ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11967" ], "x-ms-correlation-request-id": [ - "2aad7d6c-8570-47de-abbe-bdc81fa66a39" + "603766b8-e9dc-40ef-b914-807fc3cc24e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024055Z:2aad7d6c-8570-47de-abbe-bdc81fa66a39" + "WESTUS:20200223T223613Z:603766b8-e9dc-40ef-b914-807fc3cc24e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:40:54 GMT" + "Sun, 23 Feb 2020 22:36:12 GMT" ], "Expires": [ "-1" @@ -2214,16 +2186,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2234,7 +2206,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2243,25 +2215,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b7acc295-56b6-44f2-8c90-2cdf3cf82dc3" + "a1a135a8-60cd-41d0-af7b-f11bedb8bf65" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11966" ], "x-ms-correlation-request-id": [ - "f69d055b-96d7-44b6-9307-3d408b517a0a" + "9a9d0526-c976-4b21-bb3d-b36db9e6d108" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024155Z:f69d055b-96d7-44b6-9307-3d408b517a0a" + "WESTUS:20200223T223713Z:9a9d0526-c976-4b21-bb3d-b36db9e6d108" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:41:55 GMT" + "Sun, 23 Feb 2020 22:37:13 GMT" ], "Expires": [ "-1" @@ -2274,16 +2246,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2294,7 +2266,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2303,25 +2275,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f2ad79c-5779-451e-bf41-bd039711e32d" + "0b7c2b22-3752-4aea-97f4-80ee8c6cb888" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11965" ], "x-ms-correlation-request-id": [ - "f87f393e-da12-448e-8a7b-9d150a02743b" + "47d1c9ab-d824-4566-a352-f51d440ec513" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024255Z:f87f393e-da12-448e-8a7b-9d150a02743b" + "WESTUS:20200223T223813Z:47d1c9ab-d824-4566-a352-f51d440ec513" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:42:55 GMT" + "Sun, 23 Feb 2020 22:38:13 GMT" ], "Expires": [ "-1" @@ -2334,16 +2306,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2354,7 +2326,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2363,25 +2335,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4c14222-9626-4363-a10a-fa1a89fcccde" + "f40afb35-d5e5-4b6a-93eb-5ebfb4d8d028" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11964" ], "x-ms-correlation-request-id": [ - "e34160bf-c8c4-4844-9a93-d951751c63e6" + "352aaa93-6c23-494d-aa18-a373d9877073" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024356Z:e34160bf-c8c4-4844-9a93-d951751c63e6" + "WESTUS:20200223T223914Z:352aaa93-6c23-494d-aa18-a373d9877073" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:43:56 GMT" + "Sun, 23 Feb 2020 22:39:14 GMT" ], "Expires": [ "-1" @@ -2394,16 +2366,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2414,7 +2386,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2423,25 +2395,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0868a381-812e-4b90-984c-2e852e33d3db" + "c938b364-6605-46e5-b757-0fc78e491509" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11963" ], "x-ms-correlation-request-id": [ - "2f8e22da-cc10-447a-a971-344937c71b03" + "a33d1689-3e3b-4920-aab2-5a5975a73e2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024456Z:2f8e22da-cc10-447a-a971-344937c71b03" + "WESTUS:20200223T224014Z:a33d1689-3e3b-4920-aab2-5a5975a73e2e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:44:56 GMT" + "Sun, 23 Feb 2020 22:40:13 GMT" ], "Expires": [ "-1" @@ -2454,16 +2426,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2474,7 +2446,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2483,25 +2455,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c92afc90-6346-4a58-a81f-4d8aa77bb77b" + "7dd4fc7b-fe07-4856-854a-3eb9adbeb2ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11962" ], "x-ms-correlation-request-id": [ - "6e5d457d-0117-45d2-a9ff-e72435482626" + "034925a9-3a3c-4ec3-b1c7-21c1fb3a9878" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024556Z:6e5d457d-0117-45d2-a9ff-e72435482626" + "WESTUS:20200223T224114Z:034925a9-3a3c-4ec3-b1c7-21c1fb3a9878" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:45:56 GMT" + "Sun, 23 Feb 2020 22:41:14 GMT" ], "Expires": [ "-1" @@ -2514,16 +2486,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2534,7 +2506,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2543,25 +2515,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "852f44ef-9ae1-4f85-8071-1f30ef9bbed7" + "4072f5f0-6b3c-4f24-b352-28d65376da9a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11961" ], "x-ms-correlation-request-id": [ - "8bcf9632-d761-463e-ab7e-8cc1d32e1661" + "a8e37035-c3f5-4e62-9e6c-d9c7d7f91945" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024657Z:8bcf9632-d761-463e-ab7e-8cc1d32e1661" + "WESTUS:20200223T224214Z:a8e37035-c3f5-4e62-9e6c-d9c7d7f91945" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:46:57 GMT" + "Sun, 23 Feb 2020 22:42:13 GMT" ], "Expires": [ "-1" @@ -2574,16 +2546,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2594,7 +2566,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2603,25 +2575,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "483a6b73-e11f-40f2-8660-7c6a3ad89a0a" + "a8579a1e-a4d7-437b-afdb-a53f0469191b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11960" ], "x-ms-correlation-request-id": [ - "e1c8f661-3417-408e-b359-1a33f50a0f89" + "6ac8b082-7a5e-4c09-9028-54b64a94fefd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024757Z:e1c8f661-3417-408e-b359-1a33f50a0f89" + "WESTUS:20200223T224315Z:6ac8b082-7a5e-4c09-9028-54b64a94fefd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:47:56 GMT" + "Sun, 23 Feb 2020 22:43:14 GMT" ], "Expires": [ "-1" @@ -2634,16 +2606,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2654,7 +2626,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2663,25 +2635,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "05ee4d9b-4d90-4778-97ea-74f9bc5893d9" + "abcd29a5-055a-4f13-a4d0-de5eaaeb94e4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11959" ], "x-ms-correlation-request-id": [ - "40c862bb-c109-424c-b9d7-5a6bb69fe8e7" + "a54e780b-5ce3-4b5a-8538-16fc0663439d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024858Z:40c862bb-c109-424c-b9d7-5a6bb69fe8e7" + "WESTUS:20200223T224415Z:a54e780b-5ce3-4b5a-8538-16fc0663439d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:48:57 GMT" + "Sun, 23 Feb 2020 22:44:15 GMT" ], "Expires": [ "-1" @@ -2694,16 +2666,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2714,7 +2686,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2723,25 +2695,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "251f98a9-a2d6-4d07-a00e-8a146a6df3be" + "a62fb27e-7ecb-473e-8dc1-08d7b6eae134" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11958" ], "x-ms-correlation-request-id": [ - "9169d5e6-1a96-455d-bbe0-d18ddd1c8be1" + "24837aab-c8eb-481d-8d8b-f435161def90" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T024958Z:9169d5e6-1a96-455d-bbe0-d18ddd1c8be1" + "WESTUS:20200223T224515Z:24837aab-c8eb-481d-8d8b-f435161def90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:49:58 GMT" + "Sun, 23 Feb 2020 22:45:14 GMT" ], "Expires": [ "-1" @@ -2754,16 +2726,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2774,7 +2746,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2783,25 +2755,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc443c78-14ec-4384-bd76-515b0eea126c" + "3d1ca0b4-9e38-4abd-bd28-6db7211f3834" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11957" ], "x-ms-correlation-request-id": [ - "9bd6c5c7-5f87-4221-8bec-593bc130eb14" + "c128e1c9-2ff2-4c0b-8f0a-01e2cb591961" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T025059Z:9bd6c5c7-5f87-4221-8bec-593bc130eb14" + "WESTUS:20200223T224616Z:c128e1c9-2ff2-4c0b-8f0a-01e2cb591961" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:50:58 GMT" + "Sun, 23 Feb 2020 22:46:15 GMT" ], "Expires": [ "-1" @@ -2814,16 +2786,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2834,7 +2806,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2843,25 +2815,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c74d6824-225c-490a-a4c9-5703d994e4b4" + "4d34015b-85d2-45f7-9b66-c93f6b545185" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11956" ], "x-ms-correlation-request-id": [ - "42cbd949-790b-4a95-8f64-224bae1fe153" + "31574bd5-0a46-4452-91c7-f2f45b41e7ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T025159Z:42cbd949-790b-4a95-8f64-224bae1fe153" + "WESTUS:20200223T224716Z:31574bd5-0a46-4452-91c7-f2f45b41e7ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:51:58 GMT" + "Sun, 23 Feb 2020 22:47:15 GMT" ], "Expires": [ "-1" @@ -2874,16 +2846,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2894,7 +2866,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2903,25 +2875,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc135b6a-73f5-4a80-a7a9-08cf1ca2ed87" + "b3103cdc-cadd-436a-832f-f1da7bdcd36e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11955" ], "x-ms-correlation-request-id": [ - "68f65854-4979-4e32-9537-7b6694590a75" + "6396947f-80fc-4b06-8513-8e9d810cb999" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T025259Z:68f65854-4979-4e32-9537-7b6694590a75" + "WESTUS:20200223T224816Z:6396947f-80fc-4b06-8513-8e9d810cb999" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:52:59 GMT" + "Sun, 23 Feb 2020 22:48:16 GMT" ], "Expires": [ "-1" @@ -2934,16 +2906,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2954,7 +2926,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2963,25 +2935,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da8d3916-c59e-4149-a0c2-a7500c128c5e" + "f8f7e2a8-1f57-4f8e-81cd-38e680313575" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11954" ], "x-ms-correlation-request-id": [ - "7c5d1914-2be3-4b57-8bc8-e713ca3b3689" + "2bca3bee-8ee4-4ed5-8ac1-ce85918bdbb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T025400Z:7c5d1914-2be3-4b57-8bc8-e713ca3b3689" + "WESTUS:20200223T224917Z:2bca3bee-8ee4-4ed5-8ac1-ce85918bdbb7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:54:00 GMT" + "Sun, 23 Feb 2020 22:49:16 GMT" ], "Expires": [ "-1" @@ -2994,16 +2966,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X0FjdF9iYTZjYjA4YQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDBGamRGOWlZVFpqWWpBNFlRPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3013,57 +2985,60 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" - ], - "Retry-After": [ - "60" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "443ecf60-8fa2-4485-b442-62431f541e98" + "3a0857ec-9370-4b81-9c2b-3b2a4f032bbc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11953" ], "x-ms-correlation-request-id": [ - "0493bbcf-b8b8-4015-a6d9-6f6734445f59" + "889e8bea-e5fa-473b-aaa3-3554aac2b185" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T025501Z:0493bbcf-b8b8-4015-a6d9-6f6734445f59" + "WESTUS:20200223T225017Z:889e8bea-e5fa-473b-aaa3-3554aac2b185" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:55:01 GMT" + "Sun, 23 Feb 2020 22:50:16 GMT" + ], + "Content-Length": [ + "1975" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654\",\r\n \"name\": \"ps654\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjpI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T22:03:02.4411385Z\",\r\n \"gatewayUrl\": \"https://ps654.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps654-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps654.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps654.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps654.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps654.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps654.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.51.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/getssotoken?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9nZXRzc290b2tlbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "03a99814-b44b-41e1-abaa-6f9ed2358823" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3073,8 +3048,2014 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5852bbaf-db48-4931-ab3d-1f90e6b9700e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "eba89160-ee2a-4522-85a9-d4dc63a23117" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225017Z:eba89160-ee2a-4522-85a9-d4dc63a23117" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:50:17 GMT" + ], + "Content-Length": [ + "195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"redirectUri\": \"https://ps654.portal.azure-api.net:443/signin-sso?token=1%26202002232255%26FdB1xLhjiCt4euCp4UydJN7xha1%2f%2fReO2bOnw78AVSFYiVqWXc6dj%2bf%2bY9unkW%2b9SWNftalLDcI7IqgSMdkLoA%3d%3d\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8b3995b-56dc-4f01-8775-632a80bef50b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4b8d6982-d71a-420f-9fa5-6bc90f5db7ed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "b4da6747-a6aa-4e78-9030-482c06a8a0d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225017Z:b4da6747-a6aa-4e78-9030-482c06a8a0d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:50:17 GMT" + ], + "Content-Length": [ + "1987" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654\",\r\n \"name\": \"ps654\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjpI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T22:03:02.4411385Z\",\r\n \"gatewayUrl\": \"https://ps654.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps654-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps654.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps654.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps654.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps654.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps654.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.51.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13969b13-9731-4e96-8479-a6524c125122" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "88e15a57-7263-4afe-b008-54df90def468", + "128fad90-82e5-440e-95a2-960c5a9723b9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "61690f80-7827-4edb-8cec-f1c0da6747f2" + ], + "x-ms-correlation-request-id": [ + "61690f80-7827-4edb-8cec-f1c0da6747f2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T233441Z:61690f80-7827-4edb-8cec-f1c0da6747f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:34:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "5629" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654\",\r\n \"name\": \"ps654\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjpI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T22:03:02.4411385Z\",\r\n \"gatewayUrl\": \"https://ps654.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps654-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps654.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps654.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps654.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps654.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps654.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.51.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316\",\r\n \"name\": \"ps8316\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjq0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T22:50:19.0532744Z\",\r\n \"gatewayUrl\": \"https://ps8316.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8316-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8316.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8316.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8316.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8316.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8316.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.41.107\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps7993\",\r\n \"name\": \"ps7993\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAJPxU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T23:33:35.6408771Z\",\r\n \"gatewayUrl\": \"https://ps7993.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7993.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "741c9b4a-c082-4700-a841-a2a33241d901" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8bde44e6-f518-4b03-adae-57fbc644514a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-correlation-request-id": [ + "ba6e4449-f997-4d59-b7ba-c9e8df6b7160" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T234108Z:ba6e4449-f997-4d59-b7ba-c9e8df6b7160" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:41:08 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fac84d9-33dd-43c6-af54-fc1f3fab2c4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "253" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAACjpM=\"" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a8f59e78-baad-4f9e-8245-f1573495212a", + "729827e2-8421-4352-9497-6917b10e107c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ed6802a5-6f34-4bdf-b485-1a2169bda8c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225020Z:ed6802a5-6f34-4bdf-b485-1a2169bda8c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:50:20 GMT" + ], + "Content-Length": [ + "1101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316\",\r\n \"name\": \"ps8316\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjpM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-23T22:50:19.0532744Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7726d598-27d1-48e0-8371-79caab88d99a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "035f8a54-27b8-4acc-8f45-41d0abc9131f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225120Z:035f8a54-27b8-4acc-8f45-41d0abc9131f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:51:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "939f98e3-2b11-4fad-9545-23359b8b14a1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "19a24555-9e01-4217-a611-024ee0042b73" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225221Z:19a24555-9e01-4217-a611-024ee0042b73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:52:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3a127fec-3f67-4ff4-9d0d-d147bff90b60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "7eb70b70-2b69-42e4-ae4d-65383896b30d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225321Z:7eb70b70-2b69-42e4-ae4d-65383896b30d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:53:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d365f4d-2eaf-4dad-8004-5ec4aed833cf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "09af8278-7bcd-45ef-a9e7-5011a5bbe2e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225421Z:09af8278-7bcd-45ef-a9e7-5011a5bbe2e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:54:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8cf1b0b-84f4-4372-9ea1-4155a3cde747" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "5ebee644-e58d-4c09-851e-c11b58a67e15" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225521Z:5ebee644-e58d-4c09-851e-c11b58a67e15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:55:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a8181a84-2a4e-409b-9e08-52b92c40dbb3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "8bf9ead7-3c8b-46e6-9d4b-7a8a469b6bed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225622Z:8bf9ead7-3c8b-46e6-9d4b-7a8a469b6bed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:56:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d3999216-84ce-4968-8033-8caf94d44d33" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "46614bd1-77bb-427d-9de3-131afada0ffd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225722Z:46614bd1-77bb-427d-9de3-131afada0ffd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:57:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7305cca8-e3e3-4284-a977-e1587bcda38d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "ae11265c-fb6f-4e33-b9df-b45f2712db70" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225823Z:ae11265c-fb6f-4e33-b9df-b45f2712db70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:58:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cc23ba40-2c5d-4407-9943-50e17afaf2a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "f08c9d80-13b8-46b1-af5d-282f0d0b8e2a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T225923Z:f08c9d80-13b8-46b1-af5d-282f0d0b8e2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 22:59:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "135cb128-9e71-49b9-bad4-f7cd71fefec7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "dff2a96f-9c63-43cd-a7ff-00dfded50280" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230023Z:dff2a96f-9c63-43cd-a7ff-00dfded50280" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:00:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "726be550-c23e-4f0f-9578-97a5a90227ca" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "4e3a5f90-0b94-4570-a0c4-1b7fd646602d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230124Z:4e3a5f90-0b94-4570-a0c4-1b7fd646602d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:01:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c701ef0-4c36-4e5f-a4c8-ad054eff5f48" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "a11bf111-23bc-4457-bdfc-bbd1dd0847cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230224Z:a11bf111-23bc-4457-bdfc-bbd1dd0847cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:02:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7ff2f1b5-2e2e-4d3c-a1d6-de745af76430" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "4b80528a-a4c7-4681-89ba-ef25dd163a20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230324Z:4b80528a-a4c7-4681-89ba-ef25dd163a20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:03:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "635a5b65-6666-461b-ad59-1fbe35e329a4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "478a2720-91b4-4ed7-bb31-d1f21bd86029" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230424Z:478a2720-91b4-4ed7-bb31-d1f21bd86029" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:04:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a9c5478-6d90-417a-9c5b-efb9193647e1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "a1aba03a-9b17-4514-aa90-e18209ae21c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230525Z:a1aba03a-9b17-4514-aa90-e18209ae21c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:05:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "259317b1-9867-47c4-b99c-54fbb28e5c5f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "51867d70-fec0-4176-bdb5-11cd6ef2822c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230625Z:51867d70-fec0-4176-bdb5-11cd6ef2822c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:06:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1555bc6e-3dd7-4273-b5a9-5dca15843d92" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "eec4730c-4203-4c26-ab55-d718ef02cf6a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230726Z:eec4730c-4203-4c26-ab55-d718ef02cf6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:07:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "57d1707c-bee8-4e8a-bdb6-acfbd81d0120" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "80974c74-9729-41fa-9781-726617112469" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230826Z:80974c74-9729-41fa-9781-726617112469" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:08:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "685b8386-e10b-49e7-a505-35196a1e1429" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "31836ede-46ec-4f17-86ab-7cf562a51ea4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T230926Z:31836ede-46ec-4f17-86ab-7cf562a51ea4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:09:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b80d9a1f-49c8-4b23-a58f-31ed834f90aa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "c88ba7a4-49fa-4722-9bea-1dd1dbefac4a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T231026Z:c88ba7a4-49fa-4722-9bea-1dd1dbefac4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:10:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8cc40c3e-db99-40dd-a56e-0fd39f6e0cb4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "b4020b7c-c85a-4ed1-8304-4a857074854d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T231127Z:b4020b7c-c85a-4ed1-8304-4a857074854d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:11:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c4c79af1-9353-4919-97fa-d12014dc249a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "2914d26d-8dae-4484-a6d9-808c2552377e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T231227Z:2914d26d-8dae-4484-a6d9-808c2552377e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:12:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "309514c4-f227-4543-9d8b-9935e8600496" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "6e341746-4d0a-45dd-a44c-1b9bc6bb8189" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T231327Z:6e341746-4d0a-45dd-a44c-1b9bc6bb8189" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:13:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d6da7f09-488b-44c8-874c-cbe716e1a7a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "7866d696-79fb-432e-8f27-610b2ea6f5b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T231427Z:7866d696-79fb-432e-8f27-610b2ea6f5b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:14:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fa2146fa-eeed-4afc-b6e7-31e86a80e9d3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "e2dd6ff9-9774-458f-98f4-275a84ad7b4b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T231528Z:e2dd6ff9-9774-458f-98f4-275a84ad7b4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:15:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63b317ca-cb0c-4883-a375-0d3f68a03aa7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "1a4c1e12-2ce9-40ca-bdbd-9fcb113d23b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T231628Z:1a4c1e12-2ce9-40ca-bdbd-9fcb113d23b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:16:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ac43d7cd-232c-442e-b695-ddcc1291f046" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "0dd1f5f5-5a92-49f3-8744-4392150fc8c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T231728Z:0dd1f5f5-5a92-49f3-8744-4392150fc8c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:17:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a03e832b-b35c-4b4d-a4da-7021b44564a6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "a45f6baa-89ed-47b6-8279-1e34c94c9a12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T231828Z:a45f6baa-89ed-47b6-8279-1e34c94c9a12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:18:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3083,25 +5064,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c81d01f3-6170-4d53-b625-71ee0d3977e5" + "4b56df2e-d6be-4cad-a437-7bbda46319d4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11934" ], "x-ms-correlation-request-id": [ - "cab35165-3796-43da-8742-7f730dae2bbb" + "d19c3f85-17ce-4667-9a9b-092151a58412" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T025601Z:cab35165-3796-43da-8742-7f730dae2bbb" + "WESTUS:20200223T231929Z:d19c3f85-17ce-4667-9a9b-092151a58412" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:56:01 GMT" + "Sun, 23 Feb 2020 23:19:28 GMT" ], "Expires": [ "-1" @@ -3114,16 +5095,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3134,7 +5115,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3143,25 +5124,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23a53637-b763-49d8-bf1a-75772adc1fb4" + "b0d40f45-3a3a-4632-8e93-2948eb08025e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], "x-ms-correlation-request-id": [ - "d9c837ed-bc10-48f1-9b4f-e67bd3719651" + "770d7982-e552-4d1b-8d8f-3a667f2727d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T025702Z:d9c837ed-bc10-48f1-9b4f-e67bd3719651" + "WESTUS:20200223T232029Z:770d7982-e552-4d1b-8d8f-3a667f2727d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:57:02 GMT" + "Sun, 23 Feb 2020 23:20:28 GMT" ], "Expires": [ "-1" @@ -3174,16 +5155,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3194,7 +5175,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3203,25 +5184,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3fcae666-2f26-43f8-a7c3-4b676e843ed4" + "d959980c-fd09-4726-bf95-48674c2194ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11937" ], "x-ms-correlation-request-id": [ - "32e6eb99-60d1-42e7-968d-c14bb61e4d91" + "759a9507-706d-4723-bb7c-4ee8f06e26df" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T025802Z:32e6eb99-60d1-42e7-968d-c14bb61e4d91" + "WESTUS:20200223T232129Z:759a9507-706d-4723-bb7c-4ee8f06e26df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:58:02 GMT" + "Sun, 23 Feb 2020 23:21:29 GMT" ], "Expires": [ "-1" @@ -3234,16 +5215,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3254,7 +5235,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3263,25 +5244,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91191d59-5a60-457c-8d78-72280b35957e" + "74c4eeb6-3c37-43c3-b6c2-1ab8b7e5d014" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11936" ], "x-ms-correlation-request-id": [ - "2cecb791-bdab-4e94-97b0-7f3a0d49702a" + "ede86f08-0438-4b25-9bec-3a3c74386e3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T025922Z:2cecb791-bdab-4e94-97b0-7f3a0d49702a" + "WESTUS:20200223T232229Z:ede86f08-0438-4b25-9bec-3a3c74386e3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:59:22 GMT" + "Sun, 23 Feb 2020 23:22:29 GMT" ], "Expires": [ "-1" @@ -3294,16 +5275,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3314,7 +5295,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3323,25 +5304,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7aa5f98-3864-43cf-bf7e-f2816e5b673c" + "bf656df6-512b-408f-ad80-da97d5382abd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11935" ], "x-ms-correlation-request-id": [ - "aae35062-9eeb-4dc2-b8ad-4cffc7e6a9a5" + "5504364f-4676-4ed0-97a8-1e91d5a7bc66" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030022Z:aae35062-9eeb-4dc2-b8ad-4cffc7e6a9a5" + "WESTUS:20200223T232330Z:5504364f-4676-4ed0-97a8-1e91d5a7bc66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:00:22 GMT" + "Sun, 23 Feb 2020 23:23:29 GMT" ], "Expires": [ "-1" @@ -3354,16 +5335,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3374,7 +5355,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3383,25 +5364,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa2d50bb-6dd7-450e-b2ef-7cbb20addc46" + "d58a9b33-f306-4986-8331-b8b3778747a2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11934" ], "x-ms-correlation-request-id": [ - "01ea5d08-ce70-4a82-a407-e98d721a6998" + "f2f15990-4b88-4c3f-8fab-33314ce04262" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030123Z:01ea5d08-ce70-4a82-a407-e98d721a6998" + "WESTUS:20200223T232430Z:f2f15990-4b88-4c3f-8fab-33314ce04262" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:01:22 GMT" + "Sun, 23 Feb 2020 23:24:30 GMT" ], "Expires": [ "-1" @@ -3414,16 +5395,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3434,7 +5415,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3443,25 +5424,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5f550f4-ee17-487d-aefc-43b8a9bd8c22" + "f329784e-39c5-45c3-bbbe-e947b50a0331" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], "x-ms-correlation-request-id": [ - "e98ea872-985a-4662-b418-6d37f1e69fab" + "f01f8745-34ae-460d-8c35-f5738592a359" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030223Z:e98ea872-985a-4662-b418-6d37f1e69fab" + "WESTUS:20200223T232530Z:f01f8745-34ae-460d-8c35-f5738592a359" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:02:23 GMT" + "Sun, 23 Feb 2020 23:25:29 GMT" ], "Expires": [ "-1" @@ -3474,16 +5455,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3494,7 +5475,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3503,25 +5484,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "774afc90-06bd-4db6-891e-288edc3b9487" + "8263a218-10e6-483e-9bc4-729cd1fc7884" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11937" ], "x-ms-correlation-request-id": [ - "cc350172-ecf4-4ac2-8886-4b40df569c55" + "5dda2e62-7e1e-4714-bb53-cc667d1e6ead" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030324Z:cc350172-ecf4-4ac2-8886-4b40df569c55" + "WESTUS:20200223T232630Z:5dda2e62-7e1e-4714-bb53-cc667d1e6ead" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:03:24 GMT" + "Sun, 23 Feb 2020 23:26:30 GMT" ], "Expires": [ "-1" @@ -3534,16 +5515,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3554,7 +5535,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3563,25 +5544,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b0504c3-7d5a-48e2-bbc2-784c421b6b31" + "5f665c48-9782-4172-942c-490de075e978" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11936" ], "x-ms-correlation-request-id": [ - "6f661994-8f97-406e-8f41-ec36ab5c1c73" + "e90e40e2-ff36-4c04-8140-982ab27ea7c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030424Z:6f661994-8f97-406e-8f41-ec36ab5c1c73" + "WESTUS:20200223T232731Z:e90e40e2-ff36-4c04-8140-982ab27ea7c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:04:24 GMT" + "Sun, 23 Feb 2020 23:27:30 GMT" ], "Expires": [ "-1" @@ -3594,16 +5575,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3614,7 +5595,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3623,25 +5604,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "552c25aa-a2aa-46e6-b94f-fe57b8d49e9b" + "01004a8e-1c1d-4443-8cc7-2a733113276b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11935" ], "x-ms-correlation-request-id": [ - "5f73441a-f350-4b32-9603-2c72864dedec" + "ebaf8100-204b-4422-82fe-0e45abf2ebc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030524Z:5f73441a-f350-4b32-9603-2c72864dedec" + "WESTUS:20200223T232831Z:ebaf8100-204b-4422-82fe-0e45abf2ebc0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:05:24 GMT" + "Sun, 23 Feb 2020 23:28:31 GMT" ], "Expires": [ "-1" @@ -3654,16 +5635,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3674,7 +5655,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3683,25 +5664,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "612d4b4e-1132-4a82-9f05-c53e3d4fa6b6" + "64e23532-6428-4912-8fd9-7f645fdc9094" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11934" ], "x-ms-correlation-request-id": [ - "70290e97-9382-4496-8f19-dc5353bd36ed" + "64b08c91-53fc-41b8-9558-a725ef40a5ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030625Z:70290e97-9382-4496-8f19-dc5353bd36ed" + "WESTUS:20200223T232931Z:64b08c91-53fc-41b8-9558-a725ef40a5ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:06:25 GMT" + "Sun, 23 Feb 2020 23:29:30 GMT" ], "Expires": [ "-1" @@ -3714,16 +5695,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3734,7 +5715,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3743,25 +5724,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3abaade8-db23-406c-829c-e1c829874e0d" + "143282ab-da2e-492d-b26e-000816e41e64" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11938" ], "x-ms-correlation-request-id": [ - "f1f46055-e266-4e0e-9ef7-7384205eb15f" + "c73d467e-4970-497d-a9d6-3232ad0a6427" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030725Z:f1f46055-e266-4e0e-9ef7-7384205eb15f" + "WESTUS:20200223T233031Z:c73d467e-4970-497d-a9d6-3232ad0a6427" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:07:24 GMT" + "Sun, 23 Feb 2020 23:30:31 GMT" ], "Expires": [ "-1" @@ -3774,16 +5755,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3794,7 +5775,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3803,25 +5784,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d083fe0-de4c-4d00-bf7a-e733e86690e0" + "92c7998c-1b59-4791-b942-07d7edb90ed7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], "x-ms-correlation-request-id": [ - "5502f69b-4a6d-4156-872e-479c7eb76609" + "92f13463-ac9f-49dc-99ee-5d4702d77637" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030825Z:5502f69b-4a6d-4156-872e-479c7eb76609" + "WESTUS:20200223T233132Z:92f13463-ac9f-49dc-99ee-5d4702d77637" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:08:25 GMT" + "Sun, 23 Feb 2020 23:31:31 GMT" ], "Expires": [ "-1" @@ -3834,16 +5815,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3854,7 +5835,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3863,25 +5844,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51d6f8c0-d2ed-4b1a-8f4a-87128ce62665" + "eff5cd6e-00d0-4fc7-b732-c838c327d635" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11936" ], "x-ms-correlation-request-id": [ - "bde128c2-24ab-4076-b914-e0bc4e618b02" + "c7514e10-77c6-42f0-92bf-70291b0d1014" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T030926Z:bde128c2-24ab-4076-b914-e0bc4e618b02" + "WESTUS:20200223T233232Z:c7514e10-77c6-42f0-92bf-70291b0d1014" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:09:26 GMT" + "Sun, 23 Feb 2020 23:32:32 GMT" ], "Expires": [ "-1" @@ -3894,16 +5875,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X0FjdF8xZDdhM2UyNw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDBGamRGOHhaRGRoTTJVeU53PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9BY3RfYTg2OWE4Yg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOUJZM1JmWVRnMk9XRTRZZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3917,28 +5898,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7dfba201-b0b9-491d-8c11-f40fac53b741" + "a07eaddb-d8ed-41d2-9139-c689268fb5bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11935" ], "x-ms-correlation-request-id": [ - "cf3b4d15-c3fb-4ff7-95a6-23f2cd1a2fac" + "588aa754-7a9c-4886-b238-22e2ecf85de6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031026Z:cf3b4d15-c3fb-4ff7-95a6-23f2cd1a2fac" + "WESTUS:20200223T233332Z:588aa754-7a9c-4886-b238-22e2ecf85de6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:10:25 GMT" + "Sun, 23 Feb 2020 23:33:32 GMT" ], "Content-Length": [ - "1936" + "1997" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3947,26 +5928,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246\",\r\n \"name\": \"ps3246\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/auU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T02:39:54.3012885Z\",\r\n \"gatewayUrl\": \"https://ps3246.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3246-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3246.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3246.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3246.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3246.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.116.252\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316\",\r\n \"name\": \"ps8316\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjq0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T22:50:19.0532744Z\",\r\n \"gatewayUrl\": \"https://ps8316.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8316-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8316.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8316.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8316.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8316.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8316.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.41.107\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/getssotoken?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9nZXRzc290b2tlbj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/getssotoken?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvZ2V0c3NvdG9rZW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8702e4c5-c95d-4b77-a06b-66ecbe6669d1" + "59670b73-d23b-4233-b852-be0d30f4ca61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3980,7 +5961,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c62d68c-d2cc-420e-8627-79483ddca5b9" + "38069a08-98c2-4944-bd99-b80957b355ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3989,19 +5970,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "a05c0cd3-7148-4f76-a31f-38bb60158f19" + "2e93f6b2-d47e-4e95-a643-aa58d942f48a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031026Z:a05c0cd3-7148-4f76-a31f-38bb60158f19" + "WESTUS:20200223T233332Z:2e93f6b2-d47e-4e95-a643-aa58d942f48a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:10:26 GMT" + "Sun, 23 Feb 2020 23:33:32 GMT" ], "Content-Length": [ - "198" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4010,7 +5991,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"redirectUri\": \"https://ps3246.portal.azure-api.net:443/signin-sso?token=1%26201905080315%26vsKrrt8jUo5W%2b9Kfogee1U%2f4YVN5irN5rkyAntVcPkPj8jWjMBjO55YlqXtEgrBvd%2fv%2fC%2fJUGSyLc4%2fMwpXPGA%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"redirectUri\": \"https://ps8316.portal.azure-api.net:443/signin-sso?token=1%26202002232338%26EeRlZUfjby%2fL3aJETKdfXePEcROOqcCfb15XOEV0WsZXJ2BwE3Ig2ltz1Hl2rjuGxszdouRnyOrSNj%2flQTGepQ%3d%3d\"\r\n}", "StatusCode": 200 }, { @@ -4020,16 +6001,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0800d9b-1df4-4546-a6d1-6ea845233cf0" + "b38dedcf-d9da-44f1-9c50-e49ddc2683d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4039,41 +6020,77 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "8095be48-93fa-4c03-bc25-d971bf55d788" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-original-request-ids": [ + "9ac268fd-f03b-4d0c-9ebe-16b9eebcb489", + "f7f10536-5794-4dc8-9ca0-d20d4efbbe59", + "5f253cd6-0901-484a-b618-9de9b8c9b509", + "32ad214e-1e9d-4304-a7f9-2c5f2cb6399c", + "e93bd628-4047-48d1-8dec-248bfc67efd3", + "ad75ae37-46c6-45b8-a160-57df27f05457", + "a9a4627c-2239-4de9-acee-55cec5edbfd3", + "9a2ec4ba-238d-4492-9c21-7bbf726779e3", + "96a145ef-0fd7-4559-9c50-159f4138bf84", + "b97a9e58-7363-48e7-ae79-6290fd83909d", + "3382e5f8-00d4-4e50-a383-4201f7ad85a3", + "e847242d-209b-4ec8-a774-44bc242b67ec", + "45022ba9-2e31-4e6a-b4ae-b29ca91c768d", + "60d35573-7ce6-4c39-8e7b-03c8dd965f8c", + "99db4866-6c95-4476-b00a-d1c54012602e", + "14f209ce-cc1a-4835-b918-76d0c1d2fb1c", + "2d9d0fd1-eac5-41dd-ac21-f6416f0fcaff", + "108fb048-864e-459a-b7db-223fc51671e3", + "39e9b858-3467-431a-ad0e-2ad1c2c84be7", + "aa4e38dc-eb75-4238-a22c-6a6ac026d52b", + "5ba366b4-e17f-4ec4-a9d8-bd081540f986", + "46ad2b58-21c3-49df-8dcd-aff1b17a872d", + "74e5f242-15c0-4bd7-8f21-b22feb6d9de2", + "406a2583-1b5b-4e15-88a3-4118773a35b8", + "1d4b7567-a1c1-44b9-ac06-51edde9b81df", + "e8cc6386-a76e-45a8-9765-712806f6eb22", + "2fa7f8c4-1dfc-4b43-993f-ebcf71502e33", + "83798354-0427-403a-af9e-68af2526a2ab", + "3357d96d-cfe4-4a30-aa6b-a1f4777b9305", + "7295b1ff-e117-422b-b2c4-1469dc1a2d4e", + "3aaa187f-5a16-411d-a673-cfdc11032df1", + "6fbdf324-3d2d-4710-a476-b7844d735bf4", + "508b3793-2fb8-46a3-b487-addaae52b6c8", + "d8760a03-e4f2-49e9-a343-e9ad5c398d95", + "61c99928-edf9-49df-8415-fe32b81b0fa5", + "c35bc05e-161e-4d32-9a88-f91c98d4821d", + "ae79c307-1f98-44e0-9cc7-0408af8d1561" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11934" + ], + "x-ms-request-id": [ + "3f76faad-6627-4459-927c-2cde4e36169c" ], "x-ms-correlation-request-id": [ - "d061b673-a290-47e3-9fad-ab409104d1c5" + "3f76faad-6627-4459-927c-2cde4e36169c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031027Z:d061b673-a290-47e3-9fad-ab409104d1c5" + "WESTUS:20200223T233334Z:3f76faad-6627-4459-927c-2cde4e36169c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:10:26 GMT" - ], - "Content-Length": [ - "134422" + "Sun, 23 Feb 2020 23:33:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "278701" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohndiagnosticlogs\",\r\n \"name\": \"jijohndiagnosticlogs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TQg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"MSFT\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-02-01T20:53:45.1477718Z\",\r\n \"gatewayUrl\": \"https://jijohndiagnosticlogs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohndiagnosticlogs-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohndiagnosticlogs.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohndiagnosticlogs.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohndiagnosticlogs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohndiagnosticlogs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.195.114\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicedefaultpool\",\r\n \"name\": \"rpbvttestservicedefaultpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF5EHw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Samirs Company\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:42:16.6832196Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicedefaultpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicedefaultpool-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicedefaultpool.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicedefaultpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicedefaultpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicedefaultpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.166.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebtest\",\r\n \"name\": \"glebtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAF9AVw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"asdasdasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-12-12T19:51:03.6604132Z\",\r\n \"gatewayUrl\": \"https://glebtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://glebtest-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://glebtest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://glebtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://glebtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.208.40\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"5d6e26a0-39b6-4030-bd09-6bd99f6fae71\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/az-appgateway\",\r\n \"name\": \"az-appgateway\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF49fA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-04-20T16:27:03.5522427Z\",\r\n \"gatewayUrl\": \"https://az-appgateway.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://az-appgateway-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://az-appgateway.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://az-appgateway.management.azure-api.net\",\r\n \"scmUrl\": \"https://az-appgateway.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"az-appgateway.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.43.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-gfs-smtp/providers/Microsoft.ApiManagement/service/kjoshigfssmtp\",\r\n \"name\": \"kjoshigfssmtp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TRI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"Test Org\",\r\n \"notificationSenderEmail\": \"publisher@kedar.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-08-28T23:48:16.9176804Z\",\r\n \"gatewayUrl\": \"https://kjoshigfssmtp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshigfssmtp-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshigfssmtp.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshigfssmtp.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshigfssmtp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshigfssmtp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxyhostname1-prod.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-current.vault.azure.net/secrets/current-tenant-ssl/d3c3513bccde462696763995f602b4f2\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:45:06-07:00\",\r\n \"thumbprint\": \"408D1EEB5AC5776D64698F560127A14BC6827910\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.88.16.248\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f4171f27-55eb-4e9d-879f-bd6bcf1dc472\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/APIM-Demo/providers/Microsoft.ApiManagement/service/apiserviceq6bpj5e3i47d4\",\r\n \"name\": \"apiserviceq6bpj5e3i47d4\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF9AJY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi-apim-demo\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-20T19:51:34.9530398Z\",\r\n \"gatewayUrl\": \"https://apiserviceq6bpj5e3i47d4.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apiserviceq6bpj5e3i47d4-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apiserviceq6bpj5e3i47d4.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://apiserviceq6bpj5e3i47d4.management.azure-api.net\",\r\n \"scmUrl\": \"https://apiserviceq6bpj5e3i47d4.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apiserviceq6bpj5e3i47d4.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.40.88.46\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/aztest\",\r\n \"name\": \"aztest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"cffd\": \"acs-dcos-agent-private-1646DB44-vmss0\",\r\n \"My lovely tag\": \"My lovely tag value\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TFg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"API Management UXX\",\r\n \"notificationSenderEmail\": \"contoso@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-24T21:24:07.2813367Z\",\r\n \"gatewayUrl\": \"https://aztest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://aztest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://aztest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://aztest.management.azure-api.net\",\r\n \"scmUrl\": \"https://aztest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aztest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.136.132\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"cb0794bd-0852-40e0-a25e-63f29b169c36\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-east-us-2-euap/providers/Microsoft.ApiManagement/service/kjoshieastus2euap\",\r\n \"name\": \"kjoshieastus2euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAF8TQo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi east us 2 euap\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-30T00:36:59.6217449Z\",\r\n \"gatewayUrl\": \"https://kjoshieastus2euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshieastus2euap-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshieastus2euap.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshieastus2euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshieastus2euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieastus2euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.66.175\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF89aM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-05-09T20:41:14.4944573Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.177.60\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246\",\r\n \"name\": \"ps3246\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/auU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T02:39:54.3012885Z\",\r\n \"gatewayUrl\": \"https://ps3246.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3246-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3246.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3246.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3246.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3246.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.116.252\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/template-test-smapi-WestUS/providers/Microsoft.ApiManagement/service/templatetestsmapientities\",\r\n \"name\": \"templatetestsmapientities\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TFI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"templatetestsmapientities\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-05T22:52:50.078668Z\",\r\n \"gatewayUrl\": \"https://templatetestsmapientities.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://templatetestsmapientities-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://templatetestsmapientities.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://templatetestsmapientities.management.azure-api.net\",\r\n \"scmUrl\": \"https://templatetestsmapientities.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"templatetestsmapientities.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.216.128\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-flower\",\r\n \"name\": \"tweiss-flower\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF9Y3o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"APIM Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-01T19:15:32.2304318Z\",\r\n \"gatewayUrl\": \"https://tweiss-flower.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-flower-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-flower.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-flower.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-flower.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-flower.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.70.251\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vifedoRGroupTest/providers/Microsoft.ApiManagement/service/vifedodev\",\r\n \"name\": \"vifedodev\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF5f64=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"ttt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-26T18:25:55.2706068Z\",\r\n \"gatewayUrl\": \"https://vifedodev.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedodev-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedodev.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedodev.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedodev.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedodev.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.123.225\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Levy0508m11rg/providers/Microsoft.ApiManagement/service/Levy0508m11\",\r\n \"name\": \"Levy0508m11\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/Zyk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"Levy0508m11org\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T01:41:33.8488712Z\",\r\n \"gatewayUrl\": \"https://levy0508m11.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levy0508m11-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levy0508m11.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levy0508m11.management.azure-api.net\",\r\n \"scmUrl\": \"https://levy0508m11.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levy0508m11.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.160.116\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/LevyAPITest02RG/providers/Microsoft.ApiManagement/service/LevyAPITest02\",\r\n \"name\": \"LevyAPITest02\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF5vTk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"LevyAPITest02org\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-10-19T09:40:27.838837Z\",\r\n \"gatewayUrl\": \"https://levyapitest02.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levyapitest02-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levyapitest02.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levyapitest02.management.azure-api.net\",\r\n \"scmUrl\": \"https://levyapitest02.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levyapitest02.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.76.46.43\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-sf-dev/providers/Microsoft.ApiManagement/service/apimsfdev\",\r\n \"name\": \"apimsfdev\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8zTA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"anluong@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-30T00:02:42.5842115Z\",\r\n \"gatewayUrl\": \"https://apimsfdev.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimsfdev-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimsfdev.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimsfdev.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimsfdev.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimsfdev.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.180.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3915/providers/Microsoft.ApiManagement/service/ps7152\",\r\n \"name\": \"ps7152\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF9qlg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-02T01:39:26.6955839Z\",\r\n \"gatewayUrl\": \"https://ps7152.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps7152-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps7152.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps7152.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps7152.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7152.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.162.239.35\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.23.0.7\"\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"52.171.218.150\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.24.0.6\"\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://ps7152-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-halley\",\r\n \"name\": \"tweiss-halley\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAF/W74=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"Halley\",\r\n \"notificationSenderEmail\": \"taylor.weiss.47@gmail.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-12-19T22:23:13.7075358Z\",\r\n \"gatewayUrl\": \"https://tweiss-halley.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-halley-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-halley.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-halley.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-halley.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-halley.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.217.233\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/LevyAPIMTestRG/providers/Microsoft.ApiManagement/service/LevyAPIMTest\",\r\n \"name\": \"LevyAPIMTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"apitag000\": \"value000\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF8r/4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"LevyAPIMTestOrg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-14T01:28:55.3486481Z\",\r\n \"gatewayUrl\": \"https://levyapimtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levyapimtest-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levyapimtest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levyapimtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://levyapimtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levyapimtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.87.41.209\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.ApiManagement/service/vpnpremium\",\r\n \"name\": \"vpnpremium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAF8TRo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-04-12T00:20:15.6018952Z\",\r\n \"gatewayUrl\": \"https://vpnpremium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vpnpremium.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://vpnpremium.management.azure-api.net\",\r\n \"scmUrl\": \"https://vpnpremium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vpnpremium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.94.204.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"66f34ee9-17bd-48d3-82d3-fbdfe9661aa9\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimanagement-cors-proxy-df/providers/Microsoft.ApiManagement/service/apimanagement-cors-proxy-df\",\r\n \"name\": \"apimanagement-cors-proxy-df\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8THA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Azure API Management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-14T01:35:21.371366Z\",\r\n \"gatewayUrl\": \"https://apimanagement-cors-proxy-df.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimanagement-cors-proxy-df-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimanagement-cors-proxy-df.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimanagement-cors-proxy-df.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimanagement-cors-proxy-df.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimanagement-cors-proxy-df.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.106.204\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/devenv\",\r\n \"name\": \"devenv\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TA0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-05-05T23:07:15.5827029Z\",\r\n \"gatewayUrl\": \"https://devenv.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devenv-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devenv.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://devenv.management.azure-api.net\",\r\n \"scmUrl\": \"https://devenv.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devenv.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.94.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.Network/virtualNetworks/azvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/testapiservice5\",\r\n \"name\": \"testapiservice5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF8TEg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"testapiservice5@testapiservice5.com\",\r\n \"publisherName\": \"testapiservice5\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-14T03:18:01.7544432Z\",\r\n \"gatewayUrl\": \"https://testapiservice5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice5-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice5.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice5.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.72.73.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7853/providers/Microsoft.ApiManagement/service/ps5023\",\r\n \"name\": \"ps5023\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF9q2g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-02T13:52:39.473899Z\",\r\n \"gatewayUrl\": \"https://ps5023.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps5023-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps5023.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps5023.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps5023.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps5023.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.0.16\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Special-IP-Assigned-RG-Do-Not-Delete/providers/Microsoft.ApiManagement/service/kjoshisnoutagescus\",\r\n \"name\": \"kjoshisnoutagescus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAF8TRw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi south central us\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-05T16:57:56.8923548Z\",\r\n \"gatewayUrl\": \"https://kjoshisnoutagescus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisnoutagescus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisnoutagescus.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisnoutagescus.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisnoutagescus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisnoutagescus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.214.49.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/testapiservice1\",\r\n \"name\": \"testapiservice1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF8TI4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-13T15:30:56.1167067Z\",\r\n \"gatewayUrl\": \"https://testapiservice1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice1-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice1.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice1.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.107.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/accessibility\",\r\n \"name\": \"accessibility\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAF7iq4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-12T22:41:49.8713478Z\",\r\n \"gatewayUrl\": \"https://accessibility.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://accessibility-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://accessibility.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://accessibility.management.azure-api.net\",\r\n \"scmUrl\": \"https://accessibility.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"accessibility.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.65.192.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg3/providers/Microsoft.ApiManagement/service/glebrg3apim\",\r\n \"name\": \"glebrg3apim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAF/XSQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"kjhjkhjkh\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-13T23:02:12.8273491Z\",\r\n \"gatewayUrl\": \"https://glebrg3apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://glebrg3apim-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://glebrg3apim.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://glebrg3apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://glebrg3apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebrg3apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"test.glebsdomain.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-09-22T00:00:00-07:00\",\r\n \"thumbprint\": \"ED953A23DBE6D9D35A34CAE23C9C708A576A77B3\",\r\n \"subject\": \"CN=*.glebsdomain.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.15.53\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Levy0506m11rg/providers/Microsoft.ApiManagement/service/Levy0506m11\",\r\n \"name\": \"Levy0506m11\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF+0Ug=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"Levy0506m11org\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-06T01:59:50.8507539Z\",\r\n \"gatewayUrl\": \"https://levy0506m11.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levy0506m11-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levy0506m11.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levy0506m11.management.azure-api.net\",\r\n \"scmUrl\": \"https://levy0506m11.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levy0506m11.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.121.61.120\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2019-11-16T18:54:27-08:00\",\r\n \"thumbprint\": \"34103B54CE82B1014A5A3E7A0F315CD9C4355722\",\r\n \"subject\": \"CN=*.apim.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/API-Management-in-VNET-with-Gateway-Test/providers/Microsoft.ApiManagement/service/samirappgwapimtest\",\r\n \"name\": \"samirappgwapimtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAF8TGI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-28T03:34:01.3019394Z\",\r\n \"gatewayUrl\": \"https://samirappgwapimtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://samirappgwapimtest-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://samirappgwapimtest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://samirappgwapimtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://samirappgwapimtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"samirappgwapimtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalgw.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:45:06-07:00\",\r\n \"thumbprint\": \"408D1EEB5AC5776D64698F560127A14BC6827910\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apigwproxy.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:45:06-07:00\",\r\n \"thumbprint\": \"408D1EEB5AC5776D64698F560127A14BC6827910\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.84.188.196\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"192.168.8.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/API-Management-in-VNET-with-Gateway-Test/providers/Microsoft.Network/virtualNetworks/appgwvnet/subnets/apim02\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Central-US/providers/Microsoft.ApiManagement/service/testwestcentralus\",\r\n \"name\": \"testwestcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAF8TEI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"testwestcentralus\",\r\n \"notificationSenderEmail\": \"foobar@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-11-29T19:30:21.8283702Z\",\r\n \"gatewayUrl\": \"https://testwestcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testwestcentralus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testwestcentralus.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://testwestcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://testwestcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testwestcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.17.128\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/template-mulit-hostname-westus/providers/Microsoft.ApiManagement/service/template-multihostname\",\r\n \"name\": \"template-multihostname\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TFY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"template-multihostname\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-06T00:56:17.4097872Z\",\r\n \"gatewayUrl\": \"https://template-multihostname.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://template-multihostname-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://template-multihostname.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://template-multihostname.management.azure-api.net\",\r\n \"scmUrl\": \"https://template-multihostname.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"template-multihostname.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"apim.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portaltemplatehostname1-prod.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2018-03-17T14:55:07-07:00\",\r\n \"thumbprint\": \"DE57B67BA63D21E925DA8BEFA436E6B7553A4C19\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxy.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-01-16T15:31:17-08:00\",\r\n \"thumbprint\": \"179CC2ABF9B4BF045EFDD368417E5B12B23B3329\",\r\n \"subject\": \"CN=*.apim.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"foo.contoso.com\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://contosoapimkeyvault.vault.azure.net/secrets/contosoapis\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-03-01T16:03:10-08:00\",\r\n \"thumbprint\": \"B4069E4778DAE0DDF3D709BF54AFB5365842B5D7\",\r\n \"subject\": \"CN=*.contoso.com\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"foo2.contoso.com\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://contosoapimkeyvault.vault.azure.net/secrets/contosoapis\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-03-01T16:03:10-08:00\",\r\n \"thumbprint\": \"B4069E4778DAE0DDF3D709BF54AFB5365842B5D7\",\r\n \"subject\": \"CN=*.contoso.com\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.155.105\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"52.168.21.61\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://template-multihostname-eastus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"eb8ad1fc-997a-4bd3-b3f9-2d1d9132f9f2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/azapimtest\",\r\n \"name\": \"azapimtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF49jo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"notification@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-17T22:50:56.189441Z\",\r\n \"gatewayUrl\": \"https://azapimtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://azapimtest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://azapimtest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://azapimtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://azapimtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"azapimtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.18.118\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/madeline-test/providers/Microsoft.ApiManagement/service/MadelineTestApim\",\r\n \"name\": \"MadelineTestApim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF5Bbc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"magordon@microsoft.com\",\r\n \"publisherName\": \"Test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-04T00:41:23.3430464Z\",\r\n \"gatewayUrl\": \"https://madelinetestapim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://madelinetestapim-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://madelinetestapim.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://madelinetestapim.management.azure-api.net\",\r\n \"scmUrl\": \"https://madelinetestapim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"madelinetestapim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.221.191\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/mutualcert\",\r\n \"name\": \"mutualcert\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TD4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apiuser@live.com\",\r\n \"publisherName\": \"apiuser\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-03T05:39:51.0562992Z\",\r\n \"gatewayUrl\": \"https://mutualcert.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mutualcert-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mutualcert.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://mutualcert.management.azure-api.net\",\r\n \"scmUrl\": \"https://mutualcert.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mutualcert.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mutualcert.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2018-03-17T14:55:07-07:00\",\r\n \"thumbprint\": \"DE57B67BA63D21E925DA8BEFA436E6B7553A4C19\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.88.191.200\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/rpbvttestservicevippool\",\r\n \"name\": \"rpbvttestservicevippool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF9Q4k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:43:21.283724Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicevippool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicevippool-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicevippool.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicevippool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicevippool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicevippool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.22.122\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022\",\r\n \"name\": \"ps3022\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/aT0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T02:12:22.775763Z\",\r\n \"gatewayUrl\": \"https://ps3022.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3022-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3022.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3022.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3022.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3022.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.102.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-reserved-ip/providers/Microsoft.ApiManagement/service/apim-reserved-ip\",\r\n \"name\": \"apim-reserved-ip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAF8TGo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-27T23:49:34.8723514Z\",\r\n \"gatewayUrl\": \"https://apim-reserved-ip.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-reserved-ip-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-reserved-ip.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-reserved-ip.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-reserved-ip.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-reserved-ip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.151.16.119\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicetestpool\",\r\n \"name\": \"rpbvttestservicetestpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF8TCk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"apimanagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-09-27T03:54:47.7889108Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicetestpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicetestpool-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicetestpool.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicetestpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicetestpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicetestpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.217.205\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/testapiservice3\",\r\n \"name\": \"testapiservice3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TBk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mtuchkov@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-07T23:22:14.4260358Z\",\r\n \"gatewayUrl\": \"https://testapiservice3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice3.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice3.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-appGateway/providers/Microsoft.ApiManagement/service/kjoshiapiminternal\",\r\n \"name\": \"kjoshiapiminternal\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF9AJI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi publisher\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-02-02T01:42:09.1268424Z\",\r\n \"gatewayUrl\": \"https://kjoshiapiminternal.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiapiminternal-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiapiminternal.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiapiminternal.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiapiminternal.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiapiminternal.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimgatewaytest.preview.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:51:34-07:00\",\r\n \"thumbprint\": \"B4330123DBAB6DF5EDE1C8BE8C81F35E84493476\",\r\n \"subject\": \"CN=*.preview.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"apimgatewayportal.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:45:06-07:00\",\r\n \"thumbprint\": \"408D1EEB5AC5776D64698F560127A14BC6827910\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.74\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.20.0.5\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-appGateway/providers/Microsoft.Network/virtualNetworks/apim-appGateway-vnet/subnets/apim-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/LevyAPIMabcRG/providers/Microsoft.ApiManagement/service/LevyAPIMabc\",\r\n \"name\": \"LevyAPIMabc\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF5dHw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"LevyAPIMabcORG\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-25T02:34:21.0207347Z\",\r\n \"gatewayUrl\": \"https://levyapimabc.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levyapimabc-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levyapimabc.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levyapimabc.management.azure-api.net\",\r\n \"scmUrl\": \"https://levyapimabc.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levyapimabc.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.100.85.6\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2019-11-16T18:54:27-08:00\",\r\n \"thumbprint\": \"34103B54CE82B1014A5A3E7A0F315CD9C4355722\",\r\n \"subject\": \"CN=*.apim.net\"\r\n }\r\n },\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2019-11-16T18:54:27-08:00\",\r\n \"thumbprint\": \"34103B54CE82B1014A5A3E7A0F315CD9C4355722\",\r\n \"subject\": \"CN=*.apim.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-worldcup\",\r\n \"name\": \"tweiss-worldcup\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TCU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"taylor.weiss@comcast.net\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-07-19T19:24:30.0731987Z\",\r\n \"gatewayUrl\": \"https://tweiss-worldcup.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-worldcup-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-worldcup.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-worldcup.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-worldcup.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-worldcup.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.118.145.107\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/placeholdertest-aus\",\r\n \"name\": \"placeholdertest-aus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAAbrg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-01T05:03:21.7708485Z\",\r\n \"gatewayUrl\": \"https://placeholdertest-aus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"placeholdertest-aus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/kjoshitest666\",\r\n \"name\": \"kjoshitest666\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAAbZA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-26T00:41:14.9228729Z\",\r\n \"gatewayUrl\": \"https://kjoshitest666.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshitest666.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AUE-Canary\",\r\n \"name\": \"AUE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAAbQg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T19:35:39.0272012Z\",\r\n \"gatewayUrl\": \"https://aue-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aue-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/AzureFunctions-AustraliaEast/providers/Microsoft.ApiManagement/service/kjoshiauseastconsumption\",\r\n \"name\": \"kjoshiauseastconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAAbP0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi aus east\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-01T17:10:08.0959814Z\",\r\n \"gatewayUrl\": \"https://kjoshiauseastconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiauseastconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WEU-Canary\",\r\n \"name\": \"WEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAAj2s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:46.9010517Z\",\r\n \"gatewayUrl\": \"https://weu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"weu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/kjoshiwestusactivationtime\",\r\n \"name\": \"kjoshiwestusactivationtime\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVXA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T21:37:56.3857254Z\",\r\n \"gatewayUrl\": \"https://kjoshiwestusactivationtime.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwestusactivationtime.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.ApiManagement/service/vvktest\",\r\n \"name\": \"vvktest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWCI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"vvktest\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-18T02:55:19.1493932Z\",\r\n \"gatewayUrl\": \"https://vvktest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vvktest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gconsumption\",\r\n \"name\": \"gconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVs8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"gdfgdfg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-27T19:18:55.5935623Z\",\r\n \"gatewayUrl\": \"https://gconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/mkimtestzip\",\r\n \"name\": \"mkimtestzip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVSQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T04:09:11.698683Z\",\r\n \"gatewayUrl\": \"https://mkimtestzip.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimtestzip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS-Canary\",\r\n \"name\": \"WUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVpY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:57:07.2773048Z\",\r\n \"gatewayUrl\": \"https://wus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/serverless\",\r\n \"name\": \"serverless\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWCY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-19T21:41:06.5566242Z\",\r\n \"gatewayUrl\": \"https://serverless.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"serverless.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/kjoshibayconsumptiontest\",\r\n \"name\": \"kjoshibayconsumptiontest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVfk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-30T18:29:36.0248608Z\",\r\n \"gatewayUrl\": \"https://kjoshibayconsumptiontest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshibayconsumptiontest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption\",\r\n \"name\": \"jijohn-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAV/k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-19T23:08:06.4716339Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-test1\",\r\n \"name\": \"galin-test1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWIg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-20T19:53:35.0666232Z\",\r\n \"gatewayUrl\": \"https://galin-test1.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-test1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"52dc5eb3-e5bb-4e89-b91f-83fa2fbea523\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NCUS-Canary\",\r\n \"name\": \"NCUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAblo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:24.8094208Z\",\r\n \"gatewayUrl\": \"https://ncus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ncus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/devilversionapim\",\r\n \"name\": \"devilversionapim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAbak=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"devil version apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-19T23:28:27.3885231Z\",\r\n \"gatewayUrl\": \"https://devilversionapim.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devilversionapim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/kjoshincus\",\r\n \"name\": \"kjoshincus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAbZg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-06T00:33:14.4663177Z\",\r\n \"gatewayUrl\": \"https://kjoshincus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshincus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-northcentraltest\",\r\n \"name\": \"gleb-northcentraltest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAeXQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-27T05:30:48.0387377Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-northcentraltest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-prod-3\",\r\n \"name\": \"galin-prod-3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAdtw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-25T13:40:13.6027918Z\",\r\n \"gatewayUrl\": \"https://galin-prod-3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-prod-3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"908f8972-f245-4301-a92c-95ee7767c26e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/apimcoldstart\",\r\n \"name\": \"apimcoldstart\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAbsM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim cold start\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-15T22:46:02.8944291Z\",\r\n \"gatewayUrl\": \"https://apimcoldstart.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimcoldstart.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NEU-Canary\",\r\n \"name\": \"NEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAAjYs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:59:15.312131Z\",\r\n \"gatewayUrl\": \"https://neu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"neu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-bug-bash-pp2\",\r\n \"name\": \"jitin-bug-bash-pp2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"sku\": \"consumption\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAAjrY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-28T20:02:47.2274561Z\",\r\n \"gatewayUrl\": \"https://jitin-bug-bash-pp2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-bug-bash-pp2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SEA-Canary\",\r\n \"name\": \"SEA-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAAM9Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"SEA-Canary\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-12T00:56:05.1041042Z\",\r\n \"gatewayUrl\": \"https://sea-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sea-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshisoutheastasiaconsumption\",\r\n \"name\": \"kjoshisoutheastasiaconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANHk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi \",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-24T19:40:43.6388957Z\",\r\n \"gatewayUrl\": \"https://kjoshisoutheastasiaconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisoutheastasiaconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshisiteextension\",\r\n \"name\": \"kjoshisiteextension\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANAU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-24T19:54:27.2847632Z\",\r\n \"gatewayUrl\": \"https://kjoshisiteextension.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisiteextension.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshiseaconsumption\",\r\n \"name\": \"kjoshiseaconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANDQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-31T22:31:46.5381096Z\",\r\n \"gatewayUrl\": \"https://kjoshiseaconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiseaconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshiseaextensiontest\",\r\n \"name\": \"kjoshiseaextensiontest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANNo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi southeast\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-30T17:55:53.6631066Z\",\r\n \"gatewayUrl\": \"https://kjoshiseaextensiontest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiseaextensiontest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/mkimtestsiteext\",\r\n \"name\": \"mkimtestsiteext\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANMo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T04:10:37.3343255Z\",\r\n \"gatewayUrl\": \"https://mkimtestsiteext.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimtestsiteext.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-centralindia\",\r\n \"name\": \"jijohnn-regionalrp-centralindia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central India\",\r\n \"etag\": \"AAAAAAH1I2w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:25:24.5383496Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-centralindia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-centralindia-centralindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-centralindia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-centralindia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-centralindia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-centralindia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-centralindia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.172.213.161\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-uaenorth\",\r\n \"name\": \"jijohnn-regionalrp-uaenorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE North\",\r\n \"etag\": \"AAAAAAH1HxE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:27:50.7286984Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-uaenorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-uaenorth-uaenorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-uaenorth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-uaenorth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-uaenorth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-uaenorth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-uaenorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.123.209.208\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southafricawest\",\r\n \"name\": \"jijohnn-regionalrp-southafricawest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Africa West\",\r\n \"etag\": \"AAAAAAH1IkQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:27:06.6285979Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southafricawest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southafricawest-southafricawest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southafricawest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southafricawest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southafricawest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southafricawest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southafricawest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"102.133.75.197\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-francesouth\",\r\n \"name\": \"jijohnn-regionalrp-francesouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"France South\",\r\n \"etag\": \"AAAAAAH1I1I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:25:47.4785653Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-francesouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-francesouth-francesouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-francesouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-francesouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-francesouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-francesouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-francesouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.136.132.113\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-canadaeast\",\r\n \"name\": \"jijohnn-regionalrp-canadaeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAH1IaA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:25.2929229Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-canadaeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-canadaeast-canadaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-canadaeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-canadaeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-canadaeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-canadaeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-canadaeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.212.101\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Canada-East/providers/Microsoft.ApiManagement/service/kjoshicanadaeast\",\r\n \"name\": \"kjoshicanadaeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAH1R7s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"sdafds\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-20T22:55:06.3667158Z\",\r\n \"gatewayUrl\": \"https://kjoshicanadaeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshicanadaeast-canadaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshicanadaeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshicanadaeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshicanadaeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshicanadaeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshicanadaeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.224.96\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS2EUAP-Canary\",\r\n \"name\": \"EUS2EUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAAKEQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:13.9169127Z\",\r\n \"gatewayUrl\": \"https://eus2euap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus2euap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-eastus2euap\",\r\n \"name\": \"jijohnn-regionalrp-eastus2euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAABF1k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:15:31.877585Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-eastus2euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-eastus2euap-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-eastus2euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-eastus2euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-eastus2euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-eastus2euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-eastus2euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.225.176.92\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-australiacentral\",\r\n \"name\": \"jijohnn-regionalrp-australiacentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Central\",\r\n \"etag\": \"AAAAAAAARys=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:20:18.4012013Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-australiacentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-australiacentral-australiacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-australiacentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-australiacentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-australiacentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-australiacentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-australiacentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.39.57\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AusCentral-Canary\",\r\n \"name\": \"AusCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"etag\": \"AAAAAAAACCk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:44:40.2114897Z\",\r\n \"gatewayUrl\": \"https://auscentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"auscentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-germanywestcentral\",\r\n \"name\": \"jijohnn-regionalrp-germanywestcentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"AAAAAAACxYw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:48.4092914Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-germanywestcentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-germanywestcentral-germanywestcentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-germanywestcentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-germanywestcentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-germanywestcentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-germanywestcentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-germanywestcentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.116.233.34\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-west\",\r\n \"name\": \"igo-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAA1iY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-06T18:29:53.3821Z\",\r\n \"gatewayUrl\": \"https://igo-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-west-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.100.11\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-prod-5\",\r\n \"name\": \"galin-prod-5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"galini\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAA1qU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-04T22:09:34.068603Z\",\r\n \"gatewayUrl\": \"https://galin-prod-5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://galin-prod-5-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://galin-prod-5.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://galin-prod-5.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://galin-prod-5.management.azure-api.net\",\r\n \"scmUrl\": \"https://galin-prod-5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-prod-5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.96.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westcentralus\",\r\n \"name\": \"jijohnn-regionalrp-westcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAA1iQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:20:03.9384806Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westcentralus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.200.249\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-norwayeast\",\r\n \"name\": \"jijohnn-regionalrp-norwayeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Norway East\",\r\n \"etag\": \"AAAAAAAAQXY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:23:02.4838099Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-norwayeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-norwayeast-norwayeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-norwayeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-norwayeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-norwayeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-norwayeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-norwayeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.120.76.184\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-switzerlandnorth\",\r\n \"name\": \"jijohnn-regionalrp-switzerlandnorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland North\",\r\n \"etag\": \"AAAAAAACtGw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:23:26.3175251Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-switzerlandnorth-switzerlandnorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-switzerlandnorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.107.71.88\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-koreasouth\",\r\n \"name\": \"jijohnn-regionalrp-koreasouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Korea South\",\r\n \"etag\": \"AAAAAAAAdo0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:02.5073744Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-koreasouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-koreasouth-koreasouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-koreasouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-koreasouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-koreasouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-koreasouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-koreasouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.231.188.157\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestIndia-Canary\",\r\n \"name\": \"WestIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAACB8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:53.8127048Z\",\r\n \"gatewayUrl\": \"https://westindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westindia\",\r\n \"name\": \"jijohnn-regionalrp-westindia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAAyyk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:43.8857559Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westindia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westindia-westindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westindia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westindia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westindia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westindia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westindia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.211.142.92\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-koreacentral\",\r\n \"name\": \"jijohnn-regionalrp-koreacentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"AAAAAAAAj50=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:23.097937Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-koreacentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-koreacentral-koreacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-koreacentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-koreacentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-koreacentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-koreacentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-koreacentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.231.103.222\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/KoreaCentral-Canary\",\r\n \"name\": \"KoreaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"AAAAAAAACCQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:39.9581781Z\",\r\n \"gatewayUrl\": \"https://koreacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"koreacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southafricanorth\",\r\n \"name\": \"jijohnn-regionalrp-southafricanorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAArDk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:20:55.9500542Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southafricanorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southafricanorth-southafricanorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southafricanorth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southafricanorth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southafricanorth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southafricanorth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southafricanorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"102.133.239.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthAfricaNorth-Canary\",\r\n \"name\": \"SouthAfricaNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAACCc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:45:41.6554527Z\",\r\n \"gatewayUrl\": \"https://southafricanorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southafricanorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKWest-Canary\",\r\n \"name\": \"UKWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK West\",\r\n \"etag\": \"AAAAAAAACB8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:59:01.8019107Z\",\r\n \"gatewayUrl\": \"https://ukwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ukwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-ukwest\",\r\n \"name\": \"jijohnn-regionalrp-ukwest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UK West\",\r\n \"etag\": \"AAAAAAAA8UI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:53.6066318Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-ukwest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-ukwest-ukwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-ukwest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-ukwest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-ukwest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-ukwest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-ukwest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.140.228.210\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-brazilsouth\",\r\n \"name\": \"jijohnn-regionalrp-brazilsouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAAA9F4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:23.9758637Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-brazilsouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-brazilsouth-brazilsouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-brazilsouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-brazilsouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-brazilsouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-brazilsouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-brazilsouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.41.33.195\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/BrazilSouth-Canary\",\r\n \"name\": \"BrazilSouth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAAACMQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:13.4420019Z\",\r\n \"gatewayUrl\": \"https://brazilsouth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"brazilsouth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastAsia-Canary\",\r\n \"name\": \"EastAsia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAAACCE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:36.9340814Z\",\r\n \"gatewayUrl\": \"https://eastasia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastasia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-eastasia\",\r\n \"name\": \"jijohnn-regionalrp-eastasia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAAAmkQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:11.2149033Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-eastasia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-eastasia-eastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-eastasia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-eastasia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-eastasia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-eastasia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-eastasia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.75.108.142\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthIndia-Canary\",\r\n \"name\": \"SouthIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South India\",\r\n \"etag\": \"AAAAAAAADK0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:49:09.9271745Z\",\r\n \"gatewayUrl\": \"https://southindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southindia\",\r\n \"name\": \"jijohnn-regionalrp-southindia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South India\",\r\n \"etag\": \"AAAAAAAAj6o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:42.3047727Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southindia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southindia-southindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southindia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southindia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southindia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southindia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southindia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.211.215.31\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaCentral-Canary\",\r\n \"name\": \"CanadaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"AAAAAAAACR4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:43.0182697Z\",\r\n \"gatewayUrl\": \"https://canadacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-canadacentral\",\r\n \"name\": \"jijohnn-regionalrp-canadacentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"AAAAAAAA8TE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:30.0089209Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-canadacentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-canadacentral-canadacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-canadacentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-canadacentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-canadacentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-canadacentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-canadacentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.85.254.232\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/ASE-Canary\",\r\n \"name\": \"ASE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"etag\": \"AAAAAAAACMg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:50:10.100096Z\",\r\n \"gatewayUrl\": \"https://ase-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ase-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-australiasoutheast\",\r\n \"name\": \"jijohnn-regionalrp-australiasoutheast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Southeast\",\r\n \"etag\": \"AAAAAAABCzc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:56.187808Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-australiasoutheast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-australiasoutheast-australiasoutheast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-australiasoutheast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-australiasoutheast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-australiasoutheast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-australiasoutheast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-australiasoutheast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.115.67.38\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanEast-Canary\",\r\n \"name\": \"JapanEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"etag\": \"AAAAAAAACCI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:08.4035509Z\",\r\n \"gatewayUrl\": \"https://japaneast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japaneast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-japaneast\",\r\n \"name\": \"jijohnn-regionalrp-japaneast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Japan East\",\r\n \"etag\": \"AAAAAAABBMg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:33.8733914Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-japaneast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-japaneast-japaneast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-japaneast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-japaneast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-japaneast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-japaneast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-japaneast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.188.3.150\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NCUS-Canary\",\r\n \"name\": \"NCUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAC8HI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:24.8094208Z\",\r\n \"gatewayUrl\": \"https://ncus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ncus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-northcentraltest\",\r\n \"name\": \"gleb-northcentraltest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAC76A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-27T05:30:48.0387377Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-northcentraltest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-prod-3\",\r\n \"name\": \"galin-prod-3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"galini\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAC6Uk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-25T13:40:13.6027918Z\",\r\n \"gatewayUrl\": \"https://galin-prod-3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-prod-3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"908f8972-f245-4301-a92c-95ee7767c26e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/testapiservice1\",\r\n \"name\": \"testapiservice1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAEE/I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-13T15:30:56.1167067Z\",\r\n \"gatewayUrl\": \"https://testapiservice1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice1-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice1.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.107.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-northcentralus\",\r\n \"name\": \"jijohnn-regionalrp-northcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAD0b0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:14:14.2749806Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-northcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-northcentralus-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-northcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-northcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-northcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-northcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-northcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.198.14\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicetestpool\",\r\n \"name\": \"rpbvttestservicetestpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAADxS4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"apimanagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-09-27T03:54:47.7889108Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicetestpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicetestpool-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicetestpool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicetestpool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicetestpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicetestpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicetestpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.217.205\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/apimcoldstart\",\r\n \"name\": \"apimcoldstart\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAC75c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim cold start\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-15T22:46:02.8944291Z\",\r\n \"gatewayUrl\": \"https://apimcoldstart.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimcoldstart.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SEA-Canary\",\r\n \"name\": \"SEA-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABJ+M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"SEA-Canary\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-12T00:56:05.1041042Z\",\r\n \"gatewayUrl\": \"https://sea-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sea-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkimtest/providers/Microsoft.ApiManagement/service/mkimconsumptionhostnametest\",\r\n \"name\": \"mkimconsumptionhostnametest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vlvinogr\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABKbs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-04T15:13:52.423024Z\",\r\n \"gatewayUrl\": \"https://mkimconsumptionhostnametest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimconsumptionhostnametest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-forwarded-southeastasia-01\",\r\n \"name\": \"jijohn-forwarded-southeastasia-01\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABuQo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-26T19:12:20.269709Z\",\r\n \"gatewayUrl\": \"https://jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-forwarded-southeastasia-01-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-forwarded-southeastasia-01.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-forwarded-southeastasia-01.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-forwarded-southeastasia-01.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-forwarded-southeastasia-01.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.35.216\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/seasia-test\",\r\n \"name\": \"seasia-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABua0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"tdtdrtr\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-20T02:27:41.6012757Z\",\r\n \"gatewayUrl\": \"https://seasia-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seasia-test-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seasia-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seasia-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seasia-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seasia-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seasia-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.187.71.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southeastasia\",\r\n \"name\": \"jijohnn-regionalrp-southeastasia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABt6Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:14:42.5305624Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southeastasia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southeastasia-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southeastasia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southeastasia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southeastasia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southeastasia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southeastasia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.116.134\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fed-sea1\",\r\n \"name\": \"jitin-fed-sea1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABt7c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-28T00:41:44.8922579Z\",\r\n \"gatewayUrl\": \"https://jitin-fed-sea1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fed-sea1-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fed-sea1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fed-sea1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fed-sea1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fed-sea1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fed-sea1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.76.158.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshiseaconsumption\",\r\n \"name\": \"kjoshiseaconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAB3aQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-31T22:31:46.5381096Z\",\r\n \"gatewayUrl\": \"https://kjoshiseaconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiseaconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"prodconsumptiongateway.preview.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/Api-Preview-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-04-01T14:49:11-07:00\",\r\n \"thumbprint\": \"1ABDE4BCD3E18241A984B66FB0F6C637FFB2C661\",\r\n \"subject\": \"CN=*.preview.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/mkimtestsiteext\",\r\n \"name\": \"mkimtestsiteext\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vlvinogr\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABKbM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T04:10:37.3343255Z\",\r\n \"gatewayUrl\": \"https://mkimtestsiteext.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimtestsiteext.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/Devops-lrp\",\r\n \"name\": \"Devops-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABfYk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-12T00:00:24.5450525Z\",\r\n \"gatewayUrl\": \"https://devops-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devops-lrp-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devops-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devops-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devops-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devops-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devops-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.162.162\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westus2\",\r\n \"name\": \"jijohnn-regionalrp-westus2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABg5w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:10.4963607Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westus2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westus2-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westus2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westus2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westus2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westus2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westus2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.125.68.154\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS2-Canary\",\r\n \"name\": \"WUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAACOo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:12.1377274Z\",\r\n \"gatewayUrl\": \"https://wus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off\",\r\n \"name\": \"gleb-corr-off\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABa40=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adasdasda\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:11:18.1464015Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.14.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-on\",\r\n \"name\": \"gleb-corr-on\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABa48=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"asdasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:01:45.0345532Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-on.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-on-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-on.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-on.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-on.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-on.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-on.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.247.221.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.ApiManagement/service/kjoshi-serviceendpoint\",\r\n \"name\": \"kjoshi-serviceendpoint\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABfoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-10T01:01:48.5874136Z\",\r\n \"gatewayUrl\": \"https://kjoshi-serviceendpoint.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshi-serviceendpoint-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshi-serviceendpoint.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshi-serviceendpoint.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshi-serviceendpoint.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshi-serviceendpoint.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshi-serviceendpoint.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshi-gateway.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-22T10:55:22-07:00\",\r\n \"thumbprint\": \"2C356B0CD4C3176EFC5330A665EDD8877474C601\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.133.236\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.26.0.5\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.Network/virtualNetworks/kjoshi-serviceendponit/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-trace\",\r\n \"name\": \"gleb-trace\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABa5M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dfsdfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-16T19:32:41.6343295Z\",\r\n \"gatewayUrl\": \"https://gleb-trace.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-trace-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-trace.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-trace.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-trace.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-trace.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-trace.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.8.221\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-reserved-ip/providers/Microsoft.ApiManagement/service/apim-reserved-ip\",\r\n \"name\": \"apim-reserved-ip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABa4s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-27T23:49:34.8723514Z\",\r\n \"gatewayUrl\": \"https://apim-reserved-ip.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-reserved-ip-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-reserved-ip.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-reserved-ip.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-reserved-ip.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-reserved-ip.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-reserved-ip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.151.16.119\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicedefaultpool\",\r\n \"name\": \"rpbvttestservicedefaultpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACOO8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Samirs Company\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:42:16.6832196Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicedefaultpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicedefaultpool-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicedefaultpool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicedefaultpool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicedefaultpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicedefaultpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicedefaultpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.166.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-centralus\",\r\n \"name\": \"jijohnn-regionalrp-centralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACM8I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:13.191145Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-centralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-centralus-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-centralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-centralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-centralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-centralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-centralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.227.4\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUS-Canary\",\r\n \"name\": \"CUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAAD6U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:47:24.9248008Z\",\r\n \"gatewayUrl\": \"https://cus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654\",\r\n \"name\": \"ps654\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjpI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T22:03:02.4411385Z\",\r\n \"gatewayUrl\": \"https://ps654.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps654-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps654.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps654.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps654.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps654.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps654.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.51.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vifedo2/providers/Microsoft.ApiManagement/service/vifedomulti\",\r\n \"name\": \"vifedomulti\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAAt1A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:17:37.8487751Z\",\r\n \"gatewayUrl\": \"https://vifedomulti.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedomulti.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316\",\r\n \"name\": \"ps8316\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjq0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T22:50:19.0532744Z\",\r\n \"gatewayUrl\": \"https://ps8316.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8316-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8316.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8316.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8316.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8316.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8316.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.41.107\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vifedoRGRoup2/providers/Microsoft.ApiManagement/service/vifedowebscout\",\r\n \"name\": \"vifedowebscout\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACCfk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-22T00:25:43.7662916Z\",\r\n \"gatewayUrl\": \"https://vifedowebscout.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedowebscout-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedowebscout.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedowebscout.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedowebscout.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedowebscout.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedowebscout.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.121.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKS-Canary\",\r\n \"name\": \"UKS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK South\",\r\n \"etag\": \"AAAAAAAACMU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:47.9089467Z\",\r\n \"gatewayUrl\": \"https://uks-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uks-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-uksouth\",\r\n \"name\": \"jijohnn-regionalrp-uksouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UK South\",\r\n \"etag\": \"AAAAAAABYgg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:04.9632254Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-uksouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-uksouth-uksouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-uksouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-uksouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-uksouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-uksouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-uksouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.140.108.73\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-australiaeast\",\r\n \"name\": \"jijohnn-regionalrp-australiaeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAADR0o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:14:55.1641952Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-australiaeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-australiaeast-australiaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-australiaeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-australiaeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-australiaeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-australiaeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-australiaeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.75.143.17\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/placeholdertest-aus\",\r\n \"name\": \"placeholdertest-aus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mkim\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAABwvM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-01T05:03:21.7708485Z\",\r\n \"gatewayUrl\": \"https://placeholdertest-aus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"placeholdertest-aus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-aueast\",\r\n \"name\": \"gleb-aueast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAABwtY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"czxczxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-25T21:13:49.2851403Z\",\r\n \"gatewayUrl\": \"https://gleb-aueast.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-aueast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AUE-Canary\",\r\n \"name\": \"AUE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAABwZk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T19:35:39.0272012Z\",\r\n \"gatewayUrl\": \"https://aue-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aue-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-japanwest\",\r\n \"name\": \"jijohnn-regionalrp-japanwest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Japan West\",\r\n \"etag\": \"AAAAAAAAIf8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:26:04.1181013Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-japanwest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-japanwest-japanwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-japanwest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-japanwest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-japanwest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-japanwest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-japanwest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.215.24.107\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/ogf\",\r\n \"name\": \"ogf\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAESV0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-08T18:11:26.9902003Z\",\r\n \"gatewayUrl\": \"https://ogf.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogf-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogf.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogf.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogf.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogf.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogf.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.118.248.90\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-test\",\r\n \"name\": \"igo-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIog=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-19T18:40:24.5701371Z\",\r\n \"gatewayUrl\": \"https://igo-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.59.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohndiagnosticlogs\",\r\n \"name\": \"jijohndiagnosticlogs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIs8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"MSFT\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-02-01T20:53:45.1477718Z\",\r\n \"gatewayUrl\": \"https://jijohndiagnosticlogs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohndiagnosticlogs-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohndiagnosticlogs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohndiagnosticlogs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohndiagnosticlogs.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohndiagnosticlogs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohndiagnosticlogs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.64.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gconsumption\",\r\n \"name\": \"gconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADCAY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"gdfgdfg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-27T19:18:55.5935623Z\",\r\n \"gatewayUrl\": \"https://gconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-inittest\",\r\n \"name\": \"gleb-inittest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEjFE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dsfsdfsdfs\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-19T00:43:17.2463706Z\",\r\n \"gatewayUrl\": \"https://gleb-inittest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-inittest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-inittest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-inittest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-inittest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-inittest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-inittest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.225.20\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/aztest\",\r\n \"name\": \"aztest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"cffd\": \"acs-dcos-agent-private-1646DB44-vmss0\",\r\n \"My lovely tag\": \"My lovely tag value\",\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEjmE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"API Management UXX\",\r\n \"notificationSenderEmail\": \"contoso@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-24T21:24:07.2813367Z\",\r\n \"gatewayUrl\": \"https://aztest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://aztest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://aztest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://aztest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://aztest.management.azure-api.net\",\r\n \"scmUrl\": \"https://aztest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aztest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"portal.apim.dev\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2024-05-20T04:42:43-07:00\",\r\n \"thumbprint\": \"E3FFF41A233917FCEDDCDB4EB47B26F171E34A63\",\r\n \"subject\": \"CN=*.apim.dev\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Scm\",\r\n \"hostName\": \"contoso.apim.dev\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2024-05-20T04:42:43-07:00\",\r\n \"thumbprint\": \"E3FFF41A233917FCEDDCDB4EB47B26F171E34A63\",\r\n \"subject\": \"CN=*.apim.dev\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.136.132\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9b681823-8edc-4e3e-84e4-4a5616a2f28b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/alzaslondemo\",\r\n \"name\": \"alzaslondemo\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIps=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:42:33.4602777Z\",\r\n \"gatewayUrl\": \"https://alzaslondemo.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzaslondemo-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzaslondemo.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzaslondemo.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzaslondemo.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzaslondemo.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzaslondemo.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.210.62.140\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimanagement-cors-proxy-df/providers/Microsoft.ApiManagement/service/apimanagement-cors-proxy-df\",\r\n \"name\": \"apimanagement-cors-proxy-df\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIpE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Azure API Management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-14T01:35:21.371366Z\",\r\n \"gatewayUrl\": \"https://apimanagement-cors-proxy-df.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimanagement-cors-proxy-df-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimanagement-cors-proxy-df.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apimanagement-cors-proxy-df.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimanagement-cors-proxy-df.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimanagement-cors-proxy-df.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimanagement-cors-proxy-df.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.106.204\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/devenv\",\r\n \"name\": \"devenv\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-05-05T23:07:15.5827029Z\",\r\n \"gatewayUrl\": \"https://devenv.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devenv-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devenv.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devenv.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devenv.management.azure-api.net\",\r\n \"scmUrl\": \"https://devenv.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devenv.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.94.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.Network/virtualNetworks/azvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westus\",\r\n \"name\": \"jijohnn-regionalrp-westus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAERu0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:12:28.9452269Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westus-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.163.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/mkimtestzip\",\r\n \"name\": \"mkimtestzip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vlvinogr\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADCFQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T04:09:11.698683Z\",\r\n \"gatewayUrl\": \"https://mkimtestzip.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimtestzip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/APIM-AM-August\",\r\n \"name\": \"APIM-AM-August\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAER2I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"AMAPIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-01T10:55:21.1250691Z\",\r\n \"gatewayUrl\": \"https://apim-am-august.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-am-august-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-am-august.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-am-august.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-am-august.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-am-august.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-am-august.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"foo.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.46.109\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS-Canary\",\r\n \"name\": \"WUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADCOI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:57:07.2773048Z\",\r\n \"gatewayUrl\": \"https://wus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestApiAm\",\r\n \"name\": \"TestApiAm\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEUFg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPIAm\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-15T14:26:10.3016602Z\",\r\n \"gatewayUrl\": \"https://testapiam.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiam-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiam.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiam.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiam.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiam.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiam.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.174.106\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/serverless\",\r\n \"name\": \"serverless\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADB9M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-19T21:41:06.5566242Z\",\r\n \"gatewayUrl\": \"https://serverless.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"serverless.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAER3o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-16T22:17:28.5884885Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservice.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.45.228.209\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestAPIManage123\",\r\n \"name\": \"TestAPIManage123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAER04=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPI\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-11T14:24:14.6253855Z\",\r\n \"gatewayUrl\": \"https://testapimanage123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapimanage123-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapimanage123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapimanage123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapimanage123.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapimanage123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapimanage123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.40.7.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off2\",\r\n \"name\": \"gleb-corr-off2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIos=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dassdsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-25T22:58:27.2967081Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off2-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off2.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.252.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-57-outage/providers/Microsoft.ApiManagement/service/kjoshisncablecut\",\r\n \"name\": \"kjoshisncablecut\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAERrk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"sfdasdf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-16T17:52:35.2856029Z\",\r\n \"gatewayUrl\": \"https://kjoshisncablecut.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisncablecut-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisncablecut.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisncablecut.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisncablecut.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisncablecut.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisncablecut.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gatewaykjoshi.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-22T10:55:22-07:00\",\r\n \"thumbprint\": \"2C356B0CD4C3176EFC5330A665EDD8877474C601\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gatewaykjoshi2.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-22T10:55:22-07:00\",\r\n \"thumbprint\": \"2C356B0CD4C3176EFC5330A665EDD8877474C601\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.117.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"14d2a59a-3ef8-4cf7-b783-66fa6d9ac26b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption\",\r\n \"name\": \"jijohn-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADCJw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-19T23:08:06.4716339Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"41128fb9-0565-4a21-ad64-ef9282afb49c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-test1\",\r\n \"name\": \"galin-test1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"galini\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADB5w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-20T19:53:35.0666232Z\",\r\n \"gatewayUrl\": \"https://galin-test1.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-test1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"52dc5eb3-e5bb-4e89-b91f-83fa2fbea523\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/testapiservice3\",\r\n \"name\": \"testapiservice3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIoY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mtuchkov@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-07T23:22:14.4260358Z\",\r\n \"gatewayUrl\": \"https://testapiservice3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice3.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.ApiManagement/service/vvktest2\",\r\n \"name\": \"vvktest2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEeGo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"vvktest\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-29T22:39:06.3998763Z\",\r\n \"gatewayUrl\": \"https://vvktest2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vvktest2-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vvktest2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vvktest2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vvktest2.management.azure-api.net\",\r\n \"scmUrl\": \"https://vvktest2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vvktest2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.8.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 6\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-francecentral\",\r\n \"name\": \"jijohnn-regionalrp-francecentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"France Central\",\r\n \"etag\": \"AAAAAAAAMiA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:25:39.7350589Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-francecentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-francecentral-francecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-francecentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-francecentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-francecentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-francecentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-francecentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.134.21\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Special-IP-Assigned-RG-Do-Not-Delete/providers/Microsoft.ApiManagement/service/kjoshisnoutagescus\",\r\n \"name\": \"kjoshisnoutagescus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAAKPI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi south central us\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-05T16:57:56.8923548Z\",\r\n \"gatewayUrl\": \"https://kjoshisnoutagescus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisnoutagescus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisnoutagescus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisnoutagescus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisnoutagescus.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisnoutagescus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisnoutagescus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.214.49.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/accessibility\",\r\n \"name\": \"accessibility\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAAO4A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-12T22:41:49.8713478Z\",\r\n \"gatewayUrl\": \"https://accessibility.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://accessibility-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://accessibility.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://accessibility.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://accessibility.management.azure-api.net\",\r\n \"scmUrl\": \"https://accessibility.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"accessibility.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.65.192.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/devportal-lrp\",\r\n \"name\": \"devportal-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAAMn8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"API management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-16T17:38:14.081027Z\",\r\n \"gatewayUrl\": \"https://devportal-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devportal-lrp-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devportal-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devportal-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devportal-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devportal-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devportal-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.74.240.180\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5ad27f6-e2f1-48e2-a287-d96d6a2bc8d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southcentralus\",\r\n \"name\": \"jijohnn-regionalrp-southcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAARCQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:27:12.0302386Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southcentralus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.30.203\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-eastus2\",\r\n \"name\": \"jijohnn-regionalrp-eastus2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAAfMk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:29.1774148Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-eastus2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-eastus2-eastus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-eastus2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-eastus2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-eastus2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-eastus2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-eastus2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.70.205.103\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS-Canary\",\r\n \"name\": \"EUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAAH54=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:52.9254769Z\",\r\n \"gatewayUrl\": \"https://eus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/testapiservice5\",\r\n \"name\": \"testapiservice5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAB7go=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"testapiservice5@testapiservice5.com\",\r\n \"publisherName\": \"testapiservice5\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-14T03:18:01.7544432Z\",\r\n \"gatewayUrl\": \"https://testapiservice5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice5-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice5.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice5.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice5.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.72.73.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-eastus\",\r\n \"name\": \"jijohnn-regionalrp-eastus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACZU4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:18:58.2142701Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-eastus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-eastus-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-eastus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-eastus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-eastus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-eastus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-eastus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"138.91.124.121\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-throne\",\r\n \"name\": \"tweiss-throne\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tweiss\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACaFw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"APIM Test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-09T04:37:52.4052775Z\",\r\n \"gatewayUrl\": \"https://tweiss-throne.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-throne-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-throne.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tweiss-throne.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-throne.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-throne.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-throne.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.117.125.167\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/rpbvttestservicevippool\",\r\n \"name\": \"rpbvttestservicevippool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACetI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:43:21.283724Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicevippool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicevippool-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicevippool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicevippool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicevippool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicevippool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicevippool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.22.122\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NEU-Canary\",\r\n \"name\": \"NEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAD6Ks=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:59:15.312131Z\",\r\n \"gatewayUrl\": \"https://neu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"neu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-bug-bash-pp2\",\r\n \"name\": \"jitin-bug-bash-pp2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"sku\": \"consumption\",\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAD5ys=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-28T20:02:47.2274561Z\",\r\n \"gatewayUrl\": \"https://jitin-bug-bash-pp2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-bug-bash-pp2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-northeurope\",\r\n \"name\": \"jijohnn-regionalrp-northeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAGE2k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:14:29.591026Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-northeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-northeurope-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-northeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-northeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-northeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-northeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-northeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.127.189.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fwd-north-europe\",\r\n \"name\": \"jitin-fwd-north-europe\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAF2rY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T00:58:18.8388979Z\",\r\n \"gatewayUrl\": \"https://jitin-fwd-north-europe.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fwd-north-europe-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fwd-north-europe.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fwd-north-europe.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fwd-north-europe.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fwd-north-europe.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fwd-north-europe.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.164.120.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westeurope\",\r\n \"name\": \"jijohnn-regionalrp-westeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAIr9A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:18:54.1385507Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westeurope-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.95.140.57\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WEU-Canary\",\r\n \"name\": \"WEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAFiZE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:46.9010517Z\",\r\n \"gatewayUrl\": \"https://weu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"weu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/samiram2\",\r\n \"name\": \"samiram2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"sasolank\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAFiDc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-27T01:33:42.4912513Z\",\r\n \"gatewayUrl\": \"https://samiram2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"samiram2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshiconsumption/providers/Microsoft.ApiManagement/service/kjoshiwesteurope\",\r\n \"name\": \"kjoshiwesteurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAFjQw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi westeurope\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-25T22:56:34.1956241Z\",\r\n \"gatewayUrl\": \"https://kjoshiwesteurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwesteurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.ApiManagement/service/vpnpremium\",\r\n \"name\": \"vpnpremium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAHxrE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-04-12T00:20:15.6018952Z\",\r\n \"gatewayUrl\": \"https://vpnpremium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vpnpremium.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vpnpremium.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vpnpremium.management.azure-api.net\",\r\n \"scmUrl\": \"https://vpnpremium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vpnpremium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxy.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://samir-msi-keyvault.vault.azure.net/secrets/msicertificate\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-12-18T03:11:47-08:00\",\r\n \"thumbprint\": \"9833D531D7A45C565766F2A85908BD3692E0BD3F\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.94.204.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"66f34ee9-17bd-48d3-82d3-fbdfe9661aa9\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ca1d33f7-3cf9-42ec-b3e9-d526a1ee953a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/test-fwd-westeurope\",\r\n \"name\": \"test-fwd-westeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAIn/U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T01:01:10.5192286Z\",\r\n \"gatewayUrl\": \"https://test-fwd-westeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://test-fwd-westeurope-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://test-fwd-westeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://test-fwd-westeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://test-fwd-westeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://test-fwd-westeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"test-fwd-westeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.45.30.219\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-australiacentral2\",\r\n \"name\": \"jijohnn-regionalrp-australiacentral2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAAPEs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:16.3321787Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-australiacentral2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-australiacentral2-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-australiacentral2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-australiacentral2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-australiacentral2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-australiacentral2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-australiacentral2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.70.10\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-cbr2\",\r\n \"name\": \"jitin-cbr2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAAPEk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-17T22:22:26.3793973Z\",\r\n \"gatewayUrl\": \"https://jitin-cbr2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-cbr2-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-cbr2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-cbr2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-cbr2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-cbr2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-cbr2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.71.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AustraliaCentral2-Canary\",\r\n \"name\": \"AustraliaCentral2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAACCM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-05T22:01:59.2396648Z\",\r\n \"gatewayUrl\": \"https://australiacentral2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"australiacentral2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-forwarded-euap\",\r\n \"name\": \"jitin-dedicated-forwarded-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkxk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-06T01:45:14.4195684Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-forwarded-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-forwarded-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-forwarded-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-forwarded-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-forwarded-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-forwarded-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-forwarded-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.54.141\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-centraluseuap\",\r\n \"name\": \"jijohnn-regionalrp-centraluseuap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkx0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:15:26.8265075Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-centraluseuap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-centraluseuap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-centraluseuap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-centraluseuap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-centraluseuap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-centraluseuap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-centraluseuap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.162.80\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-global-rp\",\r\n \"name\": \"jitin-dedicated-global-rp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADlCY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T21:17:27.8631556Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-global-rp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-global-rp-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-global-rp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-global-rp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-global-rp.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-global-rp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-global-rp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.55.250\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-fwded-euap\",\r\n \"name\": \"jitin-dedicated-fwded-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkyc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T22:54:10.528244Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-fwded-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-fwded-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-fwded-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-fwded-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-fwded-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-fwded-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-fwded-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.48.106\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUSEUAP-Canary\",\r\n \"name\": \"CUSEUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAATZQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:40:38.7929014Z\",\r\n \"gatewayUrl\": \"https://cuseuap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cuseuap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-rolloverTest/providers/Microsoft.ApiManagement/service/centraluseuapregional\",\r\n \"name\": \"centraluseuapregional\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkxs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Test new regional\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-11T21:09:53.1070791Z\",\r\n \"gatewayUrl\": \"https://centraluseuapregional.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://centraluseuapregional-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://centraluseuapregional.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://centraluseuapregional.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://centraluseuapregional.management.azure-api.net\",\r\n \"scmUrl\": \"https://centraluseuapregional.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"centraluseuapregional.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.55.145\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US-EUAP/providers/Microsoft.ApiManagement/service/kjoshicentralusregion\",\r\n \"name\": \"kjoshicentralusregion\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkx8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi euap\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-11T20:05:09.9165159Z\",\r\n \"gatewayUrl\": \"https://kjoshicentralusregion.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshicentralusregion-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshicentralusregion.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshicentralusregion.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshicentralusregion.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshicentralusregion.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshicentralusregion.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshi.preview.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-04-01T14:49:11-07:00\",\r\n \"thumbprint\": \"1ABDE4BCD3E18241A984B66FB0F6C637FFB2C661\",\r\n \"subject\": \"CN=*.preview.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.164.79\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tenant-canary-bvts/providers/Microsoft.ApiManagement/service/alzasloneuap\",\r\n \"name\": \"alzasloneuap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkzY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T22:39:46.5215063Z\",\r\n \"gatewayUrl\": \"https://alzasloneuap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzasloneuap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzasloneuap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzasloneuap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzasloneuap.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzasloneuap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzasloneuap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.59.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tenant-canary-bvts/providers/Microsoft.ApiManagement/service/OGF-02202020-DevPortal\",\r\n \"name\": \"OGF-02202020-DevPortal\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADk2A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"Test DevPortal\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-20T10:01:17.5515111Z\",\r\n \"gatewayUrl\": \"https://ogf-02202020-devportal.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogf-02202020-devportal-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogf-02202020-devportal.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogf-02202020-devportal.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogf-02202020-devportal.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogf-02202020-devportal.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogf-02202020-devportal.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.169.102\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-uae-central\",\r\n \"name\": \"jitin-uae-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAAfaI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-12T18:44:51.9105707Z\",\r\n \"gatewayUrl\": \"https://jitin-uae-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-uae-central-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-uae-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-uae-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-uae-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-uae-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-uae-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.64.181\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjokshiuaecentraldedicated\",\r\n \"name\": \"kjokshiuaecentraldedicated\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAAfZ0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-05T22:32:09.5830682Z\",\r\n \"gatewayUrl\": \"https://kjokshiuaecentraldedicated.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjokshiuaecentraldedicated-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjokshiuaecentraldedicated.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjokshiuaecentraldedicated.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjokshiuaecentraldedicated.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjokshiuaecentraldedicated.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjokshiuaecentraldedicated.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.75.141\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-uaecentral\",\r\n \"name\": \"jijohnn-regionalrp-uaecentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAAfaQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:15:16.3229461Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-uaecentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-uaecentral-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-uaecentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-uaecentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-uaecentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-uaecentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-uaecentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.71.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-germanynorth\",\r\n \"name\": \"jijohnn-regionalrp-germanynorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany North\",\r\n \"etag\": \"AAAAAAAAMpQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:36.29937Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-germanynorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-germanynorth-germanynorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-germanynorth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-germanynorth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-germanynorth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-germanynorth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-germanynorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.116.211.129\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-norwaywest\",\r\n \"name\": \"jijohnn-regionalrp-norwaywest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Norway West\",\r\n \"etag\": \"AAAAAAAAD74=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:23:16.4693474Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-norwaywest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-norwaywest-norwaywest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-norwaywest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-norwaywest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-norwaywest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-norwaywest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-norwaywest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.120.167.180\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-switzerlandwest\",\r\n \"name\": \"jijohnn-regionalrp-switzerlandwest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland West\",\r\n \"etag\": \"AAAAAAACQC8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:23:37.2813468Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-switzerlandwest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-switzerlandwest-switzerlandwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-switzerlandwest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-switzerlandwest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-switzerlandwest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-switzerlandwest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-switzerlandwest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.107.224.93\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -4083,16 +6100,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e2c1415-1589-4290-a20c-a5acf558559e" + "ae2349de-f410-48f8-abe8-1b2f795900df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4102,60 +6119,96 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e8139be3-8f8f-43a5-83f8-aef31f590096" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-original-request-ids": [ + "c9bf0480-af65-4b98-bff4-1f311d6bcf6c", + "d19441bb-0cdf-4a19-ab4f-bf44995c074c", + "941e7578-a95f-411a-a7de-96910e8e77d8", + "4290d41b-67de-4d9d-83c9-2d4fff985dce", + "d255ea34-1094-4e54-a9e9-fdb5af31d8ba", + "96b082de-4bbc-42bf-9ef3-47b1fc11d368", + "d3b2b0dc-dc9d-4d1f-9c59-09b41cbb8d4f", + "fbfb449d-58e1-458b-82a3-9c3f9891b3b8", + "e92c0f9e-086f-4a3d-a94a-ad387a7126f9", + "d77b65b8-2c74-4c92-9da0-99612dbba10c", + "d3d91558-e2e3-4995-afb2-6c5f319c35a5", + "bc770ec0-85a5-4cda-8c68-d0caeae6cd0e", + "670c4dce-222b-4aa4-a95c-29f9d20f9bad", + "6f7e9dde-0a05-4dfd-b3a3-1eb9683e007b", + "10e3be6d-b00a-443a-8d0f-6e6ce7e6762b", + "1f58b28d-dc33-4547-81b2-5e900fcd4ef9", + "d1619a4e-7394-4f0b-8960-c9b6816996cb", + "b4e5724d-58b7-444b-a4f4-4f3f956efe3c", + "2c8e7c71-a32c-405b-9a7d-b445974e7dda", + "e83bf434-35db-439c-80a7-4e6e426f2ade", + "aff78a7d-2cdd-4110-b96c-28be46804d17", + "2589f38f-d0e4-4fff-831c-7908def13195", + "c45af4a3-74ca-4d57-a103-7bef920e5a4c", + "0ea5fde5-cec5-4649-a639-479034cb869d", + "643e9388-3fd3-474c-be28-c103c24a78cf", + "bf278101-f577-426c-8f0c-6af5ecf07e17", + "c8fa94bd-c308-4311-9e02-18b56f560ccf", + "baa74079-252e-4ec8-9d33-28ca67288166", + "ce91c9c5-0e6c-499d-8c5a-5ef558ae9991", + "ae6eb2a6-895d-4502-96e9-1e9a8edc3ae7", + "b9589e74-b018-48fe-9692-d037e16c8d05", + "a60be4d4-e7e5-4b81-bd2e-77bf4c93ddfe", + "ae18ff5d-7c2c-4ef9-bc70-0525e4b97a1c", + "0f20e717-5cc6-4fab-9db6-c67c222cfd2f", + "59128c01-b57c-42ce-b4f1-d052bd3c82c1", + "d0f6d2a3-29bb-4c61-a715-160aba2931a6", + "51c811ba-833f-4377-ae85-0fa8d1160bf5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11932" + ], + "x-ms-request-id": [ + "491d0aac-c50d-43db-94db-04b822828a96" ], "x-ms-correlation-request-id": [ - "123845c5-a5f9-4789-ba88-ed7d4d4eadb4" + "491d0aac-c50d-43db-94db-04b822828a96" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031130Z:123845c5-a5f9-4789-ba88-ed7d4d4eadb4" + "WESTUS:20200223T233440Z:491d0aac-c50d-43db-94db-04b822828a96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:11:29 GMT" - ], - "Content-Length": [ - "136071" + "Sun, 23 Feb 2020 23:34:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "280345" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohndiagnosticlogs\",\r\n \"name\": \"jijohndiagnosticlogs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TQg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"MSFT\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-02-01T20:53:45.1477718Z\",\r\n \"gatewayUrl\": \"https://jijohndiagnosticlogs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohndiagnosticlogs-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohndiagnosticlogs.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohndiagnosticlogs.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohndiagnosticlogs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohndiagnosticlogs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.195.114\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicedefaultpool\",\r\n \"name\": \"rpbvttestservicedefaultpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF5EHw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Samirs Company\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:42:16.6832196Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicedefaultpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicedefaultpool-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicedefaultpool.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicedefaultpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicedefaultpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicedefaultpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.166.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebtest\",\r\n \"name\": \"glebtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAF9AVw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"asdasdasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-12-12T19:51:03.6604132Z\",\r\n \"gatewayUrl\": \"https://glebtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://glebtest-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://glebtest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://glebtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://glebtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.208.40\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"5d6e26a0-39b6-4030-bd09-6bd99f6fae71\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/az-appgateway\",\r\n \"name\": \"az-appgateway\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF49fA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-04-20T16:27:03.5522427Z\",\r\n \"gatewayUrl\": \"https://az-appgateway.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://az-appgateway-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://az-appgateway.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://az-appgateway.management.azure-api.net\",\r\n \"scmUrl\": \"https://az-appgateway.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"az-appgateway.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.43.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-gfs-smtp/providers/Microsoft.ApiManagement/service/kjoshigfssmtp\",\r\n \"name\": \"kjoshigfssmtp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TRI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"Test Org\",\r\n \"notificationSenderEmail\": \"publisher@kedar.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-08-28T23:48:16.9176804Z\",\r\n \"gatewayUrl\": \"https://kjoshigfssmtp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshigfssmtp-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshigfssmtp.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshigfssmtp.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshigfssmtp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshigfssmtp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxyhostname1-prod.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-current.vault.azure.net/secrets/current-tenant-ssl/d3c3513bccde462696763995f602b4f2\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:45:06-07:00\",\r\n \"thumbprint\": \"408D1EEB5AC5776D64698F560127A14BC6827910\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.88.16.248\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f4171f27-55eb-4e9d-879f-bd6bcf1dc472\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/APIM-Demo/providers/Microsoft.ApiManagement/service/apiserviceq6bpj5e3i47d4\",\r\n \"name\": \"apiserviceq6bpj5e3i47d4\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF9AJY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi-apim-demo\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-20T19:51:34.9530398Z\",\r\n \"gatewayUrl\": \"https://apiserviceq6bpj5e3i47d4.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apiserviceq6bpj5e3i47d4-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apiserviceq6bpj5e3i47d4.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://apiserviceq6bpj5e3i47d4.management.azure-api.net\",\r\n \"scmUrl\": \"https://apiserviceq6bpj5e3i47d4.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apiserviceq6bpj5e3i47d4.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.40.88.46\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/aztest\",\r\n \"name\": \"aztest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"cffd\": \"acs-dcos-agent-private-1646DB44-vmss0\",\r\n \"My lovely tag\": \"My lovely tag value\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TFg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"API Management UXX\",\r\n \"notificationSenderEmail\": \"contoso@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-24T21:24:07.2813367Z\",\r\n \"gatewayUrl\": \"https://aztest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://aztest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://aztest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://aztest.management.azure-api.net\",\r\n \"scmUrl\": \"https://aztest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aztest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.136.132\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"cb0794bd-0852-40e0-a25e-63f29b169c36\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-east-us-2-euap/providers/Microsoft.ApiManagement/service/kjoshieastus2euap\",\r\n \"name\": \"kjoshieastus2euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAF8TQo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi east us 2 euap\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-30T00:36:59.6217449Z\",\r\n \"gatewayUrl\": \"https://kjoshieastus2euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshieastus2euap-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshieastus2euap.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshieastus2euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshieastus2euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieastus2euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.66.175\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF89aM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-05-09T20:41:14.4944573Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.177.60\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246\",\r\n \"name\": \"ps3246\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/auU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T02:39:54.3012885Z\",\r\n \"gatewayUrl\": \"https://ps3246.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3246-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3246.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3246.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3246.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3246.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.116.252\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/template-test-smapi-WestUS/providers/Microsoft.ApiManagement/service/templatetestsmapientities\",\r\n \"name\": \"templatetestsmapientities\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TFI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"templatetestsmapientities\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-05T22:52:50.078668Z\",\r\n \"gatewayUrl\": \"https://templatetestsmapientities.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://templatetestsmapientities-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://templatetestsmapientities.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://templatetestsmapientities.management.azure-api.net\",\r\n \"scmUrl\": \"https://templatetestsmapientities.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"templatetestsmapientities.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.216.128\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-flower\",\r\n \"name\": \"tweiss-flower\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF9Y3o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"APIM Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-01T19:15:32.2304318Z\",\r\n \"gatewayUrl\": \"https://tweiss-flower.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-flower-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-flower.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-flower.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-flower.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-flower.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.70.251\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vifedoRGroupTest/providers/Microsoft.ApiManagement/service/vifedodev\",\r\n \"name\": \"vifedodev\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF5f64=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"ttt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-26T18:25:55.2706068Z\",\r\n \"gatewayUrl\": \"https://vifedodev.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedodev-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedodev.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedodev.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedodev.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedodev.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.123.225\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Levy0508m11rg/providers/Microsoft.ApiManagement/service/Levy0508m11\",\r\n \"name\": \"Levy0508m11\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/Zyk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"Levy0508m11org\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T01:41:33.8488712Z\",\r\n \"gatewayUrl\": \"https://levy0508m11.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levy0508m11-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levy0508m11.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levy0508m11.management.azure-api.net\",\r\n \"scmUrl\": \"https://levy0508m11.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levy0508m11.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.160.116\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/LevyAPITest02RG/providers/Microsoft.ApiManagement/service/LevyAPITest02\",\r\n \"name\": \"LevyAPITest02\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF5vTk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"LevyAPITest02org\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-10-19T09:40:27.838837Z\",\r\n \"gatewayUrl\": \"https://levyapitest02.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levyapitest02-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levyapitest02.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levyapitest02.management.azure-api.net\",\r\n \"scmUrl\": \"https://levyapitest02.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levyapitest02.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.76.46.43\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-sf-dev/providers/Microsoft.ApiManagement/service/apimsfdev\",\r\n \"name\": \"apimsfdev\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8zTA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"anluong@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-30T00:02:42.5842115Z\",\r\n \"gatewayUrl\": \"https://apimsfdev.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimsfdev-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimsfdev.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimsfdev.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimsfdev.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimsfdev.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.180.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3915/providers/Microsoft.ApiManagement/service/ps7152\",\r\n \"name\": \"ps7152\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF9qlg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-02T01:39:26.6955839Z\",\r\n \"gatewayUrl\": \"https://ps7152.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps7152-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps7152.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps7152.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps7152.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7152.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.162.239.35\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.23.0.7\"\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"52.171.218.150\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.24.0.6\"\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://ps7152-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-halley\",\r\n \"name\": \"tweiss-halley\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAF/W74=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"Halley\",\r\n \"notificationSenderEmail\": \"taylor.weiss.47@gmail.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-12-19T22:23:13.7075358Z\",\r\n \"gatewayUrl\": \"https://tweiss-halley.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-halley-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-halley.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-halley.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-halley.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-halley.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.217.233\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/LevyAPIMTestRG/providers/Microsoft.ApiManagement/service/LevyAPIMTest\",\r\n \"name\": \"LevyAPIMTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"apitag000\": \"value000\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF8r/4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"LevyAPIMTestOrg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-14T01:28:55.3486481Z\",\r\n \"gatewayUrl\": \"https://levyapimtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levyapimtest-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levyapimtest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levyapimtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://levyapimtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levyapimtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.87.41.209\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.ApiManagement/service/vpnpremium\",\r\n \"name\": \"vpnpremium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAF8TRo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-04-12T00:20:15.6018952Z\",\r\n \"gatewayUrl\": \"https://vpnpremium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vpnpremium.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://vpnpremium.management.azure-api.net\",\r\n \"scmUrl\": \"https://vpnpremium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vpnpremium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.94.204.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"66f34ee9-17bd-48d3-82d3-fbdfe9661aa9\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimanagement-cors-proxy-df/providers/Microsoft.ApiManagement/service/apimanagement-cors-proxy-df\",\r\n \"name\": \"apimanagement-cors-proxy-df\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8THA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Azure API Management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-14T01:35:21.371366Z\",\r\n \"gatewayUrl\": \"https://apimanagement-cors-proxy-df.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimanagement-cors-proxy-df-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimanagement-cors-proxy-df.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimanagement-cors-proxy-df.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimanagement-cors-proxy-df.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimanagement-cors-proxy-df.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.106.204\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/devenv\",\r\n \"name\": \"devenv\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TA0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-05-05T23:07:15.5827029Z\",\r\n \"gatewayUrl\": \"https://devenv.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devenv-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devenv.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://devenv.management.azure-api.net\",\r\n \"scmUrl\": \"https://devenv.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devenv.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.94.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.Network/virtualNetworks/azvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/testapiservice5\",\r\n \"name\": \"testapiservice5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF8TEg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"testapiservice5@testapiservice5.com\",\r\n \"publisherName\": \"testapiservice5\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-14T03:18:01.7544432Z\",\r\n \"gatewayUrl\": \"https://testapiservice5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice5-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice5.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice5.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.72.73.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7853/providers/Microsoft.ApiManagement/service/ps5023\",\r\n \"name\": \"ps5023\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF9q2g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-02T13:52:39.473899Z\",\r\n \"gatewayUrl\": \"https://ps5023.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps5023-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps5023.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps5023.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps5023.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps5023.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.0.16\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Special-IP-Assigned-RG-Do-Not-Delete/providers/Microsoft.ApiManagement/service/kjoshisnoutagescus\",\r\n \"name\": \"kjoshisnoutagescus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAF8TRw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi south central us\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-05T16:57:56.8923548Z\",\r\n \"gatewayUrl\": \"https://kjoshisnoutagescus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisnoutagescus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisnoutagescus.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisnoutagescus.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisnoutagescus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisnoutagescus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.214.49.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/testapiservice1\",\r\n \"name\": \"testapiservice1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF8TI4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-13T15:30:56.1167067Z\",\r\n \"gatewayUrl\": \"https://testapiservice1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice1-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice1.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice1.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.107.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/accessibility\",\r\n \"name\": \"accessibility\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAF7iq4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-12T22:41:49.8713478Z\",\r\n \"gatewayUrl\": \"https://accessibility.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://accessibility-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://accessibility.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://accessibility.management.azure-api.net\",\r\n \"scmUrl\": \"https://accessibility.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"accessibility.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.65.192.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg3/providers/Microsoft.ApiManagement/service/glebrg3apim\",\r\n \"name\": \"glebrg3apim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAF/XSQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"kjhjkhjkh\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-13T23:02:12.8273491Z\",\r\n \"gatewayUrl\": \"https://glebrg3apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://glebrg3apim-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://glebrg3apim.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://glebrg3apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://glebrg3apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebrg3apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"test.glebsdomain.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-09-22T00:00:00-07:00\",\r\n \"thumbprint\": \"ED953A23DBE6D9D35A34CAE23C9C708A576A77B3\",\r\n \"subject\": \"CN=*.glebsdomain.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.15.53\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Levy0506m11rg/providers/Microsoft.ApiManagement/service/Levy0506m11\",\r\n \"name\": \"Levy0506m11\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF+0Ug=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"Levy0506m11org\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-06T01:59:50.8507539Z\",\r\n \"gatewayUrl\": \"https://levy0506m11.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levy0506m11-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levy0506m11.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levy0506m11.management.azure-api.net\",\r\n \"scmUrl\": \"https://levy0506m11.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levy0506m11.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.121.61.120\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2019-11-16T18:54:27-08:00\",\r\n \"thumbprint\": \"34103B54CE82B1014A5A3E7A0F315CD9C4355722\",\r\n \"subject\": \"CN=*.apim.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/API-Management-in-VNET-with-Gateway-Test/providers/Microsoft.ApiManagement/service/samirappgwapimtest\",\r\n \"name\": \"samirappgwapimtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAF8TGI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-28T03:34:01.3019394Z\",\r\n \"gatewayUrl\": \"https://samirappgwapimtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://samirappgwapimtest-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://samirappgwapimtest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://samirappgwapimtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://samirappgwapimtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"samirappgwapimtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalgw.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:45:06-07:00\",\r\n \"thumbprint\": \"408D1EEB5AC5776D64698F560127A14BC6827910\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apigwproxy.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:45:06-07:00\",\r\n \"thumbprint\": \"408D1EEB5AC5776D64698F560127A14BC6827910\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.84.188.196\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"192.168.8.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/API-Management-in-VNET-with-Gateway-Test/providers/Microsoft.Network/virtualNetworks/appgwvnet/subnets/apim02\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Central-US/providers/Microsoft.ApiManagement/service/testwestcentralus\",\r\n \"name\": \"testwestcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAF8TEI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"testwestcentralus\",\r\n \"notificationSenderEmail\": \"foobar@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-11-29T19:30:21.8283702Z\",\r\n \"gatewayUrl\": \"https://testwestcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testwestcentralus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testwestcentralus.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://testwestcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://testwestcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testwestcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.17.128\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/template-mulit-hostname-westus/providers/Microsoft.ApiManagement/service/template-multihostname\",\r\n \"name\": \"template-multihostname\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TFY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"template-multihostname\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-06-06T00:56:17.4097872Z\",\r\n \"gatewayUrl\": \"https://template-multihostname.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://template-multihostname-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://template-multihostname.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://template-multihostname.management.azure-api.net\",\r\n \"scmUrl\": \"https://template-multihostname.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"template-multihostname.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"apim.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portaltemplatehostname1-prod.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2018-03-17T14:55:07-07:00\",\r\n \"thumbprint\": \"DE57B67BA63D21E925DA8BEFA436E6B7553A4C19\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxy.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-01-16T15:31:17-08:00\",\r\n \"thumbprint\": \"179CC2ABF9B4BF045EFDD368417E5B12B23B3329\",\r\n \"subject\": \"CN=*.apim.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"foo.contoso.com\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://contosoapimkeyvault.vault.azure.net/secrets/contosoapis\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-03-01T16:03:10-08:00\",\r\n \"thumbprint\": \"B4069E4778DAE0DDF3D709BF54AFB5365842B5D7\",\r\n \"subject\": \"CN=*.contoso.com\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"foo2.contoso.com\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://contosoapimkeyvault.vault.azure.net/secrets/contosoapis\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-03-01T16:03:10-08:00\",\r\n \"thumbprint\": \"B4069E4778DAE0DDF3D709BF54AFB5365842B5D7\",\r\n \"subject\": \"CN=*.contoso.com\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.155.105\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"52.168.21.61\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://template-multihostname-eastus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"eb8ad1fc-997a-4bd3-b3f9-2d1d9132f9f2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/azapimtest\",\r\n \"name\": \"azapimtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF49jo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"notification@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-17T22:50:56.189441Z\",\r\n \"gatewayUrl\": \"https://azapimtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://azapimtest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://azapimtest.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://azapimtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://azapimtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"azapimtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.18.118\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/madeline-test/providers/Microsoft.ApiManagement/service/MadelineTestApim\",\r\n \"name\": \"MadelineTestApim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF5Bbc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"magordon@microsoft.com\",\r\n \"publisherName\": \"Test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-04T00:41:23.3430464Z\",\r\n \"gatewayUrl\": \"https://madelinetestapim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://madelinetestapim-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://madelinetestapim.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://madelinetestapim.management.azure-api.net\",\r\n \"scmUrl\": \"https://madelinetestapim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"madelinetestapim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.221.191\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/mutualcert\",\r\n \"name\": \"mutualcert\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TD4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apiuser@live.com\",\r\n \"publisherName\": \"apiuser\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-03T05:39:51.0562992Z\",\r\n \"gatewayUrl\": \"https://mutualcert.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mutualcert-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mutualcert.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://mutualcert.management.azure-api.net\",\r\n \"scmUrl\": \"https://mutualcert.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mutualcert.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mutualcert.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2018-03-17T14:55:07-07:00\",\r\n \"thumbprint\": \"DE57B67BA63D21E925DA8BEFA436E6B7553A4C19\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.88.191.200\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/rpbvttestservicevippool\",\r\n \"name\": \"rpbvttestservicevippool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAF9Q4k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:43:21.283724Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicevippool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicevippool-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicevippool.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicevippool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicevippool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicevippool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.22.122\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022\",\r\n \"name\": \"ps3022\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/aT0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T02:12:22.775763Z\",\r\n \"gatewayUrl\": \"https://ps3022.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3022-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3022.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3022.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3022.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3022.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.102.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-reserved-ip/providers/Microsoft.ApiManagement/service/apim-reserved-ip\",\r\n \"name\": \"apim-reserved-ip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAF8TGo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-27T23:49:34.8723514Z\",\r\n \"gatewayUrl\": \"https://apim-reserved-ip.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-reserved-ip-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-reserved-ip.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-reserved-ip.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-reserved-ip.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-reserved-ip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.151.16.119\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicetestpool\",\r\n \"name\": \"rpbvttestservicetestpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF8TCk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"apimanagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-09-27T03:54:47.7889108Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicetestpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicetestpool-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicetestpool.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicetestpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicetestpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicetestpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.217.205\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/testapiservice3\",\r\n \"name\": \"testapiservice3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TBk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mtuchkov@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-07T23:22:14.4260358Z\",\r\n \"gatewayUrl\": \"https://testapiservice3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice3.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice3.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-appGateway/providers/Microsoft.ApiManagement/service/kjoshiapiminternal\",\r\n \"name\": \"kjoshiapiminternal\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF9AJI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi publisher\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-02-02T01:42:09.1268424Z\",\r\n \"gatewayUrl\": \"https://kjoshiapiminternal.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiapiminternal-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiapiminternal.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiapiminternal.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiapiminternal.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiapiminternal.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimgatewaytest.preview.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:51:34-07:00\",\r\n \"thumbprint\": \"B4330123DBAB6DF5EDE1C8BE8C81F35E84493476\",\r\n \"subject\": \"CN=*.preview.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"apimgatewayportal.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2019-08-16T09:45:06-07:00\",\r\n \"thumbprint\": \"408D1EEB5AC5776D64698F560127A14BC6827910\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.74\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.20.0.5\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-appGateway/providers/Microsoft.Network/virtualNetworks/apim-appGateway-vnet/subnets/apim-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/LevyAPIMabcRG/providers/Microsoft.ApiManagement/service/LevyAPIMabc\",\r\n \"name\": \"LevyAPIMabc\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF5dHw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-licui@microsoft.com\",\r\n \"publisherName\": \"LevyAPIMabcORG\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-25T02:34:21.0207347Z\",\r\n \"gatewayUrl\": \"https://levyapimabc.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://levyapimabc-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://levyapimabc.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://levyapimabc.management.azure-api.net\",\r\n \"scmUrl\": \"https://levyapimabc.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"levyapimabc.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.100.85.6\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2019-11-16T18:54:27-08:00\",\r\n \"thumbprint\": \"34103B54CE82B1014A5A3E7A0F315CD9C4355722\",\r\n \"subject\": \"CN=*.apim.net\"\r\n }\r\n },\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2019-11-16T18:54:27-08:00\",\r\n \"thumbprint\": \"34103B54CE82B1014A5A3E7A0F315CD9C4355722\",\r\n \"subject\": \"CN=*.apim.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-worldcup\",\r\n \"name\": \"tweiss-worldcup\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAF8TCU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"taylor.weiss@comcast.net\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-07-19T19:24:30.0731987Z\",\r\n \"gatewayUrl\": \"https://tweiss-worldcup.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-worldcup-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-worldcup.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-worldcup.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-worldcup.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-worldcup.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.118.145.107\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/placeholdertest-aus\",\r\n \"name\": \"placeholdertest-aus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAAbrg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-01T05:03:21.7708485Z\",\r\n \"gatewayUrl\": \"https://placeholdertest-aus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"placeholdertest-aus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/kjoshitest666\",\r\n \"name\": \"kjoshitest666\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAAbZA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-26T00:41:14.9228729Z\",\r\n \"gatewayUrl\": \"https://kjoshitest666.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshitest666.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AUE-Canary\",\r\n \"name\": \"AUE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAAbQg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T19:35:39.0272012Z\",\r\n \"gatewayUrl\": \"https://aue-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aue-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/AzureFunctions-AustraliaEast/providers/Microsoft.ApiManagement/service/kjoshiauseastconsumption\",\r\n \"name\": \"kjoshiauseastconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAAbP0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi aus east\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-01T17:10:08.0959814Z\",\r\n \"gatewayUrl\": \"https://kjoshiauseastconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiauseastconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WEU-Canary\",\r\n \"name\": \"WEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAAj2s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:46.9010517Z\",\r\n \"gatewayUrl\": \"https://weu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"weu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps7310\",\r\n \"name\": \"ps7310\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAAlQ0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T03:10:28.8858085Z\",\r\n \"gatewayUrl\": \"https://ps7310.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7310.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/kjoshiwestusactivationtime\",\r\n \"name\": \"kjoshiwestusactivationtime\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVXA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T21:37:56.3857254Z\",\r\n \"gatewayUrl\": \"https://kjoshiwestusactivationtime.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwestusactivationtime.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.ApiManagement/service/vvktest\",\r\n \"name\": \"vvktest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWCI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"vvktest\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-18T02:55:19.1493932Z\",\r\n \"gatewayUrl\": \"https://vvktest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vvktest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gconsumption\",\r\n \"name\": \"gconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVs8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"gdfgdfg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-27T19:18:55.5935623Z\",\r\n \"gatewayUrl\": \"https://gconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/mkimtestzip\",\r\n \"name\": \"mkimtestzip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVSQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T04:09:11.698683Z\",\r\n \"gatewayUrl\": \"https://mkimtestzip.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimtestzip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS-Canary\",\r\n \"name\": \"WUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVpY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:57:07.2773048Z\",\r\n \"gatewayUrl\": \"https://wus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/serverless\",\r\n \"name\": \"serverless\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWCY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-19T21:41:06.5566242Z\",\r\n \"gatewayUrl\": \"https://serverless.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"serverless.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/kjoshibayconsumptiontest\",\r\n \"name\": \"kjoshibayconsumptiontest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAVfk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-30T18:29:36.0248608Z\",\r\n \"gatewayUrl\": \"https://kjoshibayconsumptiontest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshibayconsumptiontest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption\",\r\n \"name\": \"jijohn-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAV/k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-19T23:08:06.4716339Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-test1\",\r\n \"name\": \"galin-test1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWIg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-20T19:53:35.0666232Z\",\r\n \"gatewayUrl\": \"https://galin-test1.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-test1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"52dc5eb3-e5bb-4e89-b91f-83fa2fbea523\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NCUS-Canary\",\r\n \"name\": \"NCUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAblo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:24.8094208Z\",\r\n \"gatewayUrl\": \"https://ncus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ncus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/devilversionapim\",\r\n \"name\": \"devilversionapim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAbak=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"devil version apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-19T23:28:27.3885231Z\",\r\n \"gatewayUrl\": \"https://devilversionapim.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devilversionapim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/kjoshincus\",\r\n \"name\": \"kjoshincus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAbZg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-06T00:33:14.4663177Z\",\r\n \"gatewayUrl\": \"https://kjoshincus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshincus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-northcentraltest\",\r\n \"name\": \"gleb-northcentraltest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAeXQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-27T05:30:48.0387377Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-northcentraltest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-prod-3\",\r\n \"name\": \"galin-prod-3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAdtw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-25T13:40:13.6027918Z\",\r\n \"gatewayUrl\": \"https://galin-prod-3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-prod-3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"908f8972-f245-4301-a92c-95ee7767c26e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/apimcoldstart\",\r\n \"name\": \"apimcoldstart\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAAbsM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim cold start\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-15T22:46:02.8944291Z\",\r\n \"gatewayUrl\": \"https://apimcoldstart.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimcoldstart.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NEU-Canary\",\r\n \"name\": \"NEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAAjYs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:59:15.312131Z\",\r\n \"gatewayUrl\": \"https://neu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"neu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-bug-bash-pp2\",\r\n \"name\": \"jitin-bug-bash-pp2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"sku\": \"consumption\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAAjrY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-28T20:02:47.2274561Z\",\r\n \"gatewayUrl\": \"https://jitin-bug-bash-pp2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-bug-bash-pp2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SEA-Canary\",\r\n \"name\": \"SEA-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAAM9Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"SEA-Canary\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-12T00:56:05.1041042Z\",\r\n \"gatewayUrl\": \"https://sea-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sea-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshisoutheastasiaconsumption\",\r\n \"name\": \"kjoshisoutheastasiaconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANHk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi \",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-24T19:40:43.6388957Z\",\r\n \"gatewayUrl\": \"https://kjoshisoutheastasiaconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisoutheastasiaconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshisiteextension\",\r\n \"name\": \"kjoshisiteextension\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANAU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-24T19:54:27.2847632Z\",\r\n \"gatewayUrl\": \"https://kjoshisiteextension.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisiteextension.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshiseaconsumption\",\r\n \"name\": \"kjoshiseaconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANDQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-31T22:31:46.5381096Z\",\r\n \"gatewayUrl\": \"https://kjoshiseaconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiseaconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshiseaextensiontest\",\r\n \"name\": \"kjoshiseaextensiontest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANNo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi southeast\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-30T17:55:53.6631066Z\",\r\n \"gatewayUrl\": \"https://kjoshiseaextensiontest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiseaextensiontest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/mkimtestsiteext\",\r\n \"name\": \"mkimtestsiteext\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAANMo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T04:10:37.3343255Z\",\r\n \"gatewayUrl\": \"https://mkimtestsiteext.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimtestsiteext.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-centralindia\",\r\n \"name\": \"jijohnn-regionalrp-centralindia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central India\",\r\n \"etag\": \"AAAAAAH1I2w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:25:24.5383496Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-centralindia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-centralindia-centralindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-centralindia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-centralindia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-centralindia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-centralindia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-centralindia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.172.213.161\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-uaenorth\",\r\n \"name\": \"jijohnn-regionalrp-uaenorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE North\",\r\n \"etag\": \"AAAAAAH1HxE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:27:50.7286984Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-uaenorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-uaenorth-uaenorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-uaenorth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-uaenorth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-uaenorth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-uaenorth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-uaenorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.123.209.208\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southafricawest\",\r\n \"name\": \"jijohnn-regionalrp-southafricawest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Africa West\",\r\n \"etag\": \"AAAAAAH1IkQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:27:06.6285979Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southafricawest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southafricawest-southafricawest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southafricawest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southafricawest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southafricawest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southafricawest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southafricawest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"102.133.75.197\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-francesouth\",\r\n \"name\": \"jijohnn-regionalrp-francesouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"France South\",\r\n \"etag\": \"AAAAAAH1I1I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:25:47.4785653Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-francesouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-francesouth-francesouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-francesouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-francesouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-francesouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-francesouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-francesouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.136.132.113\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-canadaeast\",\r\n \"name\": \"jijohnn-regionalrp-canadaeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAH1IaA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:25.2929229Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-canadaeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-canadaeast-canadaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-canadaeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-canadaeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-canadaeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-canadaeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-canadaeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.212.101\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Canada-East/providers/Microsoft.ApiManagement/service/kjoshicanadaeast\",\r\n \"name\": \"kjoshicanadaeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAH1R7s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"sdafds\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-20T22:55:06.3667158Z\",\r\n \"gatewayUrl\": \"https://kjoshicanadaeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshicanadaeast-canadaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshicanadaeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshicanadaeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshicanadaeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshicanadaeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshicanadaeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.224.96\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS2EUAP-Canary\",\r\n \"name\": \"EUS2EUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAAKEQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:13.9169127Z\",\r\n \"gatewayUrl\": \"https://eus2euap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus2euap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-eastus2euap\",\r\n \"name\": \"jijohnn-regionalrp-eastus2euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAABF1k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:15:31.877585Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-eastus2euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-eastus2euap-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-eastus2euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-eastus2euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-eastus2euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-eastus2euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-eastus2euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.225.176.92\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-australiacentral\",\r\n \"name\": \"jijohnn-regionalrp-australiacentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Central\",\r\n \"etag\": \"AAAAAAAARys=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:20:18.4012013Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-australiacentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-australiacentral-australiacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-australiacentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-australiacentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-australiacentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-australiacentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-australiacentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.39.57\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AusCentral-Canary\",\r\n \"name\": \"AusCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"etag\": \"AAAAAAAACCk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:44:40.2114897Z\",\r\n \"gatewayUrl\": \"https://auscentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"auscentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-germanywestcentral\",\r\n \"name\": \"jijohnn-regionalrp-germanywestcentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"AAAAAAACxYw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:48.4092914Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-germanywestcentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-germanywestcentral-germanywestcentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-germanywestcentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-germanywestcentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-germanywestcentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-germanywestcentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-germanywestcentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.116.233.34\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-west\",\r\n \"name\": \"igo-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAA1iY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-06T18:29:53.3821Z\",\r\n \"gatewayUrl\": \"https://igo-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-west-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.100.11\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-prod-5\",\r\n \"name\": \"galin-prod-5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"galini\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAA1qU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-04T22:09:34.068603Z\",\r\n \"gatewayUrl\": \"https://galin-prod-5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://galin-prod-5-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://galin-prod-5.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://galin-prod-5.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://galin-prod-5.management.azure-api.net\",\r\n \"scmUrl\": \"https://galin-prod-5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-prod-5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.96.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westcentralus\",\r\n \"name\": \"jijohnn-regionalrp-westcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAA1iQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:20:03.9384806Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westcentralus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.200.249\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-norwayeast\",\r\n \"name\": \"jijohnn-regionalrp-norwayeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Norway East\",\r\n \"etag\": \"AAAAAAAAQXY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:23:02.4838099Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-norwayeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-norwayeast-norwayeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-norwayeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-norwayeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-norwayeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-norwayeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-norwayeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.120.76.184\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-switzerlandnorth\",\r\n \"name\": \"jijohnn-regionalrp-switzerlandnorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland North\",\r\n \"etag\": \"AAAAAAACtGw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:23:26.3175251Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-switzerlandnorth-switzerlandnorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-switzerlandnorth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-switzerlandnorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.107.71.88\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-koreasouth\",\r\n \"name\": \"jijohnn-regionalrp-koreasouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Korea South\",\r\n \"etag\": \"AAAAAAAAdo0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:02.5073744Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-koreasouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-koreasouth-koreasouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-koreasouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-koreasouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-koreasouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-koreasouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-koreasouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.231.188.157\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestIndia-Canary\",\r\n \"name\": \"WestIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAACB8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:53.8127048Z\",\r\n \"gatewayUrl\": \"https://westindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westindia\",\r\n \"name\": \"jijohnn-regionalrp-westindia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAAyyk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:43.8857559Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westindia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westindia-westindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westindia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westindia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westindia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westindia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westindia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.211.142.92\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-koreacentral\",\r\n \"name\": \"jijohnn-regionalrp-koreacentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"AAAAAAAAj50=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:23.097937Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-koreacentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-koreacentral-koreacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-koreacentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-koreacentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-koreacentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-koreacentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-koreacentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.231.103.222\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/KoreaCentral-Canary\",\r\n \"name\": \"KoreaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"AAAAAAAACCQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:39.9581781Z\",\r\n \"gatewayUrl\": \"https://koreacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"koreacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southafricanorth\",\r\n \"name\": \"jijohnn-regionalrp-southafricanorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAArDk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:20:55.9500542Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southafricanorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southafricanorth-southafricanorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southafricanorth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southafricanorth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southafricanorth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southafricanorth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southafricanorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"102.133.239.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthAfricaNorth-Canary\",\r\n \"name\": \"SouthAfricaNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAACCc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:45:41.6554527Z\",\r\n \"gatewayUrl\": \"https://southafricanorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southafricanorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKWest-Canary\",\r\n \"name\": \"UKWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK West\",\r\n \"etag\": \"AAAAAAAACB8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:59:01.8019107Z\",\r\n \"gatewayUrl\": \"https://ukwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ukwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-ukwest\",\r\n \"name\": \"jijohnn-regionalrp-ukwest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UK West\",\r\n \"etag\": \"AAAAAAAA8UI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:53.6066318Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-ukwest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-ukwest-ukwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-ukwest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-ukwest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-ukwest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-ukwest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-ukwest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.140.228.210\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-brazilsouth\",\r\n \"name\": \"jijohnn-regionalrp-brazilsouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAAA9F4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:23.9758637Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-brazilsouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-brazilsouth-brazilsouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-brazilsouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-brazilsouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-brazilsouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-brazilsouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-brazilsouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.41.33.195\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/BrazilSouth-Canary\",\r\n \"name\": \"BrazilSouth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAAACMQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:13.4420019Z\",\r\n \"gatewayUrl\": \"https://brazilsouth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"brazilsouth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastAsia-Canary\",\r\n \"name\": \"EastAsia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAAACCE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:36.9340814Z\",\r\n \"gatewayUrl\": \"https://eastasia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastasia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-eastasia\",\r\n \"name\": \"jijohnn-regionalrp-eastasia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAAAmkQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:11.2149033Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-eastasia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-eastasia-eastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-eastasia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-eastasia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-eastasia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-eastasia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-eastasia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.75.108.142\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthIndia-Canary\",\r\n \"name\": \"SouthIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South India\",\r\n \"etag\": \"AAAAAAAADK0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:49:09.9271745Z\",\r\n \"gatewayUrl\": \"https://southindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southindia\",\r\n \"name\": \"jijohnn-regionalrp-southindia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South India\",\r\n \"etag\": \"AAAAAAAAj6o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:42.3047727Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southindia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southindia-southindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southindia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southindia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southindia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southindia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southindia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.211.215.31\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaCentral-Canary\",\r\n \"name\": \"CanadaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"AAAAAAAACR4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:43.0182697Z\",\r\n \"gatewayUrl\": \"https://canadacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-canadacentral\",\r\n \"name\": \"jijohnn-regionalrp-canadacentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"AAAAAAAA8TE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:30.0089209Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-canadacentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-canadacentral-canadacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-canadacentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-canadacentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-canadacentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-canadacentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-canadacentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.85.254.232\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/ASE-Canary\",\r\n \"name\": \"ASE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"etag\": \"AAAAAAAACMg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:50:10.100096Z\",\r\n \"gatewayUrl\": \"https://ase-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ase-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-australiasoutheast\",\r\n \"name\": \"jijohnn-regionalrp-australiasoutheast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Southeast\",\r\n \"etag\": \"AAAAAAABCzc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:56.187808Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-australiasoutheast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-australiasoutheast-australiasoutheast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-australiasoutheast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-australiasoutheast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-australiasoutheast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-australiasoutheast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-australiasoutheast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.115.67.38\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanEast-Canary\",\r\n \"name\": \"JapanEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"etag\": \"AAAAAAAACCI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:08.4035509Z\",\r\n \"gatewayUrl\": \"https://japaneast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japaneast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-japaneast\",\r\n \"name\": \"jijohnn-regionalrp-japaneast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Japan East\",\r\n \"etag\": \"AAAAAAABBMg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:21:33.8733914Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-japaneast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-japaneast-japaneast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-japaneast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-japaneast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-japaneast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-japaneast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-japaneast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.188.3.150\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NCUS-Canary\",\r\n \"name\": \"NCUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAC8HI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:24.8094208Z\",\r\n \"gatewayUrl\": \"https://ncus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ncus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-northcentraltest\",\r\n \"name\": \"gleb-northcentraltest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAC76A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-27T05:30:48.0387377Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-northcentraltest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-prod-3\",\r\n \"name\": \"galin-prod-3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"galini\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAC6Uk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-04-25T13:40:13.6027918Z\",\r\n \"gatewayUrl\": \"https://galin-prod-3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-prod-3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"908f8972-f245-4301-a92c-95ee7767c26e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/testapiservice1\",\r\n \"name\": \"testapiservice1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAEE/I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-13T15:30:56.1167067Z\",\r\n \"gatewayUrl\": \"https://testapiservice1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice1-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice1.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.107.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-northcentralus\",\r\n \"name\": \"jijohnn-regionalrp-northcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAD0b0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:14:14.2749806Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-northcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-northcentralus-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-northcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-northcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-northcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-northcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-northcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.198.14\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicetestpool\",\r\n \"name\": \"rpbvttestservicetestpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAADxS4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"apimanagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-09-27T03:54:47.7889108Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicetestpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicetestpool-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicetestpool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicetestpool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicetestpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicetestpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicetestpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.217.205\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/apimcoldstart\",\r\n \"name\": \"apimcoldstart\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAC75c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim cold start\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-15T22:46:02.8944291Z\",\r\n \"gatewayUrl\": \"https://apimcoldstart.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimcoldstart.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SEA-Canary\",\r\n \"name\": \"SEA-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABJ+M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"SEA-Canary\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-12T00:56:05.1041042Z\",\r\n \"gatewayUrl\": \"https://sea-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sea-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkimtest/providers/Microsoft.ApiManagement/service/mkimconsumptionhostnametest\",\r\n \"name\": \"mkimconsumptionhostnametest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vlvinogr\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABKbs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-04T15:13:52.423024Z\",\r\n \"gatewayUrl\": \"https://mkimconsumptionhostnametest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimconsumptionhostnametest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-forwarded-southeastasia-01\",\r\n \"name\": \"jijohn-forwarded-southeastasia-01\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABuQo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-26T19:12:20.269709Z\",\r\n \"gatewayUrl\": \"https://jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-forwarded-southeastasia-01-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-forwarded-southeastasia-01.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-forwarded-southeastasia-01.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-forwarded-southeastasia-01.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-forwarded-southeastasia-01.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.35.216\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/seasia-test\",\r\n \"name\": \"seasia-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABua0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"tdtdrtr\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-20T02:27:41.6012757Z\",\r\n \"gatewayUrl\": \"https://seasia-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seasia-test-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seasia-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seasia-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seasia-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seasia-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seasia-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.187.71.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southeastasia\",\r\n \"name\": \"jijohnn-regionalrp-southeastasia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABt6Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:14:42.5305624Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southeastasia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southeastasia-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southeastasia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southeastasia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southeastasia.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southeastasia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southeastasia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.116.134\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fed-sea1\",\r\n \"name\": \"jitin-fed-sea1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABt7c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-28T00:41:44.8922579Z\",\r\n \"gatewayUrl\": \"https://jitin-fed-sea1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fed-sea1-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fed-sea1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fed-sea1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fed-sea1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fed-sea1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fed-sea1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.76.158.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Southeast-Asia/providers/Microsoft.ApiManagement/service/kjoshiseaconsumption\",\r\n \"name\": \"kjoshiseaconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAB3aQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apimgmt@microsoft.com\",\r\n \"publisherName\": \"API Management Team\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-31T22:31:46.5381096Z\",\r\n \"gatewayUrl\": \"https://kjoshiseaconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiseaconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"prodconsumptiongateway.preview.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/Api-Preview-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-04-01T14:49:11-07:00\",\r\n \"thumbprint\": \"1ABDE4BCD3E18241A984B66FB0F6C637FFB2C661\",\r\n \"subject\": \"CN=*.preview.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/mkimtestsiteext\",\r\n \"name\": \"mkimtestsiteext\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vlvinogr\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAABKbM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T04:10:37.3343255Z\",\r\n \"gatewayUrl\": \"https://mkimtestsiteext.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimtestsiteext.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/Devops-lrp\",\r\n \"name\": \"Devops-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABfYk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-12T00:00:24.5450525Z\",\r\n \"gatewayUrl\": \"https://devops-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devops-lrp-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devops-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devops-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devops-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devops-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devops-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.162.162\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westus2\",\r\n \"name\": \"jijohnn-regionalrp-westus2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABg5w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:10.4963607Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westus2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westus2-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westus2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westus2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westus2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westus2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westus2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.125.68.154\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS2-Canary\",\r\n \"name\": \"WUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAACOo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:12.1377274Z\",\r\n \"gatewayUrl\": \"https://wus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off\",\r\n \"name\": \"gleb-corr-off\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABa40=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adasdasda\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:11:18.1464015Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.14.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-on\",\r\n \"name\": \"gleb-corr-on\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABa48=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"asdasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:01:45.0345532Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-on.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-on-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-on.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-on.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-on.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-on.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-on.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.247.221.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.ApiManagement/service/kjoshi-serviceendpoint\",\r\n \"name\": \"kjoshi-serviceendpoint\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABfoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-10T01:01:48.5874136Z\",\r\n \"gatewayUrl\": \"https://kjoshi-serviceendpoint.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshi-serviceendpoint-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshi-serviceendpoint.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshi-serviceendpoint.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshi-serviceendpoint.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshi-serviceendpoint.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshi-serviceendpoint.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshi-gateway.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-22T10:55:22-07:00\",\r\n \"thumbprint\": \"2C356B0CD4C3176EFC5330A665EDD8877474C601\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.133.236\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.26.0.5\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.Network/virtualNetworks/kjoshi-serviceendponit/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-trace\",\r\n \"name\": \"gleb-trace\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABa5M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dfsdfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-16T19:32:41.6343295Z\",\r\n \"gatewayUrl\": \"https://gleb-trace.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-trace-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-trace.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-trace.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-trace.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-trace.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-trace.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.8.221\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-reserved-ip/providers/Microsoft.ApiManagement/service/apim-reserved-ip\",\r\n \"name\": \"apim-reserved-ip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAABa4s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-27T23:49:34.8723514Z\",\r\n \"gatewayUrl\": \"https://apim-reserved-ip.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-reserved-ip-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-reserved-ip.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-reserved-ip.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-reserved-ip.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-reserved-ip.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-reserved-ip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.151.16.119\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicedefaultpool\",\r\n \"name\": \"rpbvttestservicedefaultpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACOO8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Samirs Company\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:42:16.6832196Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicedefaultpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicedefaultpool-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicedefaultpool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicedefaultpool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicedefaultpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicedefaultpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicedefaultpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.166.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-centralus\",\r\n \"name\": \"jijohnn-regionalrp-centralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACM8I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:13.191145Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-centralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-centralus-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-centralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-centralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-centralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-centralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-centralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.227.4\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUS-Canary\",\r\n \"name\": \"CUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAAD6U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:47:24.9248008Z\",\r\n \"gatewayUrl\": \"https://cus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654\",\r\n \"name\": \"ps654\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjpI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T22:03:02.4411385Z\",\r\n \"gatewayUrl\": \"https://ps654.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps654-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps654.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps654.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps654.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps654.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps654.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.51.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vifedo2/providers/Microsoft.ApiManagement/service/vifedomulti\",\r\n \"name\": \"vifedomulti\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAAt1A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:17:37.8487751Z\",\r\n \"gatewayUrl\": \"https://vifedomulti.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedomulti.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316\",\r\n \"name\": \"ps8316\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjq0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T22:50:19.0532744Z\",\r\n \"gatewayUrl\": \"https://ps8316.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8316-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8316.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8316.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8316.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8316.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8316.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.41.107\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vifedoRGRoup2/providers/Microsoft.ApiManagement/service/vifedowebscout\",\r\n \"name\": \"vifedowebscout\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACCfk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-22T00:25:43.7662916Z\",\r\n \"gatewayUrl\": \"https://vifedowebscout.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedowebscout-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedowebscout.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedowebscout.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedowebscout.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedowebscout.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedowebscout.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.121.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKS-Canary\",\r\n \"name\": \"UKS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK South\",\r\n \"etag\": \"AAAAAAAACMU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:47.9089467Z\",\r\n \"gatewayUrl\": \"https://uks-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uks-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-uksouth\",\r\n \"name\": \"jijohnn-regionalrp-uksouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UK South\",\r\n \"etag\": \"AAAAAAABYgg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:19:04.9632254Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-uksouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-uksouth-uksouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-uksouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-uksouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-uksouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-uksouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-uksouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.140.108.73\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-australiaeast\",\r\n \"name\": \"jijohnn-regionalrp-australiaeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAADR0o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:14:55.1641952Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-australiaeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-australiaeast-australiaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-australiaeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-australiaeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-australiaeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-australiaeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-australiaeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.75.143.17\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/placeholdertest-aus\",\r\n \"name\": \"placeholdertest-aus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mkim\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAABwvM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-01T05:03:21.7708485Z\",\r\n \"gatewayUrl\": \"https://placeholdertest-aus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"placeholdertest-aus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-aueast\",\r\n \"name\": \"gleb-aueast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAABwtY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"czxczxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-25T21:13:49.2851403Z\",\r\n \"gatewayUrl\": \"https://gleb-aueast.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-aueast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AUE-Canary\",\r\n \"name\": \"AUE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAABwZk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T19:35:39.0272012Z\",\r\n \"gatewayUrl\": \"https://aue-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aue-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-japanwest\",\r\n \"name\": \"jijohnn-regionalrp-japanwest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Japan West\",\r\n \"etag\": \"AAAAAAAAIf8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:26:04.1181013Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-japanwest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-japanwest-japanwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-japanwest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-japanwest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-japanwest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-japanwest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-japanwest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.215.24.107\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/ogf\",\r\n \"name\": \"ogf\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAESV0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-08T18:11:26.9902003Z\",\r\n \"gatewayUrl\": \"https://ogf.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogf-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogf.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogf.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogf.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogf.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogf.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.118.248.90\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-test\",\r\n \"name\": \"igo-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIog=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-19T18:40:24.5701371Z\",\r\n \"gatewayUrl\": \"https://igo-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.59.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohndiagnosticlogs\",\r\n \"name\": \"jijohndiagnosticlogs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIs8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"MSFT\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-02-01T20:53:45.1477718Z\",\r\n \"gatewayUrl\": \"https://jijohndiagnosticlogs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohndiagnosticlogs-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohndiagnosticlogs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohndiagnosticlogs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohndiagnosticlogs.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohndiagnosticlogs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohndiagnosticlogs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.64.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gconsumption\",\r\n \"name\": \"gconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADCAY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"gdfgdfg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-27T19:18:55.5935623Z\",\r\n \"gatewayUrl\": \"https://gconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-inittest\",\r\n \"name\": \"gleb-inittest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEjFE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dsfsdfsdfs\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-19T00:43:17.2463706Z\",\r\n \"gatewayUrl\": \"https://gleb-inittest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-inittest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-inittest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-inittest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-inittest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-inittest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-inittest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.225.20\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/aztest\",\r\n \"name\": \"aztest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"cffd\": \"acs-dcos-agent-private-1646DB44-vmss0\",\r\n \"My lovely tag\": \"My lovely tag value\",\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEjmE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"API Management UXX\",\r\n \"notificationSenderEmail\": \"contoso@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-24T21:24:07.2813367Z\",\r\n \"gatewayUrl\": \"https://aztest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://aztest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://aztest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://aztest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://aztest.management.azure-api.net\",\r\n \"scmUrl\": \"https://aztest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aztest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"portal.apim.dev\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2024-05-20T04:42:43-07:00\",\r\n \"thumbprint\": \"E3FFF41A233917FCEDDCDB4EB47B26F171E34A63\",\r\n \"subject\": \"CN=*.apim.dev\"\r\n },\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Scm\",\r\n \"hostName\": \"contoso.apim.dev\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2024-05-20T04:42:43-07:00\",\r\n \"thumbprint\": \"E3FFF41A233917FCEDDCDB4EB47B26F171E34A63\",\r\n \"subject\": \"CN=*.apim.dev\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.136.132\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9b681823-8edc-4e3e-84e4-4a5616a2f28b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/alzaslondemo\",\r\n \"name\": \"alzaslondemo\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIps=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:42:33.4602777Z\",\r\n \"gatewayUrl\": \"https://alzaslondemo.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzaslondemo-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzaslondemo.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzaslondemo.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzaslondemo.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzaslondemo.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzaslondemo.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.210.62.140\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimanagement-cors-proxy-df/providers/Microsoft.ApiManagement/service/apimanagement-cors-proxy-df\",\r\n \"name\": \"apimanagement-cors-proxy-df\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIpE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Azure API Management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-14T01:35:21.371366Z\",\r\n \"gatewayUrl\": \"https://apimanagement-cors-proxy-df.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimanagement-cors-proxy-df-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimanagement-cors-proxy-df.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apimanagement-cors-proxy-df.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimanagement-cors-proxy-df.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimanagement-cors-proxy-df.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimanagement-cors-proxy-df.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.106.204\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/devenv\",\r\n \"name\": \"devenv\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-05-05T23:07:15.5827029Z\",\r\n \"gatewayUrl\": \"https://devenv.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devenv-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devenv.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devenv.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devenv.management.azure-api.net\",\r\n \"scmUrl\": \"https://devenv.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devenv.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.94.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.Network/virtualNetworks/azvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westus\",\r\n \"name\": \"jijohnn-regionalrp-westus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAERu0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:12:28.9452269Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westus-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.163.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkim-apim-serverless/providers/Microsoft.ApiManagement/service/mkimtestzip\",\r\n \"name\": \"mkimtestzip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vlvinogr\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADCFQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-01T04:09:11.698683Z\",\r\n \"gatewayUrl\": \"https://mkimtestzip.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mkimtestzip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/APIM-AM-August\",\r\n \"name\": \"APIM-AM-August\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAER2I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"AMAPIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-01T10:55:21.1250691Z\",\r\n \"gatewayUrl\": \"https://apim-am-august.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-am-august-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-am-august.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-am-august.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-am-august.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-am-august.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-am-august.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"foo.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.46.109\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS-Canary\",\r\n \"name\": \"WUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADCOI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:57:07.2773048Z\",\r\n \"gatewayUrl\": \"https://wus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestApiAm\",\r\n \"name\": \"TestApiAm\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEUFg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPIAm\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-15T14:26:10.3016602Z\",\r\n \"gatewayUrl\": \"https://testapiam.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiam-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiam.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiam.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiam.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiam.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiam.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.174.106\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/serverless\",\r\n \"name\": \"serverless\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADB9M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-19T21:41:06.5566242Z\",\r\n \"gatewayUrl\": \"https://serverless.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"serverless.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAER3o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-16T22:17:28.5884885Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservice.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.45.228.209\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestAPIManage123\",\r\n \"name\": \"TestAPIManage123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAER04=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPI\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-11T14:24:14.6253855Z\",\r\n \"gatewayUrl\": \"https://testapimanage123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapimanage123-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapimanage123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapimanage123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapimanage123.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapimanage123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapimanage123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.40.7.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off2\",\r\n \"name\": \"gleb-corr-off2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIos=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dassdsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-25T22:58:27.2967081Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off2-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off2.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.252.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-57-outage/providers/Microsoft.ApiManagement/service/kjoshisncablecut\",\r\n \"name\": \"kjoshisncablecut\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAERrk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"sfdasdf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-16T17:52:35.2856029Z\",\r\n \"gatewayUrl\": \"https://kjoshisncablecut.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisncablecut-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisncablecut.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisncablecut.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisncablecut.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisncablecut.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisncablecut.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gatewaykjoshi.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-22T10:55:22-07:00\",\r\n \"thumbprint\": \"2C356B0CD4C3176EFC5330A665EDD8877474C601\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gatewaykjoshi2.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-22T10:55:22-07:00\",\r\n \"thumbprint\": \"2C356B0CD4C3176EFC5330A665EDD8877474C601\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.117.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"14d2a59a-3ef8-4cf7-b783-66fa6d9ac26b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption\",\r\n \"name\": \"jijohn-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADCJw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-19T23:08:06.4716339Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"41128fb9-0565-4a21-ad64-ef9282afb49c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/galin-test/providers/Microsoft.ApiManagement/service/galin-test1\",\r\n \"name\": \"galin-test1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"galini\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAADB5w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"galini@microsoft.com\",\r\n \"publisherName\": \"dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-20T19:53:35.0666232Z\",\r\n \"gatewayUrl\": \"https://galin-test1.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"galin-test1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"52dc5eb3-e5bb-4e89-b91f-83fa2fbea523\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/testapiservice3\",\r\n \"name\": \"testapiservice3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEIoY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mtuchkov@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-07T23:22:14.4260358Z\",\r\n \"gatewayUrl\": \"https://testapiservice3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice3.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.ApiManagement/service/vvktest2\",\r\n \"name\": \"vvktest2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAEeGo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"vvktest\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-29T22:39:06.3998763Z\",\r\n \"gatewayUrl\": \"https://vvktest2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vvktest2-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vvktest2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vvktest2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vvktest2.management.azure-api.net\",\r\n \"scmUrl\": \"https://vvktest2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vvktest2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.8.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 6\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-francecentral\",\r\n \"name\": \"jijohnn-regionalrp-francecentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"France Central\",\r\n \"etag\": \"AAAAAAAAMiA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:25:39.7350589Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-francecentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-francecentral-francecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-francecentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-francecentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-francecentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-francecentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-francecentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.134.21\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Special-IP-Assigned-RG-Do-Not-Delete/providers/Microsoft.ApiManagement/service/kjoshisnoutagescus\",\r\n \"name\": \"kjoshisnoutagescus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAAKPI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi south central us\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-05T16:57:56.8923548Z\",\r\n \"gatewayUrl\": \"https://kjoshisnoutagescus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisnoutagescus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisnoutagescus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisnoutagescus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisnoutagescus.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisnoutagescus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisnoutagescus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.214.49.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/accessibility\",\r\n \"name\": \"accessibility\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAAO4A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-12T22:41:49.8713478Z\",\r\n \"gatewayUrl\": \"https://accessibility.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://accessibility-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://accessibility.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://accessibility.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://accessibility.management.azure-api.net\",\r\n \"scmUrl\": \"https://accessibility.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"accessibility.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.65.192.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/devportal-lrp\",\r\n \"name\": \"devportal-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAAMn8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"API management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-16T17:38:14.081027Z\",\r\n \"gatewayUrl\": \"https://devportal-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devportal-lrp-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devportal-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devportal-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devportal-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devportal-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devportal-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.74.240.180\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5ad27f6-e2f1-48e2-a287-d96d6a2bc8d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-southcentralus\",\r\n \"name\": \"jijohnn-regionalrp-southcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAARCQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:27:12.0302386Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-southcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-southcentralus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-southcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-southcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-southcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-southcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-southcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.30.203\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-eastus2\",\r\n \"name\": \"jijohnn-regionalrp-eastus2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAAfMk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:29.1774148Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-eastus2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-eastus2-eastus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-eastus2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-eastus2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-eastus2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-eastus2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-eastus2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.70.205.103\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS-Canary\",\r\n \"name\": \"EUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAAH54=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:52.9254769Z\",\r\n \"gatewayUrl\": \"https://eus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/testapiservice5\",\r\n \"name\": \"testapiservice5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAB7go=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"testapiservice5@testapiservice5.com\",\r\n \"publisherName\": \"testapiservice5\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-14T03:18:01.7544432Z\",\r\n \"gatewayUrl\": \"https://testapiservice5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice5-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice5.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice5.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice5.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.72.73.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-eastus\",\r\n \"name\": \"jijohnn-regionalrp-eastus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACZU4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:18:58.2142701Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-eastus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-eastus-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-eastus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-eastus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-eastus.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-eastus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-eastus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"138.91.124.121\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-throne\",\r\n \"name\": \"tweiss-throne\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tweiss\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACaFw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"APIM Test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-09T04:37:52.4052775Z\",\r\n \"gatewayUrl\": \"https://tweiss-throne.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-throne-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-throne.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tweiss-throne.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-throne.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-throne.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-throne.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.117.125.167\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/rpbvttestservicevippool\",\r\n \"name\": \"rpbvttestservicevippool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACetI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:43:21.283724Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicevippool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicevippool-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicevippool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicevippool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicevippool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicevippool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicevippool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.22.122\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NEU-Canary\",\r\n \"name\": \"NEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAD6Ks=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:59:15.312131Z\",\r\n \"gatewayUrl\": \"https://neu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"neu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-bug-bash-pp2\",\r\n \"name\": \"jitin-bug-bash-pp2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"sku\": \"consumption\",\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAD5ys=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-28T20:02:47.2274561Z\",\r\n \"gatewayUrl\": \"https://jitin-bug-bash-pp2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-bug-bash-pp2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-northeurope\",\r\n \"name\": \"jijohnn-regionalrp-northeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAGE2k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:14:29.591026Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-northeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-northeurope-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-northeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-northeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-northeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-northeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-northeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.127.189.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fwd-north-europe\",\r\n \"name\": \"jitin-fwd-north-europe\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAF2rY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T00:58:18.8388979Z\",\r\n \"gatewayUrl\": \"https://jitin-fwd-north-europe.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fwd-north-europe-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fwd-north-europe.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fwd-north-europe.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fwd-north-europe.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fwd-north-europe.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fwd-north-europe.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.164.120.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-westeurope\",\r\n \"name\": \"jijohnn-regionalrp-westeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAIr9A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:18:54.1385507Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-westeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-westeurope-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-westeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-westeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-westeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-westeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-westeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.95.140.57\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WEU-Canary\",\r\n \"name\": \"WEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAFiZE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:46.9010517Z\",\r\n \"gatewayUrl\": \"https://weu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"weu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/samiram2\",\r\n \"name\": \"samiram2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"sasolank\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAFiDc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-27T01:33:42.4912513Z\",\r\n \"gatewayUrl\": \"https://samiram2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"samiram2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshiconsumption/providers/Microsoft.ApiManagement/service/kjoshiwesteurope\",\r\n \"name\": \"kjoshiwesteurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAFjQw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi westeurope\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-25T22:56:34.1956241Z\",\r\n \"gatewayUrl\": \"https://kjoshiwesteurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwesteurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.ApiManagement/service/vpnpremium\",\r\n \"name\": \"vpnpremium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAHxrE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-04-12T00:20:15.6018952Z\",\r\n \"gatewayUrl\": \"https://vpnpremium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vpnpremium.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vpnpremium.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vpnpremium.management.azure-api.net\",\r\n \"scmUrl\": \"https://vpnpremium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vpnpremium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxy.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://samir-msi-keyvault.vault.azure.net/secrets/msicertificate\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-12-18T03:11:47-08:00\",\r\n \"thumbprint\": \"9833D531D7A45C565766F2A85908BD3692E0BD3F\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.94.204.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"66f34ee9-17bd-48d3-82d3-fbdfe9661aa9\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ca1d33f7-3cf9-42ec-b3e9-d526a1ee953a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/test-fwd-westeurope\",\r\n \"name\": \"test-fwd-westeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAIn/U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T01:01:10.5192286Z\",\r\n \"gatewayUrl\": \"https://test-fwd-westeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://test-fwd-westeurope-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://test-fwd-westeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://test-fwd-westeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://test-fwd-westeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://test-fwd-westeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"test-fwd-westeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.45.30.219\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps7993\",\r\n \"name\": \"ps7993\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAJPxU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T23:33:35.6408771Z\",\r\n \"gatewayUrl\": \"https://ps7993.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7993.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-australiacentral2\",\r\n \"name\": \"jijohnn-regionalrp-australiacentral2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAAPEs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:16.3321787Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-australiacentral2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-australiacentral2-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-australiacentral2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-australiacentral2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-australiacentral2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-australiacentral2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-australiacentral2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.70.10\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-cbr2\",\r\n \"name\": \"jitin-cbr2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAAPEk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-17T22:22:26.3793973Z\",\r\n \"gatewayUrl\": \"https://jitin-cbr2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-cbr2-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-cbr2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-cbr2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-cbr2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-cbr2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-cbr2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.71.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AustraliaCentral2-Canary\",\r\n \"name\": \"AustraliaCentral2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAACCM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-05T22:01:59.2396648Z\",\r\n \"gatewayUrl\": \"https://australiacentral2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"australiacentral2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-forwarded-euap\",\r\n \"name\": \"jitin-dedicated-forwarded-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkxk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-06T01:45:14.4195684Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-forwarded-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-forwarded-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-forwarded-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-forwarded-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-forwarded-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-forwarded-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-forwarded-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.54.141\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-centraluseuap\",\r\n \"name\": \"jijohnn-regionalrp-centraluseuap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkx0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:15:26.8265075Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-centraluseuap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-centraluseuap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-centraluseuap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-centraluseuap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-centraluseuap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-centraluseuap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-centraluseuap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.162.80\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-global-rp\",\r\n \"name\": \"jitin-dedicated-global-rp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADlCY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T21:17:27.8631556Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-global-rp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-global-rp-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-global-rp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-global-rp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-global-rp.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-global-rp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-global-rp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.55.250\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-fwded-euap\",\r\n \"name\": \"jitin-dedicated-fwded-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkyc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T22:54:10.528244Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-fwded-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-fwded-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-fwded-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-fwded-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-fwded-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-fwded-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-fwded-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.48.106\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUSEUAP-Canary\",\r\n \"name\": \"CUSEUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAATZQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:40:38.7929014Z\",\r\n \"gatewayUrl\": \"https://cuseuap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cuseuap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-rolloverTest/providers/Microsoft.ApiManagement/service/centraluseuapregional\",\r\n \"name\": \"centraluseuapregional\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkxs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Test new regional\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-11T21:09:53.1070791Z\",\r\n \"gatewayUrl\": \"https://centraluseuapregional.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://centraluseuapregional-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://centraluseuapregional.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://centraluseuapregional.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://centraluseuapregional.management.azure-api.net\",\r\n \"scmUrl\": \"https://centraluseuapregional.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"centraluseuapregional.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.55.145\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US-EUAP/providers/Microsoft.ApiManagement/service/kjoshicentralusregion\",\r\n \"name\": \"kjoshicentralusregion\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkx8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi euap\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-11T20:05:09.9165159Z\",\r\n \"gatewayUrl\": \"https://kjoshicentralusregion.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshicentralusregion-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshicentralusregion.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshicentralusregion.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshicentralusregion.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshicentralusregion.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshicentralusregion.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshi.preview.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-04-01T14:49:11-07:00\",\r\n \"thumbprint\": \"1ABDE4BCD3E18241A984B66FB0F6C637FFB2C661\",\r\n \"subject\": \"CN=*.preview.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.164.79\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tenant-canary-bvts/providers/Microsoft.ApiManagement/service/alzasloneuap\",\r\n \"name\": \"alzasloneuap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADkzY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T22:39:46.5215063Z\",\r\n \"gatewayUrl\": \"https://alzasloneuap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzasloneuap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzasloneuap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzasloneuap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzasloneuap.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzasloneuap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzasloneuap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.59.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tenant-canary-bvts/providers/Microsoft.ApiManagement/service/OGF-02202020-DevPortal\",\r\n \"name\": \"OGF-02202020-DevPortal\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAADk2A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"Test DevPortal\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-20T10:01:17.5515111Z\",\r\n \"gatewayUrl\": \"https://ogf-02202020-devportal.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogf-02202020-devportal-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogf-02202020-devportal.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogf-02202020-devportal.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogf-02202020-devportal.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogf-02202020-devportal.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogf-02202020-devportal.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.169.102\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-uae-central\",\r\n \"name\": \"jitin-uae-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAAfaI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-12T18:44:51.9105707Z\",\r\n \"gatewayUrl\": \"https://jitin-uae-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-uae-central-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-uae-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-uae-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-uae-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-uae-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-uae-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.64.181\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjokshiuaecentraldedicated\",\r\n \"name\": \"kjokshiuaecentraldedicated\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAAfZ0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-05T22:32:09.5830682Z\",\r\n \"gatewayUrl\": \"https://kjokshiuaecentraldedicated.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjokshiuaecentraldedicated-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjokshiuaecentraldedicated.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjokshiuaecentraldedicated.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjokshiuaecentraldedicated.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjokshiuaecentraldedicated.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjokshiuaecentraldedicated.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.75.141\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-uaecentral\",\r\n \"name\": \"jijohnn-regionalrp-uaecentral\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAAfaQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:15:16.3229461Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-uaecentral.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-uaecentral-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-uaecentral.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-uaecentral.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-uaecentral.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-uaecentral.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-uaecentral.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.71.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-germanynorth\",\r\n \"name\": \"jijohnn-regionalrp-germanynorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany North\",\r\n \"etag\": \"AAAAAAAAMpQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:22:36.29937Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-germanynorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-germanynorth-germanynorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-germanynorth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-germanynorth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-germanynorth.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-germanynorth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-germanynorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.116.211.129\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-norwaywest\",\r\n \"name\": \"jijohnn-regionalrp-norwaywest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Norway West\",\r\n \"etag\": \"AAAAAAAAD74=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:23:16.4693474Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-norwaywest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-norwaywest-norwaywest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-norwaywest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-norwaywest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-norwaywest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-norwaywest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-norwaywest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.120.167.180\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-armenable-test/providers/Microsoft.ApiManagement/service/jijohnn-regionalrp-switzerlandwest\",\r\n \"name\": \"jijohnn-regionalrp-switzerlandwest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland West\",\r\n \"etag\": \"AAAAAAACQC8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jijohn\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-16T00:23:37.2813468Z\",\r\n \"gatewayUrl\": \"https://jijohnn-regionalrp-switzerlandwest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohnn-regionalrp-switzerlandwest-switzerlandwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohnn-regionalrp-switzerlandwest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohnn-regionalrp-switzerlandwest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohnn-regionalrp-switzerlandwest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohnn-regionalrp-switzerlandwest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohnn-regionalrp-switzerlandwest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.107.224.93\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps7310?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzMxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps7993?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5OTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5e82aa70-9f33-4efa-b0dc-cd095a1cf2f5" + "6a5a3bfd-6cf7-448e-a322-e9252e39c6c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4172,10 +6225,10 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAlQk=\"" + "\"AAAAAAAJPxE=\"" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps7310/operationresults/cHM3MzEwX0FjdF8xNWI4MTg4MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps7993/operationresults/d2VzdGV1cm9wZTpwczc5OTNfQWN0XzFjMzA4Yjc1?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -4184,31 +6237,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b02be437-cba0-4905-b692-78d2b4b3253d", - "0c82ed71-5259-4912-882b-ee923ad64c5b", - "76df26af-7205-45e3-b51e-22d6068be597" + "534fcc7c-a981-4c0a-a648-c0f2092e7c48", + "a58fa67a-ec80-45fc-9f5d-393d915f1731" ], "Server": [ - "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "4ce32368-f2f2-4605-90dc-e142d835c56c" + "1eaf0d84-b1a5-4610-8afb-6984d0d8de0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031029Z:4ce32368-f2f2-4605-90dc-e142d835c56c" + "WESTUS:20200223T233338Z:1eaf0d84-b1a5-4610-8afb-6984d0d8de0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:10:28 GMT" + "Sun, 23 Feb 2020 23:33:37 GMT" ], "Content-Length": [ - "1113" + "1108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4217,20 +6268,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps7310\",\r\n \"name\": \"ps7310\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAAlQk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-05-08T03:10:28.8858085Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps7993\",\r\n \"name\": \"ps7993\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAJPxE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-23T23:33:35.6408771Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps7310/operationresults/cHM3MzEwX0FjdF8xNWI4MTg4MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzMxMC9vcGVyYXRpb25yZXN1bHRzL2NITTNNekV3WDBGamRGOHhOV0k0TVRnNE1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps7993/operationresults/d2VzdGV1cm9wZTpwczc5OTNfQWN0XzFjMzA4Yjc1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5OTMvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEdWMWNtOXdaVHB3Y3pjNU9UTmZRV04wWHpGak16QTRZamMxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4244,30 +6295,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "147bcdfe-7fbd-45e9-9f78-28bccd02f9fb", - "e71e44c3-4a4e-4504-9efd-24bc1d30f61f" + "6c0e3105-8c6f-4284-96a7-3c9772985ad9" ], "Server": [ - "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11933" ], "x-ms-correlation-request-id": [ - "935a25e0-1ec2-4f8f-a297-dd2fd7b30e40" + "8877ec78-22d2-48b3-b8e2-c4e2e520b025" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031129Z:935a25e0-1ec2-4f8f-a297-dd2fd7b30e40" + "WESTUS:20200223T233439Z:8877ec78-22d2-48b3-b8e2-c4e2e520b025" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:11:29 GMT" + "Sun, 23 Feb 2020 23:34:38 GMT" ], "Content-Length": [ - "1648" + "1643" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4276,26 +6325,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps7310\",\r\n \"name\": \"ps7310\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAAlQ0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T03:10:28.8858085Z\",\r\n \"gatewayUrl\": \"https://ps7310.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7310.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps7993\",\r\n \"name\": \"ps7993\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAJPxU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T23:33:35.6408771Z\",\r\n \"gatewayUrl\": \"https://ps7993.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7993.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1ND9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b10bddee-7062-4b85-9f83-07064ddc2a8d" + "4b1d4f91-f83f-4d10-b579-6e89ffb461ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4306,7 +6355,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X1Rlcm1fNzViZWRjNDQ=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X1Rlcm1fZWY2YmM0NjQ=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -4315,7 +6364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38a42752-5f01-47df-8f7d-0c0ac9f13e4e" + "04dd7cae-404f-4716-a928-0240591f001e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4324,19 +6373,19 @@ "14999" ], "x-ms-correlation-request-id": [ - "c144e811-6a12-4912-be70-375d6fee25cb" + "863351ce-5b02-46ec-a3a6-587bc5329de8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031131Z:c144e811-6a12-4912-be70-375d6fee25cb" + "WESTUS:20200223T233441Z:863351ce-5b02-46ec-a3a6-587bc5329de8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:11:31 GMT" + "Sun, 23 Feb 2020 23:34:40 GMT" ], "Content-Length": [ - "1744" + "1784" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4345,20 +6394,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246\",\r\n \"name\": \"ps3246\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/av0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-05-08T02:39:54.3012885Z\",\r\n \"gatewayUrl\": \"https://ps3246.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3246-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3246.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3246.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3246.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"23.101.116.252\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654\",\r\n \"name\": \"ps654\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjq4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2020-02-23T22:03:02.4411385Z\",\r\n \"gatewayUrl\": \"https://ps654.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps654-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps654.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps654.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps654.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps654.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.122.51.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X1Rlcm1fNzViZWRjNDQ=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDFSbGNtMWZOelZpWldSak5EUT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X1Rlcm1fZWY2YmM0NjQ=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDFSbGNtMWZaV1kyWW1NME5qUT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4368,29 +6417,149 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X1Rlcm1fZWY2YmM0NjQ=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5347c514-d8e5-41b3-8df9-5f2be0e85883" + "1ee390d4-8d83-4427-8449-e7cd603a830a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11935" + ], + "x-ms-correlation-request-id": [ + "2717b861-e399-4979-af49-abe5f1735014" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T233542Z:2717b861-e399-4979-af49-abe5f1735014" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:35:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X1Rlcm1fZWY2YmM0NjQ=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDFSbGNtMWZaV1kyWW1NME5qUT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X1Rlcm1fZWY2YmM0NjQ=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a4cc029-6862-40b7-9296-281338f5ccef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "27afac24-9096-4438-b0ef-b1c511c75f85" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T233642Z:27afac24-9096-4438-b0ef-b1c511c75f85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:36:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X1Rlcm1fZWY2YmM0NjQ=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDFSbGNtMWZaV1kyWW1NME5qUT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "299cccec-3704-41d5-b1d3-c22848afbc8e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" ], "x-ms-correlation-request-id": [ - "c20d0767-1d5f-4c73-8792-02fde25f5992" + "d89cbc6c-fe10-430b-b393-ab6d3102b0d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031251Z:c20d0767-1d5f-4c73-8792-02fde25f5992" + "WESTUS:20200223T233742Z:d89cbc6c-fe10-430b-b393-ab6d3102b0d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:12:50 GMT" + "Sun, 23 Feb 2020 23:37:42 GMT" ], "Expires": [ "-1" @@ -4403,16 +6572,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3246/operationresults/cHMzMjQ2X1Rlcm1fNzViZWRjNDQ=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzI0Ni9vcGVyYXRpb25yZXN1bHRzL2NITXpNalEyWDFSbGNtMWZOelZpWldSak5EUT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps654/operationresults/Y2VudHJhbHVzOnBzNjU0X1Rlcm1fZWY2YmM0NjQ=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY1NC9vcGVyYXRpb25yZXN1bHRzL1kyVnVkSEpoYkhWek9uQnpOalUwWDFSbGNtMWZaV1kyWW1NME5qUT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4426,25 +6595,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d77a615-56bd-4cfb-ba23-bd533c7eb0e3" + "86e85101-bd76-469d-9c36-ab1445fb485e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11932" ], "x-ms-correlation-request-id": [ - "a73ad3c7-d5de-4e8d-9563-1275d8892fa7" + "7da4211b-c28b-4fcb-a26c-3da11946c04d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031251Z:a73ad3c7-d5de-4e8d-9563-1275d8892fa7" + "WESTUS:20200223T233742Z:7da4211b-c28b-4fcb-a26c-3da11946c04d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:12:50 GMT" + "Sun, 23 Feb 2020 23:37:42 GMT" ], "Expires": [ "-1" @@ -4457,22 +6626,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTY/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e74ea12-a85c-4804-abe7-6501809b9b1c" + "0290ea60-67f3-4c7d-ab9b-388f07026902" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4483,7 +6652,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX1Rlcm1fOTBhODkxYTY=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9UZXJtX2E1MzkzODM0?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -4492,7 +6661,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b79704f-41b3-474f-b258-ea8be9cde67b" + "0ecff066-4371-453b-b2d4-b19f796147f9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4501,19 +6670,19 @@ "14998" ], "x-ms-correlation-request-id": [ - "a5db2b57-f2bf-442d-9df5-4ea164edca60" + "a27620cb-1127-4f8a-84df-a0622f64b9d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031252Z:a5db2b57-f2bf-442d-9df5-4ea164edca60" + "WESTUS:20200223T233743Z:a27620cb-1127-4f8a-84df-a0622f64b9d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:12:51 GMT" + "Sun, 23 Feb 2020 23:37:43 GMT" ], "Content-Length": [ - "1730" + "1805" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4522,20 +6691,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022\",\r\n \"name\": \"ps3022\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/a0U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-05-08T02:12:22.775763Z\",\r\n \"gatewayUrl\": \"https://ps3022.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3022-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3022.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3022.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3022.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.86.102.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316\",\r\n \"name\": \"ps8316\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjrM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2020-02-23T22:50:19.0532744Z\",\r\n \"gatewayUrl\": \"https://ps8316.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8316-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8316.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8316.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8316.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8316.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"13.89.41.107\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX1Rlcm1fOTBhODkxYTY=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDFSbGNtMWZPVEJoT0RreFlUWT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9UZXJtX2E1MzkzODM0?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOVVaWEp0WDJFMU16a3pPRE0wP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4546,7 +6715,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX1Rlcm1fOTBhODkxYTY=?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9UZXJtX2E1MzkzODM0?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -4555,25 +6724,85 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22a311a6-e565-4f90-8a06-42acdf3f74bb" + "a1f88915-d79f-4904-b19e-b412b4924a51" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11931" + ], + "x-ms-correlation-request-id": [ + "cf88fffa-2f5b-4357-b654-acd53d02ca4a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T233843Z:cf88fffa-2f5b-4357-b654-acd53d02ca4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 23:38:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9UZXJtX2E1MzkzODM0?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOVVaWEp0WDJFMU16a3pPRE0wP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9UZXJtX2E1MzkzODM0?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "df439298-7a30-4bd5-8ae3-59d999970127" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "43fe98d0-dd50-4681-b8b3-ad2a8f072079" + "b7233229-4147-4b02-bac4-4c9492e8d8e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031352Z:43fe98d0-dd50-4681-b8b3-ad2a8f072079" + "WESTUS:20200223T233943Z:b7233229-4147-4b02-bac4-4c9492e8d8e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:13:52 GMT" + "Sun, 23 Feb 2020 23:39:43 GMT" ], "Expires": [ "-1" @@ -4586,16 +6815,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX1Rlcm1fOTBhODkxYTY=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDFSbGNtMWZPVEJoT0RreFlUWT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9UZXJtX2E1MzkzODM0?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOVVaWEp0WDJFMU16a3pPRE0wP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4609,25 +6838,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f414a6d9-b2e8-4f0a-b21b-c5d97324b8c3" + "bbbc5a09-cac9-41a6-bb26-3e9e897cfe7c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11934" ], "x-ms-correlation-request-id": [ - "40d16558-5b6a-44f0-afd6-0e02389ed51e" + "81fcc1ae-58f6-44cb-ba55-cf73ca7f462a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031453Z:40d16558-5b6a-44f0-afd6-0e02389ed51e" + "WESTUS:20200223T234043Z:81fcc1ae-58f6-44cb-ba55-cf73ca7f462a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:14:52 GMT" + "Sun, 23 Feb 2020 23:40:42 GMT" ], "Expires": [ "-1" @@ -4640,16 +6869,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps3022/operationresults/cHMzMDIyX1Rlcm1fOTBhODkxYTY=?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMzAyMi9vcGVyYXRpb25yZXN1bHRzL2NITXpNREl5WDFSbGNtMWZPVEJoT0RreFlUWT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps8316/operationresults/Y2VudHJhbHVzOnBzODMxNl9UZXJtX2E1MzkzODM0?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgzMTYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RNeE5sOVVaWEp0WDJFMU16a3pPRE0wP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4663,25 +6892,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75b2e819-fa87-4eb2-a50b-342c3cd1fe75" + "e8ce4f2d-c259-4436-9b71-c9e1f4cc491a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11933" ], "x-ms-correlation-request-id": [ - "786067c8-df43-4d0a-898c-7918e24eda10" + "48bb9f95-9d42-4035-86e1-60a9c3eac501" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031453Z:786067c8-df43-4d0a-898c-7918e24eda10" + "WESTUS:20200223T234043Z:48bb9f95-9d42-4035-86e1-60a9c3eac501" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:14:53 GMT" + "Sun, 23 Feb 2020 23:40:43 GMT" ], "Expires": [ "-1" @@ -4694,22 +6923,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps531/providers/Microsoft.ApiManagement/service/ps7310?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNTMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzNzMxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps6673/providers/Microsoft.ApiManagement/service/ps7993?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNjY3My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5OTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ddf7ab4-2a6b-44b9-b9c4-87ed561e7a75" + "644446ef-cac5-4198-910e-034cb1c34226" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -4723,27 +6952,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1396c5ff-68f9-482f-aa76-da9c03ce2eb6", - "21b52951-45b2-4b01-9da3-c313265f8017" + "9f06f6d5-9bbb-403f-8338-c405cfa4978a" ], "Server": [ - "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "60a6d91e-efef-4a22-8e5e-e736df2e2e5c" + "b25e6051-8598-4b5e-a9e8-ebe6e9a46bfb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031454Z:60a6d91e-efef-4a22-8e5e-e736df2e2e5c" + "WESTUS:20200223T234108Z:b25e6051-8598-4b5e-a9e8-ebe6e9a46bfb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:14:54 GMT" + "Sun, 23 Feb 2020 23:41:08 GMT" ], "Expires": [ "-1" @@ -4753,22 +6980,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps531?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNTMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps6673?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNjY3Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8292fe0-c776-4791-9882-dbee8cde3a35" + "7e9c0f1d-f145-44c0-a75e-34d997d16bc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4779,7 +7006,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NzMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4788,13 +7015,13 @@ "14999" ], "x-ms-request-id": [ - "41e4e73d-1764-4103-a484-255ca67c2730" + "3dc5cd0a-c415-409d-8d30-77bb9ba4aa3b" ], "x-ms-correlation-request-id": [ - "41e4e73d-1764-4103-a484-255ca67c2730" + "3dc5cd0a-c415-409d-8d30-77bb9ba4aa3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031455Z:41e4e73d-1764-4103-a484-255ca67c2730" + "WESTUS:20200223T234110Z:3dc5cd0a-c415-409d-8d30-77bb9ba4aa3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4803,7 +7030,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:14:55 GMT" + "Sun, 23 Feb 2020 23:41:09 GMT" ], "Expires": [ "-1" @@ -4816,16 +7043,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek1TMURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NzMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk56TXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4836,7 +7063,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NzMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4845,13 +7072,13 @@ "11999" ], "x-ms-request-id": [ - "0245d446-c286-43cf-88f4-c288d5a73e74" + "d567bc63-61ce-4c64-bfaa-6a0339fa3c2a" ], "x-ms-correlation-request-id": [ - "0245d446-c286-43cf-88f4-c288d5a73e74" + "d567bc63-61ce-4c64-bfaa-6a0339fa3c2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031510Z:0245d446-c286-43cf-88f4-c288d5a73e74" + "WESTUS:20200223T234125Z:d567bc63-61ce-4c64-bfaa-6a0339fa3c2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4860,7 +7087,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:15:10 GMT" + "Sun, 23 Feb 2020 23:41:24 GMT" ], "Expires": [ "-1" @@ -4873,16 +7100,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek1TMURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NzMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk56TXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4893,7 +7120,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NzMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4902,13 +7129,13 @@ "11998" ], "x-ms-request-id": [ - "46b74727-7574-4d21-8b66-789e5a3bea77" + "9259e266-c8ce-4ba9-bbd3-77b886d724da" ], "x-ms-correlation-request-id": [ - "46b74727-7574-4d21-8b66-789e5a3bea77" + "9259e266-c8ce-4ba9-bbd3-77b886d724da" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031525Z:46b74727-7574-4d21-8b66-789e5a3bea77" + "WESTUS:20200223T234140Z:9259e266-c8ce-4ba9-bbd3-77b886d724da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4917,7 +7144,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:15:25 GMT" + "Sun, 23 Feb 2020 23:41:40 GMT" ], "Expires": [ "-1" @@ -4930,16 +7157,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek1TMURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NzMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk56TXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4953,13 +7180,13 @@ "11997" ], "x-ms-request-id": [ - "d06bd4eb-779a-4d28-9e92-79724381e8cf" + "f0103429-194b-48a7-b044-37ca4dff6855" ], "x-ms-correlation-request-id": [ - "d06bd4eb-779a-4d28-9e92-79724381e8cf" + "f0103429-194b-48a7-b044-37ca4dff6855" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031540Z:d06bd4eb-779a-4d28-9e92-79724381e8cf" + "WESTUS:20200223T234207Z:f0103429-194b-48a7-b044-37ca4dff6855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4968,7 +7195,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:15:40 GMT" + "Sun, 23 Feb 2020 23:42:06 GMT" ], "Expires": [ "-1" @@ -4981,16 +7208,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek1TMURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NzMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk56TXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -5004,13 +7231,13 @@ "11996" ], "x-ms-request-id": [ - "0ff9f275-ca45-40ca-871f-a027bc3c1dbb" + "605e967e-1e27-4ddc-af7a-250d9e3e8cdf" ], "x-ms-correlation-request-id": [ - "0ff9f275-ca45-40ca-871f-a027bc3c1dbb" + "605e967e-1e27-4ddc-af7a-250d9e3e8cdf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T031540Z:0ff9f275-ca45-40ca-871f-a027bc3c1dbb" + "WESTUS:20200223T234207Z:605e967e-1e27-4ddc-af7a-250d9e3e8cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5019,7 +7246,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 03:15:40 GMT" + "Sun, 23 Feb 2020 23:42:07 GMT" ], "Expires": [ "-1" @@ -5034,10 +7261,10 @@ ], "Names": { "Test-CrudApiManagement": [ - "ps531", - "ps3022", - "ps3246", - "ps7310" + "ps6673", + "ps654", + "ps8316", + "ps7993" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithAdditionalRegions.json b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithAdditionalRegions.json index ddee54c7bf27..650f8a901a15 100644 --- a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithAdditionalRegions.json +++ b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithAdditionalRegions.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14c7824b-7d69-4555-8dd9-fbcd7e507a8c" + "efc03838-c31a-416e-9ab8-4d6850e55c22" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "d41db6e3-9b2a-4dd2-b575-ca0bf123d7be" + "3b3f1953-3ce2-4631-b537-78d3011efd4e" ], "x-ms-correlation-request-id": [ - "d41db6e3-9b2a-4dd2-b575-ca0bf123d7be" + "3b3f1953-3ce2-4631-b537-78d3011efd4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T013309Z:d41db6e3-9b2a-4dd2-b575-ca0bf123d7be" + "WESTUS:20200223T162731Z:3b3f1953-3ce2-4631-b537-78d3011efd4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:33:09 GMT" + "Sun, 23 Feb 2020 16:27:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "2019" + "2276" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps963?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzOTYzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps3549?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMzU0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f46df904-b250-49f1-ab4f-df3d8dc3e521" + "ee24c617-1959-4726-832e-c1f6649a81fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "89c577a7-a7e6-4411-949b-883637bad1d6" + "780de0c2-4f6a-4598-88d2-f8ec0677c0ac" ], "x-ms-correlation-request-id": [ - "89c577a7-a7e6-4411-949b-883637bad1d6" + "780de0c2-4f6a-4598-88d2-f8ec0677c0ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T013311Z:89c577a7-a7e6-4411-949b-883637bad1d6" + "WESTUS:20200223T162732Z:780de0c2-4f6a-4598-88d2-f8ec0677c0ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:33:10 GMT" + "Sun, 23 Feb 2020 16:27:32 GMT" ], "Content-Length": [ - "166" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963\",\r\n \"name\": \"ps963\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549\",\r\n \"name\": \"ps3549\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ],\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0a5c4269-4e46-49ce-862b-010367fe314d" + "49e2b1df-e760-4160-93ec-4e1d912df2cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,10 +159,10 @@ "no-cache" ], "ETag": [ - "\"AAAAAAF/ZVA=\"" + "\"AAAAAAACjZA=\"" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -171,8 +171,87 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "673df477-ed56-4746-bd45-2dcb825e2da2", - "fd946bbb-55ef-49d4-8b67-3fb653a39984" + "9e89e38a-3875-493f-b07d-c3d58d7eb435", + "b58a1fc2-c8c5-41e4-a886-737da74e0464" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "20cbeecc-b4e5-43bb-8613-b069a67d9485" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T162736Z:20cbeecc-b4e5-43bb-8613-b069a67d9485" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:27:36 GMT" + ], + "Content-Length": [ + "1441" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709\",\r\n \"name\": \"ps6709\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjZA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-23T16:27:35.1077507Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6709.azure-api.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84228b04-67b0-46e6-8cfe-9f6e5494cdc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1547" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAACjao=\"" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5ddc2f6d-ef17-4ca2-a633-0a67555702c5", + "b1dcf7bf-99b8-4fe6-9dc1-58ffa1401d8f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -181,53 +260,1301 @@ "1199" ], "x-ms-correlation-request-id": [ - "c00a83e0-5aa2-486f-9401-561c5895ae72" + "e336ee2f-cb30-4cd8-ba94-aa30e448aefe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T170511Z:e336ee2f-cb30-4cd8-ba94-aa30e448aefe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 17:05:11 GMT" + ], + "Content-Length": [ + "2469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709\",\r\n \"name\": \"ps6709\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjao=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2020-02-23T16:27:35.1077507Z\",\r\n \"gatewayUrl\": \"https://ps6709.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6709-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6709.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6709.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6709.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6709.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6709.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.122.170\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"40.76.83.37\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps6709-eastus-01.regional.azure-api.net\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"70.37.163.136\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps6709-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01e28383-a553-44dd-9268-2834c82e237e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "37475056-e8d8-465f-ad98-bd7544d40749" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T162837Z:37475056-e8d8-465f-ad98-bd7544d40749" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:28:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "44dbcaa8-710a-4e51-b7f6-0f46cdde9686" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ad215efd-5022-4530-9180-02242e24b314" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T162937Z:ad215efd-5022-4530-9180-02242e24b314" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:29:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e50fc499-641d-4be3-95af-e70e39811055" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "dcfaa6be-5f7d-419d-af4e-079bae3f6f01" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163037Z:dcfaa6be-5f7d-419d-af4e-079bae3f6f01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:30:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c14cb585-8ec0-4aa3-befe-36f5cb14e595" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "1e8d8fa1-1ee4-43ca-a401-34066f553c60" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163137Z:1e8d8fa1-1ee4-43ca-a401-34066f553c60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:31:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2b2fb1b1-a0f2-4daa-a5ad-556ecaf1bb80" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "74f04000-2d2c-49ec-a42b-d47b347eb531" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163238Z:74f04000-2d2c-49ec-a42b-d47b347eb531" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:32:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4f7e3429-f2ec-4d65-afec-170b67723312" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "753b29b7-b99d-40de-8daf-ca9143a66a7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163338Z:753b29b7-b99d-40de-8daf-ca9143a66a7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:33:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a176c05e-90c3-4dfc-9850-b86d770a01a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2d371eba-838e-49bc-be3d-1687e5559957" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163438Z:2d371eba-838e-49bc-be3d-1687e5559957" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:34:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "33693d3c-d03b-47b6-b41e-89b54f632572" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "de076743-60d3-4957-8d98-9a1937da8769" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163538Z:de076743-60d3-4957-8d98-9a1937da8769" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:35:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "af8ee896-1560-43be-940f-1154df1a0dfc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "3183a077-e128-4621-9485-6812e23026ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163639Z:3183a077-e128-4621-9485-6812e23026ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:36:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "76fa5a2a-8a1c-466a-8a0a-80955825476c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "5cdd1927-a78a-4fc6-b2f9-3b1fb7b03be5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163739Z:5cdd1927-a78a-4fc6-b2f9-3b1fb7b03be5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:37:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "084fefbd-2abb-4d06-aad2-1d0101a4fe2d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "d0942d51-2cda-40bb-9750-5a7246985310" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163839Z:d0942d51-2cda-40bb-9750-5a7246985310" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:38:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "48ae74f9-32b3-43c7-b16b-89a70f224312" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "9bbface9-077c-4fd6-a554-caffa49d4ad5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T163940Z:9bbface9-077c-4fd6-a554-caffa49d4ad5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:39:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f5219c37-f5fd-4f63-a613-bda0ac0eb6cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "e2957715-2d4c-4040-a9cb-310447e620a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T164040Z:e2957715-2d4c-4040-a9cb-310447e620a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:40:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d1b6049a-3dbf-46a8-a6ba-d293ac4afaa7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "e97cbf8c-282d-42e4-9d21-17312ecf68a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T164140Z:e97cbf8c-282d-42e4-9d21-17312ecf68a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:41:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8616824-b83f-4e59-b59c-78b6c1ff64cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "9b33147e-f166-469c-bc65-f1173db088aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T164241Z:9b33147e-f166-469c-bc65-f1173db088aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:42:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b0b2e067-8d91-4453-8967-c323c435588a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "1d011525-8c53-4c9e-95ac-3b28fcb74ac6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T164341Z:1d011525-8c53-4c9e-95ac-3b28fcb74ac6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:43:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "20077c83-6a91-4af6-a7db-5aaf2d768487" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "9ba0c0dd-aa77-48a1-a973-70364d0cb357" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T164441Z:9ba0c0dd-aa77-48a1-a973-70364d0cb357" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:44:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cc979db8-71a3-444a-9941-17e8de63ccb6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "329793fc-f867-49e6-98ef-b6c715b37c76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T164541Z:329793fc-f867-49e6-98ef-b6c715b37c76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:45:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c2ebd017-8b55-4e69-ab6e-6cf764d9df81" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "56bf65a0-cbdd-4a34-b5b4-65a476050a0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T164642Z:56bf65a0-cbdd-4a34-b5b4-65a476050a0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:46:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a82ba3e-f2a1-49e0-8c4b-f1af8d6b34af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "c6ecfffb-ba89-4050-a363-f4578775d024" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200223T164742Z:c6ecfffb-ba89-4050-a363-f4578775d024" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 23 Feb 2020 16:47:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "32bcc42e-3a85-4b9c-afb9-a24977c24511" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "149e814f-6a28-4c74-8c59-285b4c8da248" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T013313Z:c00a83e0-5aa2-486f-9401-561c5895ae72" + "WESTUS:20200223T164842Z:149e814f-6a28-4c74-8c59-285b4c8da248" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:33:12 GMT" - ], - "Content-Length": [ - "1414" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 16:48:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811\",\r\n \"name\": \"ps2811\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/ZVA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-05-08T01:33:12.1126709Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 201 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2811.azure-api.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2a654ec1-41c6-4594-ae10-0fed54829171" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1547" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -237,11 +1564,8 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAF/ZeU=\"" - ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -250,51 +1574,47 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7bc7834-5611-4119-83b8-492c80508d65", - "33601040-97ca-4991-95da-09c212001ee2" + "c950afee-4d91-4e0f-8612-aafd4af25e8e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" ], "x-ms-correlation-request-id": [ - "dd47d28b-b93c-4a81-a6f7-33993abcd389" + "77a0dfa3-4e99-4273-971c-44c4c9838588" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015526Z:dd47d28b-b93c-4a81-a6f7-33993abcd389" + "WESTUS:20200223T164943Z:77a0dfa3-4e99-4273-971c-44c4c9838588" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:55:26 GMT" - ], - "Content-Length": [ - "2530" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 16:49:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811\",\r\n \"name\": \"ps2811\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/ZeU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2019-05-08T01:33:12.1126709Z\",\r\n \"gatewayUrl\": \"https://ps2811.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2811-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2811.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2811.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2811.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2811.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.180.167\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"13.68.203.45\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2811-eastus-01.regional.azure-api.net\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"104.215.86.61\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2811-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ee5548ec-e676-4343-a310-f8de98a480bf\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -305,7 +1625,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -314,25 +1634,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2046fe65-9a35-451d-b6ab-a7a53cda7e09" + "c9ac119f-0713-4901-9061-df95d161800b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11977" ], "x-ms-correlation-request-id": [ - "3ff9d3dd-4025-48bb-b16e-c0cc330cdf61" + "fdeef01c-436c-4714-ab1c-1411c8b886ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T013413Z:3ff9d3dd-4025-48bb-b16e-c0cc330cdf61" + "WESTUS:20200223T165043Z:fdeef01c-436c-4714-ab1c-1411c8b886ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:34:13 GMT" + "Sun, 23 Feb 2020 16:50:42 GMT" ], "Expires": [ "-1" @@ -345,16 +1665,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -365,7 +1685,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -374,25 +1694,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b10c7418-4f21-44aa-8a23-f5b0961f795d" + "48c2b090-f259-4270-b66b-1ff65313a6ea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11976" ], "x-ms-correlation-request-id": [ - "88ffc21f-aadc-427e-a143-8f4067227963" + "f8af7433-ad1e-47ae-8b1f-c7cf69fc2cdf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T013513Z:88ffc21f-aadc-427e-a143-8f4067227963" + "WESTUS:20200223T165143Z:f8af7433-ad1e-47ae-8b1f-c7cf69fc2cdf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:35:13 GMT" + "Sun, 23 Feb 2020 16:51:43 GMT" ], "Expires": [ "-1" @@ -405,16 +1725,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -425,7 +1745,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -434,25 +1754,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5946f881-4323-488e-8d4a-a2696d8ba6f6" + "4b869d05-f80b-477f-9539-b772f44a9e45" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11975" ], "x-ms-correlation-request-id": [ - "9d01c01a-3f68-4681-9059-95356b801da0" + "3e965c4e-b2da-48cd-a022-de24a40dc1a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T013614Z:9d01c01a-3f68-4681-9059-95356b801da0" + "WESTUS:20200223T165244Z:3e965c4e-b2da-48cd-a022-de24a40dc1a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:36:13 GMT" + "Sun, 23 Feb 2020 16:52:43 GMT" ], "Expires": [ "-1" @@ -465,16 +1785,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -485,7 +1805,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -494,25 +1814,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11ca0483-2876-4f89-af8b-ebaeca46544b" + "a3604ae9-cab1-422e-81c9-320abad4f9c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "ef10c3a2-a8e5-4214-8628-244695684a6f" + "13d44dcb-6ed9-4797-8794-efb49053169e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T013714Z:ef10c3a2-a8e5-4214-8628-244695684a6f" + "WESTUS:20200223T165403Z:13d44dcb-6ed9-4797-8794-efb49053169e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:37:14 GMT" + "Sun, 23 Feb 2020 16:54:02 GMT" ], "Expires": [ "-1" @@ -525,16 +1845,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -545,7 +1865,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -554,25 +1874,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58f4dd13-e181-4c66-8887-c1aaedc94075" + "28145968-c4a0-4383-b3ed-173b35731051" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "c2424eeb-78be-481e-881d-2ed20bc89a61" + "7594d973-2dc2-4210-a154-d3154c52f6b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T013814Z:c2424eeb-78be-481e-881d-2ed20bc89a61" + "WESTUS:20200223T165503Z:7594d973-2dc2-4210-a154-d3154c52f6b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:38:14 GMT" + "Sun, 23 Feb 2020 16:55:03 GMT" ], "Expires": [ "-1" @@ -585,16 +1905,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -605,7 +1925,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -614,25 +1934,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b36ab1d-43ff-4dc8-ae2b-86ecb86224b9" + "8ce9b4ac-3943-4597-8d3d-7b0367dda50d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "ad1701e8-794e-497b-be34-e160df7da763" + "9880916a-3315-49f5-9203-8ca1811a681f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T013915Z:ad1701e8-794e-497b-be34-e160df7da763" + "WESTUS:20200223T165604Z:9880916a-3315-49f5-9203-8ca1811a681f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:39:14 GMT" + "Sun, 23 Feb 2020 16:56:04 GMT" ], "Expires": [ "-1" @@ -645,16 +1965,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -665,7 +1985,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -674,25 +1994,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "868689c2-e048-46cb-9260-34263035a75d" + "5f95a04e-08c2-41f4-973d-1faf93056c2c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "2cf6393b-f858-49d8-8d32-f9b7679177d0" + "b70ea3a6-268a-4e83-a991-51c5c53ecb65" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014015Z:2cf6393b-f858-49d8-8d32-f9b7679177d0" + "WESTUS:20200223T165704Z:b70ea3a6-268a-4e83-a991-51c5c53ecb65" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:40:15 GMT" + "Sun, 23 Feb 2020 16:57:03 GMT" ], "Expires": [ "-1" @@ -705,16 +2025,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -725,7 +2045,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -734,25 +2054,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e228518-8db9-434b-ae8a-5e50249dbfa0" + "6997e512-6050-44e0-89af-2d45a2c24701" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], "x-ms-correlation-request-id": [ - "76d2d5c7-657c-4aa7-95d2-fcdeb870de3a" + "e3a2b16d-0a21-4da2-abfc-fa3da0cb8820" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014116Z:76d2d5c7-657c-4aa7-95d2-fcdeb870de3a" + "WESTUS:20200223T165804Z:e3a2b16d-0a21-4da2-abfc-fa3da0cb8820" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:41:15 GMT" + "Sun, 23 Feb 2020 16:58:04 GMT" ], "Expires": [ "-1" @@ -765,16 +2085,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -785,7 +2105,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -794,25 +2114,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e25359cd-7c5f-4d17-9ad1-7ee58dad4c18" + "e8ed2607-c827-44e2-bb0a-6e605753aab4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-correlation-request-id": [ - "9f737696-d1ce-48bf-9f9b-687d4997b064" + "99a0f3ef-5e7e-43fb-8d8f-236a47c1ba37" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014216Z:9f737696-d1ce-48bf-9f9b-687d4997b064" + "WESTUS:20200223T165904Z:99a0f3ef-5e7e-43fb-8d8f-236a47c1ba37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:42:15 GMT" + "Sun, 23 Feb 2020 16:59:03 GMT" ], "Expires": [ "-1" @@ -825,16 +2145,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -845,7 +2165,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -854,25 +2174,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bab728d6-752e-442f-bf6c-2b38bff6f4b9" + "29c1a090-3f2e-4e15-a113-4b6e8b7c31d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-correlation-request-id": [ - "e434db84-5f4c-4619-8af7-ad65958da9c0" + "df6be992-662d-4074-9c9b-388b7d60c321" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014317Z:e434db84-5f4c-4619-8af7-ad65958da9c0" + "WESTUS:20200223T170005Z:df6be992-662d-4074-9c9b-388b7d60c321" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:43:16 GMT" + "Sun, 23 Feb 2020 17:00:04 GMT" ], "Expires": [ "-1" @@ -885,16 +2205,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -905,7 +2225,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -914,25 +2234,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6280fa7e-f6f1-4e4d-b1c2-fb93353aa75b" + "33c02c6c-4edf-4c34-9788-bc378bfbc6ac" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-correlation-request-id": [ - "ed90a427-9479-4f38-9956-7b1570c92d91" + "57cd576b-e6d6-4874-b0b3-3280826b311f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014417Z:ed90a427-9479-4f38-9956-7b1570c92d91" + "WESTUS:20200223T170105Z:57cd576b-e6d6-4874-b0b3-3280826b311f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:44:17 GMT" + "Sun, 23 Feb 2020 17:01:05 GMT" ], "Expires": [ "-1" @@ -945,16 +2265,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -965,7 +2285,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -974,25 +2294,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca01286e-c294-4be3-900b-759509832369" + "91ff4258-9446-4223-8ca5-397a83621998" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11991" ], "x-ms-correlation-request-id": [ - "8d7941c6-482d-4561-ab8e-27f154b8a383" + "82399e47-b0ba-4624-a4c6-c2e29f2991d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014518Z:8d7941c6-482d-4561-ab8e-27f154b8a383" + "WESTUS:20200223T170205Z:82399e47-b0ba-4624-a4c6-c2e29f2991d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:45:17 GMT" + "Sun, 23 Feb 2020 17:02:05 GMT" ], "Expires": [ "-1" @@ -1005,16 +2325,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1025,7 +2345,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1034,25 +2354,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "274571f1-c4e9-440b-ace8-d406300dc6a8" + "63f990e4-0fb9-49ae-b8de-a0aa1ea9572d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11990" ], "x-ms-correlation-request-id": [ - "8ecd2be3-2ca2-45aa-a45d-6f5bf8a9b2c1" + "82d69a07-aa36-4ed2-ac2a-e22028ba0a0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014618Z:8ecd2be3-2ca2-45aa-a45d-6f5bf8a9b2c1" + "WESTUS:20200223T170305Z:82d69a07-aa36-4ed2-ac2a-e22028ba0a0a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:46:18 GMT" + "Sun, 23 Feb 2020 17:03:05 GMT" ], "Expires": [ "-1" @@ -1065,16 +2385,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1085,7 +2405,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1094,25 +2414,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d67596f-7769-4659-b508-ab6869b556d4" + "fa7af442-dfb2-486e-92e7-ea40a4a33048" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11989" ], "x-ms-correlation-request-id": [ - "606a6f1c-0d6c-4024-b95b-6d8c0e7d50f3" + "de9e19b4-7ce2-4a62-8c6a-ebc65b51f171" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014719Z:606a6f1c-0d6c-4024-b95b-6d8c0e7d50f3" + "WESTUS:20200223T170406Z:de9e19b4-7ce2-4a62-8c6a-ebc65b51f171" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:47:18 GMT" + "Sun, 23 Feb 2020 17:04:05 GMT" ], "Expires": [ "-1" @@ -1125,16 +2445,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9BY3RfYmZkZjE0NWI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOUJZM1JmWW1aa1pqRTBOV0k9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1144,57 +2464,60 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" - ], - "Retry-After": [ - "60" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1290a115-7815-420c-ac40-18b26bbc7166" + "15ec93f3-7cf0-4afe-83dc-34594a6e9648" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11988" ], "x-ms-correlation-request-id": [ - "d6842040-654c-40be-b46a-ff297ef55d7b" + "e6f4d4bc-8a8d-4c76-a2e9-62acdb0374c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014819Z:d6842040-654c-40be-b46a-ff297ef55d7b" + "WESTUS:20200223T170506Z:e6f4d4bc-8a8d-4c76-a2e9-62acdb0374c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:48:18 GMT" + "Sun, 23 Feb 2020 17:05:06 GMT" + ], + "Content-Length": [ + "2461" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709\",\r\n \"name\": \"ps6709\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjak=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T16:27:35.1077507Z\",\r\n \"gatewayUrl\": \"https://ps6709.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6709-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6709.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6709.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6709.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6709.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6709.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.122.170\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"40.76.83.37\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps6709-eastus-01.regional.azure-api.net\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"70.37.163.136\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps6709-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f2eb3e97-77d0-4043-a540-33bc43841113" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1204,57 +2527,57 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" - ], - "Retry-After": [ - "60" + "ETag": [ + "\"AAAAAAACjak=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50ecec84-db0c-4cc5-bb5e-93732ccdb102" + "c2b26cb8-11b7-49bb-9f91-0cb18101b753" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11987" ], "x-ms-correlation-request-id": [ - "3ec7b902-1802-482e-8793-4542e42d3b40" + "f7b4a0d6-ae6e-4dec-86af-11fcc1e879f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T014919Z:3ec7b902-1802-482e-8793-4542e42d3b40" + "WESTUS:20200223T170506Z:f7b4a0d6-ae6e-4dec-86af-11fcc1e879f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:49:19 GMT" + "Sun, 23 Feb 2020 17:05:06 GMT" + ], + "Content-Length": [ + "2461" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709\",\r\n \"name\": \"ps6709\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjak=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T16:27:35.1077507Z\",\r\n \"gatewayUrl\": \"https://ps6709.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6709-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6709.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6709.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6709.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6709.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6709.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.122.170\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"40.76.83.37\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps6709-eastus-01.regional.azure-api.net\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"70.37.163.136\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps6709-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1265,7 +2588,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1274,25 +2597,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "920050b5-ebf0-4d41-b8a4-d41bf949d0bc" + "7c6c2510-e1e2-422b-82a2-7aa39279c137" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11986" ], "x-ms-correlation-request-id": [ - "5dee1f71-e70e-4c17-bde5-aaf6bc23663d" + "718a557e-2e04-4a3b-8b44-a0d7ec7a6337" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015020Z:5dee1f71-e70e-4c17-bde5-aaf6bc23663d" + "WESTUS:20200223T170611Z:718a557e-2e04-4a3b-8b44-a0d7ec7a6337" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:50:19 GMT" + "Sun, 23 Feb 2020 17:06:11 GMT" ], "Expires": [ "-1" @@ -1305,16 +2628,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1325,7 +2648,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1334,25 +2657,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e9673a0-e2aa-44fc-b8d7-326e8d86ed40" + "ac90b25d-1b43-4577-915f-3f98f76fdffb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11985" ], "x-ms-correlation-request-id": [ - "8a9c7ead-7866-41b2-b1e6-e7346a079f7c" + "be2d8610-f9a5-4311-b82d-6f9f84415eb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015120Z:8a9c7ead-7866-41b2-b1e6-e7346a079f7c" + "WESTUS:20200223T170712Z:be2d8610-f9a5-4311-b82d-6f9f84415eb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:51:20 GMT" + "Sun, 23 Feb 2020 17:07:11 GMT" ], "Expires": [ "-1" @@ -1365,16 +2688,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1385,7 +2708,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1394,25 +2717,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "952b55a3-7b44-42bf-bd01-70e82539e6ea" + "88ba515d-bdaf-4b44-8635-31200bb8efe3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11984" ], "x-ms-correlation-request-id": [ - "22fdbed1-abf4-4b6b-8dec-cdceea1a170c" + "b44b3202-bd85-414f-a87c-c910a133225b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015220Z:22fdbed1-abf4-4b6b-8dec-cdceea1a170c" + "WESTUS:20200223T170812Z:b44b3202-bd85-414f-a87c-c910a133225b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:52:20 GMT" + "Sun, 23 Feb 2020 17:08:12 GMT" ], "Expires": [ "-1" @@ -1425,16 +2748,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1445,7 +2768,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1454,25 +2777,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a9e9f9d-0d49-4115-9fbf-eb034c79c14c" + "9f006fe1-a114-4209-ba6f-1bdb93d83939" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11983" ], "x-ms-correlation-request-id": [ - "75b396d6-521c-49e0-8d30-05b5bb3388d1" + "34691a0d-e7de-4666-bba8-1d5c3d4b7a99" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015320Z:75b396d6-521c-49e0-8d30-05b5bb3388d1" + "WESTUS:20200223T170912Z:34691a0d-e7de-4666-bba8-1d5c3d4b7a99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:53:20 GMT" + "Sun, 23 Feb 2020 17:09:11 GMT" ], "Expires": [ "-1" @@ -1485,16 +2808,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1505,7 +2828,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1514,25 +2837,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "549f3833-1f2a-46c0-abbf-f39fbd31b129" + "34b8a384-f820-458c-b67f-a077daacd0cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11982" ], "x-ms-correlation-request-id": [ - "235fdf2e-0f01-4bd3-823b-832b09ffe64a" + "47bf7a64-1699-4eb3-88b9-7a67f8d22a22" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015421Z:235fdf2e-0f01-4bd3-823b-832b09ffe64a" + "WESTUS:20200223T171012Z:47bf7a64-1699-4eb3-88b9-7a67f8d22a22" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:54:21 GMT" + "Sun, 23 Feb 2020 17:10:12 GMT" ], "Expires": [ "-1" @@ -1545,16 +2868,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX0FjdF9jYTk1ODU2MQ==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDBGamRGOWpZVGsxT0RVMk1RPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1564,60 +2887,57 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5fef899-67ea-4bc9-b319-c38529fb74e3" + "5da623b4-8be0-4a75-8aa4-b3743dd41414" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11981" ], "x-ms-correlation-request-id": [ - "2e648dce-dba9-45ee-8ea2-634024255be6" + "dfde797a-ee59-4962-86f5-dd9fb52e2887" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015522Z:2e648dce-dba9-45ee-8ea2-634024255be6" + "WESTUS:20200223T171113Z:dfde797a-ee59-4962-86f5-dd9fb52e2887" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:55:21 GMT" - ], - "Content-Length": [ - "2398" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 17:11:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811\",\r\n \"name\": \"ps2811\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/Zds=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T01:33:12.1126709Z\",\r\n \"gatewayUrl\": \"https://ps2811.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2811-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2811.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2811.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2811.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2811.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.180.167\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"13.68.203.45\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2811-eastus-01.regional.azure-api.net\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"104.215.86.61\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2811-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "435442d7-f0ae-462c-811d-99e79fd886ab" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1627,57 +2947,57 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAF/Zds=\"" + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5451b6c-329d-43a4-af94-91859e6920ae" + "0b3a8821-7096-442c-878f-3a8f0343b09d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11980" ], "x-ms-correlation-request-id": [ - "6c70ca73-979d-4025-90fb-cd0513a79089" + "82a461a2-a412-4bb1-8440-85154b2ee53b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015522Z:6c70ca73-979d-4025-90fb-cd0513a79089" + "WESTUS:20200223T171213Z:82a461a2-a412-4bb1-8440-85154b2ee53b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:55:22 GMT" - ], - "Content-Length": [ - "2398" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Sun, 23 Feb 2020 17:12:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811\",\r\n \"name\": \"ps2811\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/Zds=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T01:33:12.1126709Z\",\r\n \"gatewayUrl\": \"https://ps2811.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2811-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2811.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2811.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2811.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2811.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.180.167\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"13.68.203.45\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2811-eastus-01.regional.azure-api.net\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"104.215.86.61\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2811-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1688,7 +3008,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1697,25 +3017,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "746eea92-1730-4346-bc1b-1b0ab7f89198" + "8e16728e-c1c3-4569-b795-faf391cf71c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11979" ], "x-ms-correlation-request-id": [ - "daacd17b-adcb-40f2-af99-71271823e099" + "42b39c9e-55bb-49de-a0ec-56498355e3ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015627Z:daacd17b-adcb-40f2-af99-71271823e099" + "WESTUS:20200223T171313Z:42b39c9e-55bb-49de-a0ec-56498355e3ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:56:26 GMT" + "Sun, 23 Feb 2020 17:13:13 GMT" ], "Expires": [ "-1" @@ -1728,16 +3048,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1748,7 +3068,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1757,25 +3077,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ded04a57-9fd6-483e-acd9-07037cd94e3a" + "7b63d34d-9a95-44f2-8d83-3831c1e402c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11978" ], "x-ms-correlation-request-id": [ - "6d19b913-6983-43d5-ad11-8d50908b8af9" + "ff334692-d712-4df1-8235-d89b549934ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015727Z:6d19b913-6983-43d5-ad11-8d50908b8af9" + "WESTUS:20200223T171414Z:ff334692-d712-4df1-8235-d89b549934ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:57:26 GMT" + "Sun, 23 Feb 2020 17:14:13 GMT" ], "Expires": [ "-1" @@ -1788,16 +3108,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1808,7 +3128,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1817,25 +3137,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d89d2189-af8f-4eb0-833a-5c1c5d53e84b" + "7127b1cf-7050-421f-83c5-a21801fbd34a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11977" ], "x-ms-correlation-request-id": [ - "26d2b25a-f5b0-41e0-a861-b37ff8450eb7" + "6cddc0e1-37d6-4982-aecb-57a40e15865a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015828Z:26d2b25a-f5b0-41e0-a861-b37ff8450eb7" + "WESTUS:20200223T171514Z:6cddc0e1-37d6-4982-aecb-57a40e15865a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:58:27 GMT" + "Sun, 23 Feb 2020 17:15:13 GMT" ], "Expires": [ "-1" @@ -1848,16 +3168,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1868,7 +3188,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1877,25 +3197,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ca485a8-b3f5-4f34-b97e-42f19839be1d" + "463328cf-81ae-446e-95af-8dda2c7e0e11" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-correlation-request-id": [ - "2637c9f6-e0d4-40c7-91a6-dc8146735d5f" + "fd1e2a44-f6cf-4d01-84ba-c11ed65e146d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T015928Z:2637c9f6-e0d4-40c7-91a6-dc8146735d5f" + "WESTUS:20200223T171620Z:fd1e2a44-f6cf-4d01-84ba-c11ed65e146d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:59:27 GMT" + "Sun, 23 Feb 2020 17:16:20 GMT" ], "Expires": [ "-1" @@ -1908,16 +3228,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1928,7 +3248,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1937,25 +3257,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01cf05be-cb66-47c9-a167-2e1d76c3f4b2" + "8fa9e0d3-6b73-4441-9698-2d542cb9a116" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11999" ], "x-ms-correlation-request-id": [ - "a5da2fa6-6c40-4b0c-8908-47239f74c562" + "6f1b553b-6ac1-45c2-bf0d-085684b3a30a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020028Z:a5da2fa6-6c40-4b0c-8908-47239f74c562" + "WESTUS:20200223T171720Z:6f1b553b-6ac1-45c2-bf0d-085684b3a30a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:00:27 GMT" + "Sun, 23 Feb 2020 17:17:20 GMT" ], "Expires": [ "-1" @@ -1968,16 +3288,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1988,7 +3308,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1997,25 +3317,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67f72c59-6f70-4c63-9eb3-6064beb4937a" + "873fbc09-dc28-46d5-8f83-794fa2d5eb83" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11998" ], "x-ms-correlation-request-id": [ - "3c4d404a-a786-487d-bba6-d0bb8061598a" + "8d0001b1-eae5-455b-9bc1-3a36b9273cc7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020128Z:3c4d404a-a786-487d-bba6-d0bb8061598a" + "WESTUS:20200223T171820Z:8d0001b1-eae5-455b-9bc1-3a36b9273cc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:01:28 GMT" + "Sun, 23 Feb 2020 17:18:20 GMT" ], "Expires": [ "-1" @@ -2028,16 +3348,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2048,7 +3368,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2057,25 +3377,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be070e0d-e6f9-4cad-9fc6-12ee0f7924fd" + "c86b5212-e995-49a6-aa12-8cd7929d0af3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11997" ], "x-ms-correlation-request-id": [ - "d597b4bc-4462-49ee-83e2-ae2ed9735ced" + "1dd5f4d7-dd32-4bc2-8e5b-4e156efe5180" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020229Z:d597b4bc-4462-49ee-83e2-ae2ed9735ced" + "WESTUS:20200223T171921Z:1dd5f4d7-dd32-4bc2-8e5b-4e156efe5180" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:02:29 GMT" + "Sun, 23 Feb 2020 17:19:20 GMT" ], "Expires": [ "-1" @@ -2088,16 +3408,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2108,7 +3428,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2117,25 +3437,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0b26857-97b3-4bc7-9fd4-6b0d52a657ef" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "6666c847-8e87-432a-a6e8-dbdbe5b7ec4a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], "x-ms-correlation-request-id": [ - "301eae59-76d6-45d6-8b4f-08948cb6c3a8" + "3b801c07-2106-4591-8c4d-f085903be637" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020329Z:301eae59-76d6-45d6-8b4f-08948cb6c3a8" + "WESTUS:20200223T172021Z:3b801c07-2106-4591-8c4d-f085903be637" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:03:28 GMT" + "Sun, 23 Feb 2020 17:20:21 GMT" ], "Expires": [ "-1" @@ -2148,16 +3468,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2168,7 +3488,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2177,25 +3497,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "014f5286-dd00-4399-91bd-ae615f990e4e" + "4540bc59-5305-4a2b-9802-a228778c174b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11995" ], "x-ms-correlation-request-id": [ - "7987dc55-dc2d-47fd-9f27-2f0568c06d7b" + "d2bd3fac-cbf5-4c23-974b-0813fc1dcd17" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020430Z:7987dc55-dc2d-47fd-9f27-2f0568c06d7b" + "WESTUS:20200223T172121Z:d2bd3fac-cbf5-4c23-974b-0813fc1dcd17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:04:29 GMT" + "Sun, 23 Feb 2020 17:21:21 GMT" ], "Expires": [ "-1" @@ -2208,16 +3528,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2228,7 +3548,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2237,25 +3557,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a5c7d40-8187-4f2f-8c04-b76bef8aae44" + "dd89e657-58cb-4d6f-9e0c-619ebd5c4a3a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11994" ], "x-ms-correlation-request-id": [ - "9138dd70-3cc2-4ca6-b896-641c2e79065f" + "894bf539-7bfb-4871-9642-12304ba78fd0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020530Z:9138dd70-3cc2-4ca6-b896-641c2e79065f" + "WESTUS:20200223T172222Z:894bf539-7bfb-4871-9642-12304ba78fd0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:05:29 GMT" + "Sun, 23 Feb 2020 17:22:22 GMT" ], "Expires": [ "-1" @@ -2268,16 +3588,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2288,7 +3608,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2297,25 +3617,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f73838b-f544-41dd-a3cf-b49712c5aab0" + "81174e92-3764-490c-8f57-8bebff464013" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11993" ], "x-ms-correlation-request-id": [ - "53b8c3af-d5fe-4351-8dd4-9e6b404b4cec" + "63905558-64c9-4b3b-9c87-93c4dd7952e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020630Z:53b8c3af-d5fe-4351-8dd4-9e6b404b4cec" + "WESTUS:20200223T172322Z:63905558-64c9-4b3b-9c87-93c4dd7952e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:06:30 GMT" + "Sun, 23 Feb 2020 17:23:21 GMT" ], "Expires": [ "-1" @@ -2328,16 +3648,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2348,7 +3668,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2357,25 +3677,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb51531a-2bd1-49ba-a3b7-60a2f7737255" + "0aed2aef-a0d1-4390-9ddd-a6c1158b4ae9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11992" ], "x-ms-correlation-request-id": [ - "0d924db6-bbe9-40fd-817c-72c7318f1b5e" + "19f8c5aa-aed6-4f33-a534-e10ce311854b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020731Z:0d924db6-bbe9-40fd-817c-72c7318f1b5e" + "WESTUS:20200223T172422Z:19f8c5aa-aed6-4f33-a534-e10ce311854b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:07:30 GMT" + "Sun, 23 Feb 2020 17:24:22 GMT" ], "Expires": [ "-1" @@ -2388,16 +3708,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811/operationresults/cHMyODExX1VwZGF0ZV8xOWE3NzE0Nw==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3BzMjgxMS9vcGVyYXRpb25yZXN1bHRzL2NITXlPREV4WDFWd1pHRjBaVjh4T1dFM056RTBOdz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709/operationresults/Y2VudHJhbHVzOnBzNjcwOV9VcGRhdGVfNzQxMDExYjk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY3MDkvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6Tmpjd09WOVZjR1JoZEdWZk56UXhNREV4WWprPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2411,28 +3731,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9de804fd-ebc5-4ef9-ae30-9a5c1b3b4151" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "ea9776f8-e119-4c77-ae92-b53f9f706f0c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], "x-ms-correlation-request-id": [ - "147a8538-949c-4f22-ba86-2e95a81008ee" + "f1203a9d-eb81-42e5-a156-7788f44ee4cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020831Z:147a8538-949c-4f22-ba86-2e95a81008ee" + "WESTUS:20200223T172523Z:f1203a9d-eb81-42e5-a156-7788f44ee4cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:08:31 GMT" + "Sun, 23 Feb 2020 17:25:22 GMT" ], "Content-Length": [ - "2292" + "2356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2441,26 +3761,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps963/providers/Microsoft.ApiManagement/service/ps2811\",\r\n \"name\": \"ps2811\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAF/Zyc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T01:33:12.1126709Z\",\r\n \"gatewayUrl\": \"https://ps2811.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2811-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2811.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2811.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2811.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2811.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.180.167\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"publicIPAddresses\": [\r\n \"104.215.86.61\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2811-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ee5548ec-e676-4343-a310-f8de98a480bf\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3549/providers/Microsoft.ApiManagement/service/ps6709\",\r\n \"name\": \"ps6709\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAACjb4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-23T16:27:35.1077507Z\",\r\n \"gatewayUrl\": \"https://ps6709.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6709-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6709.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6709.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6709.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6709.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6709.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.122.170\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"publicIPAddresses\": [\r\n \"70.37.163.136\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps6709-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fd60ef20-2106-4980-b170-77721b4873a2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps963?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzOTYzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps3549?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMzU0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13be10fc-f6ed-4240-8bee-5f7f706d7155" + "092869e2-0128-4d30-b0f5-a91a4711b10b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2471,7 +3791,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2480,13 +3800,13 @@ "14999" ], "x-ms-request-id": [ - "bb2f7ffe-4065-46e5-8f3b-8f0927fcbdd7" + "3fb1779e-fd89-4df9-a92e-5eef8bc35ef5" ], "x-ms-correlation-request-id": [ - "bb2f7ffe-4065-46e5-8f3b-8f0927fcbdd7" + "3fb1779e-fd89-4df9-a92e-5eef8bc35ef5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020832Z:bb2f7ffe-4065-46e5-8f3b-8f0927fcbdd7" + "WESTUS:20200223T172525Z:3fb1779e-fd89-4df9-a92e-5eef8bc35ef5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2495,7 +3815,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:08:32 GMT" + "Sun, 23 Feb 2020 17:25:25 GMT" ], "Expires": [ "-1" @@ -2508,16 +3828,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2528,7 +3848,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2537,13 +3857,13 @@ "11999" ], "x-ms-request-id": [ - "4da29cc5-3fde-4576-b6ac-e541d827f1c1" + "4417eaa9-271e-401a-b06a-2e4b8fe745f3" ], "x-ms-correlation-request-id": [ - "4da29cc5-3fde-4576-b6ac-e541d827f1c1" + "4417eaa9-271e-401a-b06a-2e4b8fe745f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020847Z:4da29cc5-3fde-4576-b6ac-e541d827f1c1" + "WESTUS:20200223T172540Z:4417eaa9-271e-401a-b06a-2e4b8fe745f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2552,7 +3872,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:08:47 GMT" + "Sun, 23 Feb 2020 17:25:40 GMT" ], "Expires": [ "-1" @@ -2565,16 +3885,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2585,7 +3905,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2594,13 +3914,13 @@ "11998" ], "x-ms-request-id": [ - "31cd74ed-27ea-48a2-a13c-eba9b2dc60f9" + "b5baad9e-81b1-4215-98ab-b8e440e5ebef" ], "x-ms-correlation-request-id": [ - "31cd74ed-27ea-48a2-a13c-eba9b2dc60f9" + "b5baad9e-81b1-4215-98ab-b8e440e5ebef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020902Z:31cd74ed-27ea-48a2-a13c-eba9b2dc60f9" + "WESTUS:20200223T172555Z:b5baad9e-81b1-4215-98ab-b8e440e5ebef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2609,7 +3929,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:09:02 GMT" + "Sun, 23 Feb 2020 17:25:55 GMT" ], "Expires": [ "-1" @@ -2622,16 +3942,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2642,7 +3962,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2651,13 +3971,13 @@ "11997" ], "x-ms-request-id": [ - "db733956-8dc6-47d6-9ceb-72878cbe0890" + "fcead826-f79f-4fb8-a7cc-3f273262d67e" ], "x-ms-correlation-request-id": [ - "db733956-8dc6-47d6-9ceb-72878cbe0890" + "fcead826-f79f-4fb8-a7cc-3f273262d67e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020917Z:db733956-8dc6-47d6-9ceb-72878cbe0890" + "WESTUS:20200223T172610Z:fcead826-f79f-4fb8-a7cc-3f273262d67e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2666,7 +3986,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:09:17 GMT" + "Sun, 23 Feb 2020 17:26:09 GMT" ], "Expires": [ "-1" @@ -2679,16 +3999,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2699,7 +4019,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2708,13 +4028,13 @@ "11996" ], "x-ms-request-id": [ - "83d789eb-078b-4ec4-82df-df5ca1e48624" + "4e8c017a-ea65-48cb-ab7f-7a2bd4efa1d1" ], "x-ms-correlation-request-id": [ - "83d789eb-078b-4ec4-82df-df5ca1e48624" + "4e8c017a-ea65-48cb-ab7f-7a2bd4efa1d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020932Z:83d789eb-078b-4ec4-82df-df5ca1e48624" + "WESTUS:20200223T172625Z:4e8c017a-ea65-48cb-ab7f-7a2bd4efa1d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2723,7 +4043,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:09:32 GMT" + "Sun, 23 Feb 2020 17:26:25 GMT" ], "Expires": [ "-1" @@ -2736,16 +4056,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2756,7 +4076,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2765,13 +4085,13 @@ "11995" ], "x-ms-request-id": [ - "4796ac6f-95f9-4f87-98d9-4f1c0e4e226a" + "3b44a2f7-022f-4933-80bb-4cee3ca5b62b" ], "x-ms-correlation-request-id": [ - "4796ac6f-95f9-4f87-98d9-4f1c0e4e226a" + "3b44a2f7-022f-4933-80bb-4cee3ca5b62b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T020947Z:4796ac6f-95f9-4f87-98d9-4f1c0e4e226a" + "WESTUS:20200223T172640Z:3b44a2f7-022f-4933-80bb-4cee3ca5b62b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2780,7 +4100,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:09:47 GMT" + "Sun, 23 Feb 2020 17:26:40 GMT" ], "Expires": [ "-1" @@ -2793,16 +4113,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2813,7 +4133,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2822,13 +4142,13 @@ "11994" ], "x-ms-request-id": [ - "b58a66ac-e37d-45d8-86a9-5f3023582563" + "1b0b7600-045b-4532-95a3-d4a356e37e6f" ], "x-ms-correlation-request-id": [ - "b58a66ac-e37d-45d8-86a9-5f3023582563" + "1b0b7600-045b-4532-95a3-d4a356e37e6f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021002Z:b58a66ac-e37d-45d8-86a9-5f3023582563" + "WESTUS:20200223T172655Z:1b0b7600-045b-4532-95a3-d4a356e37e6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2837,7 +4157,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:10:02 GMT" + "Sun, 23 Feb 2020 17:26:55 GMT" ], "Expires": [ "-1" @@ -2850,16 +4170,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2870,7 +4190,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2879,13 +4199,13 @@ "11993" ], "x-ms-request-id": [ - "90180a1c-0ec1-48f5-a7ab-d4d409796d6e" + "5df6aa9f-1939-4ba5-9799-d02a31ce2ba8" ], "x-ms-correlation-request-id": [ - "90180a1c-0ec1-48f5-a7ab-d4d409796d6e" + "5df6aa9f-1939-4ba5-9799-d02a31ce2ba8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021018Z:90180a1c-0ec1-48f5-a7ab-d4d409796d6e" + "WESTUS:20200223T172711Z:5df6aa9f-1939-4ba5-9799-d02a31ce2ba8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2894,7 +4214,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:10:18 GMT" + "Sun, 23 Feb 2020 17:27:10 GMT" ], "Expires": [ "-1" @@ -2907,16 +4227,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2927,7 +4247,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2936,13 +4256,13 @@ "11992" ], "x-ms-request-id": [ - "5762b61f-88a7-411f-b15b-484a694b5459" + "f087e45a-0eca-4441-a49c-66955064d20f" ], "x-ms-correlation-request-id": [ - "5762b61f-88a7-411f-b15b-484a694b5459" + "f087e45a-0eca-4441-a49c-66955064d20f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021033Z:5762b61f-88a7-411f-b15b-484a694b5459" + "WESTUS:20200223T172726Z:f087e45a-0eca-4441-a49c-66955064d20f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2951,7 +4271,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:10:33 GMT" + "Sun, 23 Feb 2020 17:27:26 GMT" ], "Expires": [ "-1" @@ -2964,16 +4284,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -2984,7 +4304,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2993,13 +4313,13 @@ "11991" ], "x-ms-request-id": [ - "756f72f1-42cb-4f28-bd19-39eb510eadf0" + "be4d440b-74f8-41b0-a189-eece044d1600" ], "x-ms-correlation-request-id": [ - "756f72f1-42cb-4f28-bd19-39eb510eadf0" + "be4d440b-74f8-41b0-a189-eece044d1600" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021048Z:756f72f1-42cb-4f28-bd19-39eb510eadf0" + "WESTUS:20200223T172741Z:be4d440b-74f8-41b0-a189-eece044d1600" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3008,7 +4328,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:10:48 GMT" + "Sun, 23 Feb 2020 17:27:41 GMT" ], "Expires": [ "-1" @@ -3021,16 +4341,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3041,7 +4361,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3050,13 +4370,13 @@ "11990" ], "x-ms-request-id": [ - "10c79967-6a5e-47c2-b923-575c973a9fb3" + "ced3512f-09c0-4dbf-b23c-6ed46584ebea" ], "x-ms-correlation-request-id": [ - "10c79967-6a5e-47c2-b923-575c973a9fb3" + "ced3512f-09c0-4dbf-b23c-6ed46584ebea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021103Z:10c79967-6a5e-47c2-b923-575c973a9fb3" + "WESTUS:20200223T172756Z:ced3512f-09c0-4dbf-b23c-6ed46584ebea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3065,7 +4385,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:11:03 GMT" + "Sun, 23 Feb 2020 17:27:55 GMT" ], "Expires": [ "-1" @@ -3078,16 +4398,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3098,7 +4418,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3107,13 +4427,13 @@ "11989" ], "x-ms-request-id": [ - "111104c0-9cf5-4ba9-b809-0a8565e6e627" + "9b377a25-2ac7-4500-a626-43ee9a0d7c11" ], "x-ms-correlation-request-id": [ - "111104c0-9cf5-4ba9-b809-0a8565e6e627" + "9b377a25-2ac7-4500-a626-43ee9a0d7c11" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021118Z:111104c0-9cf5-4ba9-b809-0a8565e6e627" + "WESTUS:20200223T172811Z:9b377a25-2ac7-4500-a626-43ee9a0d7c11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3122,7 +4442,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:11:18 GMT" + "Sun, 23 Feb 2020 17:28:10 GMT" ], "Expires": [ "-1" @@ -3135,16 +4455,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3155,7 +4475,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3164,13 +4484,13 @@ "11988" ], "x-ms-request-id": [ - "3a846823-40f2-4c55-a388-058a3c04b640" + "ea6c6a28-a20b-4e1a-b775-57b87199967a" ], "x-ms-correlation-request-id": [ - "3a846823-40f2-4c55-a388-058a3c04b640" + "ea6c6a28-a20b-4e1a-b775-57b87199967a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021133Z:3a846823-40f2-4c55-a388-058a3c04b640" + "WESTUS:20200223T172826Z:ea6c6a28-a20b-4e1a-b775-57b87199967a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3179,7 +4499,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:11:32 GMT" + "Sun, 23 Feb 2020 17:28:25 GMT" ], "Expires": [ "-1" @@ -3192,16 +4512,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3212,7 +4532,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3221,13 +4541,13 @@ "11987" ], "x-ms-request-id": [ - "f537ec0e-18d2-4cb5-be38-74787c8422ef" + "4b9d577c-72a5-438b-8cb2-b124a7d17372" ], "x-ms-correlation-request-id": [ - "f537ec0e-18d2-4cb5-be38-74787c8422ef" + "4b9d577c-72a5-438b-8cb2-b124a7d17372" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021148Z:f537ec0e-18d2-4cb5-be38-74787c8422ef" + "WESTUS:20200223T172841Z:4b9d577c-72a5-438b-8cb2-b124a7d17372" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3236,7 +4556,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:11:48 GMT" + "Sun, 23 Feb 2020 17:28:41 GMT" ], "Expires": [ "-1" @@ -3249,16 +4569,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3268,74 +4588,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-request-id": [ - "fbcbcecb-62d5-4cd6-bb3d-35c6c48faa2d" - ], - "x-ms-correlation-request-id": [ - "fbcbcecb-62d5-4cd6-bb3d-35c6c48faa2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190508T021203Z:fbcbcecb-62d5-4cd6-bb3d-35c6c48faa2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 08 May 2019 02:12:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27129.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "b0c3c730-ce0e-43ca-8649-b502f17301ad" + "6bb0cbbb-2b83-4017-b605-383117b5e5d6" ], "x-ms-correlation-request-id": [ - "b0c3c730-ce0e-43ca-8649-b502f17301ad" + "6bb0cbbb-2b83-4017-b605-383117b5e5d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021218Z:b0c3c730-ce0e-43ca-8649-b502f17301ad" + "WESTUS:20200223T172909Z:6bb0cbbb-2b83-4017-b605-383117b5e5d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3344,7 +4607,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:12:18 GMT" + "Sun, 23 Feb 2020 17:29:09 GMT" ], "Expires": [ "-1" @@ -3357,16 +4620,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk15MURSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1NDktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU5Ea3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3377,16 +4640,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-request-id": [ - "3c548d0d-7db5-4ab9-ac9e-5e6ded21455b" + "ba25c60e-40da-4fcc-85e7-1a6e12024755" ], "x-ms-correlation-request-id": [ - "3c548d0d-7db5-4ab9-ac9e-5e6ded21455b" + "ba25c60e-40da-4fcc-85e7-1a6e12024755" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T021218Z:3c548d0d-7db5-4ab9-ac9e-5e6ded21455b" + "WESTUS:20200223T172909Z:ba25c60e-40da-4fcc-85e7-1a6e12024755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3395,7 +4658,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 02:12:18 GMT" + "Sun, 23 Feb 2020 17:29:09 GMT" ], "Expires": [ "-1" @@ -3410,8 +4673,8 @@ ], "Names": { "Test-ApiManagementWithAdditionalRegionsCRUD": [ - "ps963", - "ps2811" + "ps3549", + "ps6709" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithVirtualNetwork.json b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithVirtualNetwork.json index 3e3fbd19f0df..5b4b4515d962 100644 --- a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithVirtualNetwork.json +++ b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithVirtualNetwork.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps2344?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMjM0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps94?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzOTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "09b15ecd-1062-484d-b797-2f67efc7da3e" + "fea2a193-c069-4d60-94e0-51efa7c83f9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "29" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "40e2e345-a527-494e-ba3e-424813f08eb6" + "1bf46266-ce06-406f-b21c-161e133c33a2" ], "x-ms-correlation-request-id": [ - "40e2e345-a527-494e-ba3e-424813f08eb6" + "1bf46266-ce06-406f-b21c-161e133c33a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T001541Z:40e2e345-a527-494e-ba3e-424813f08eb6" + "WESTUS:20200224T055942Z:1bf46266-ce06-406f-b21c-161e133c33a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:15:41 GMT" + "Mon, 24 Feb 2020 05:59:41 GMT" ], "Content-Length": [ - "173" + "161" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344\",\r\n \"name\": \"ps2344\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94\",\r\n \"name\": \"ps94\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bd65ab80-22c3-423f-a9a2-80fb88159a9f" + "8110b323-c18a-4f75-b0f3-eb6f855a1131" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "488" + "482" ] }, "ResponseHeaders": { @@ -99,10 +99,10 @@ "no-cache" ], "ETag": [ - "\"AAAAAAF/YHs=\"" + "\"AAAAAAACrYo=\"" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -111,8 +111,8 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f3f6ebc-a822-4c98-9cfe-e677b56f63f6", - "16d70eb8-0118-4660-bcb6-0fffab472f96" + "fed14912-ba8b-41eb-8cda-2b441607a6ff", + "fe58a9fe-0448-40d9-aa8f-dfc4c6966048" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -121,19 +121,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "7eb03356-c424-4da4-afcb-c55639097c91" + "5cfa3849-b304-4f13-90f1-ed9ef5b89beb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T001544Z:7eb03356-c424-4da4-afcb-c55639097c91" + "WESTUS:20200224T055946Z:5cfa3849-b304-4f13-90f1-ed9ef5b89beb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:15:44 GMT" + "Mon, 24 Feb 2020 05:59:45 GMT" ], "Content-Length": [ - "1319" + "1337" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,32 +142,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943\",\r\n \"name\": \"ps7943\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF/YHs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-05-08T00:15:43.6931574Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627\",\r\n \"name\": \"ps2627\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACrYo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2020-02-24T05:59:44.5146486Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7943.azure-api.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\"\r\n },\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\"\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2627.azure-api.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\"\r\n },\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\"\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6a7eabaf-faf3-44c9-901e-759da8abf306" + "1789a280-e18d-4630-9bb9-2e9dd5bb4e52" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1986" + "1980" ] }, "ResponseHeaders": { @@ -178,10 +178,10 @@ "no-cache" ], "ETag": [ - "\"AAAAAAF/Ymo=\"" + "\"AAAAAAACrdo=\"" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -190,8 +190,8 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22a0f1d0-47e2-4341-ad99-4872a776f4a3", - "37cdac7a-7fad-41ee-b9b7-f7bd079746d5" + "9d319a37-70e0-4ae1-80bd-627706afd02a", + "4e8560ed-4f3e-4691-a015-d6871573ea7e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -200,19 +200,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "e212a5c3-e5a8-48ce-9fb9-403993dae98c" + "61a265cf-a4dd-402b-80c0-b571e409de50" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004922Z:e212a5c3-e5a8-48ce-9fb9-403993dae98c" + "WESTUS:20200224T063400Z:61a265cf-a4dd-402b-80c0-b571e409de50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:49:22 GMT" + "Mon, 24 Feb 2020 06:34:00 GMT" ], "Content-Length": [ - "2193" + "2238" ], "Content-Type": [ "application/json; charset=utf-8" @@ -221,20 +221,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943\",\r\n \"name\": \"ps7943\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF/Ymo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2019-05-08T00:15:43.6931574Z\",\r\n \"gatewayUrl\": \"https://ps7943.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps7943-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps7943.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps7943.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps7943.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7943.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.164.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627\",\r\n \"name\": \"ps2627\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACrdo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2020-02-24T05:59:44.5146486Z\",\r\n \"gatewayUrl\": \"https://ps2627.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2627-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2627.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2627.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2627.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2627.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2627.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.52.42\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -245,7 +245,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -254,7 +254,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83425ba2-edf3-4ce0-8373-c39de7e35171" + "52d16692-2827-4a44-a854-2efa96155195" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -263,16 +263,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "cc394e50-4c92-4073-a3b1-184efa113f80" + "aaaf4e0b-7b82-4323-8aec-bbc75f8dc5ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T001644Z:cc394e50-4c92-4073-a3b1-184efa113f80" + "WESTUS:20200224T060046Z:aaaf4e0b-7b82-4323-8aec-bbc75f8dc5ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:16:43 GMT" + "Mon, 24 Feb 2020 06:00:45 GMT" ], "Expires": [ "-1" @@ -285,16 +285,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -305,7 +305,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -314,7 +314,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "15089ceb-241a-423c-ab4f-395b696a9eae" + "7a7c03a3-50e9-4de5-8a23-f87fbdc96309" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -323,16 +323,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "f64d3c43-49fe-4f2b-95fe-99bfcf2fc36f" + "6dce572c-a200-4661-9f1d-ce253371cb39" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T001745Z:f64d3c43-49fe-4f2b-95fe-99bfcf2fc36f" + "WESTUS:20200224T060146Z:6dce572c-a200-4661-9f1d-ce253371cb39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:17:44 GMT" + "Mon, 24 Feb 2020 06:01:46 GMT" ], "Expires": [ "-1" @@ -345,16 +345,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -365,7 +365,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -374,7 +374,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4c34c44-67e0-47fd-a296-b390a29d76e1" + "6cc38a65-cf3a-4969-97ce-19d6498c533c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -383,16 +383,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "4d83db5e-a27e-4c6c-ba32-02a79ac74a1d" + "521022a2-1c83-4d27-bc58-ad2c49453845" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T001845Z:4d83db5e-a27e-4c6c-ba32-02a79ac74a1d" + "WESTUS:20200224T060247Z:521022a2-1c83-4d27-bc58-ad2c49453845" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:18:44 GMT" + "Mon, 24 Feb 2020 06:02:46 GMT" ], "Expires": [ "-1" @@ -405,16 +405,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -425,7 +425,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -434,25 +434,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e270863-9e63-4f8a-ac1d-bc80e357f54e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6c364917-adfc-434f-ba26-718904b6b988" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "45cc0f00-ec28-4a59-b99b-49ff34e4bbdf" + "f9824b51-b502-4618-b899-dac6c6ded586" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T001945Z:45cc0f00-ec28-4a59-b99b-49ff34e4bbdf" + "WESTUS:20200224T060347Z:f9824b51-b502-4618-b899-dac6c6ded586" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:19:45 GMT" + "Mon, 24 Feb 2020 06:03:47 GMT" ], "Expires": [ "-1" @@ -465,16 +465,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -485,7 +485,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -494,7 +494,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76f1cb59-e05d-4328-a1c3-63b7d16e96c5" + "9943c9e7-c21a-4ab2-b093-81c16b61419e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -503,16 +503,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "0c5fe82d-8474-45d3-af81-7113ee29fb70" + "c793ae7b-ca0f-4d34-9589-4e3bfb7b027c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T002046Z:0c5fe82d-8474-45d3-af81-7113ee29fb70" + "WESTUS:20200224T060447Z:c793ae7b-ca0f-4d34-9589-4e3bfb7b027c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:20:45 GMT" + "Mon, 24 Feb 2020 06:04:46 GMT" ], "Expires": [ "-1" @@ -525,16 +525,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -545,7 +545,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -554,7 +554,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d047b01-0c16-4f48-be71-253b4b9039c6" + "b51e8753-b2e1-41a2-9aee-878acfc9ad95" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -563,16 +563,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "489fe5fb-ec1b-4ff0-b985-89e272c7a2fe" + "d290f21b-1bf3-4a12-b77f-8bac5cca5ba2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T002146Z:489fe5fb-ec1b-4ff0-b985-89e272c7a2fe" + "WESTUS:20200224T060548Z:d290f21b-1bf3-4a12-b77f-8bac5cca5ba2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:21:45 GMT" + "Mon, 24 Feb 2020 06:05:48 GMT" ], "Expires": [ "-1" @@ -585,16 +585,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -605,7 +605,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -614,7 +614,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c862c14-0960-4ca8-94c0-eb7383c1d075" + "5ce32aa3-8633-40dc-a7c5-de65f9fdf828" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -623,16 +623,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "8727cd02-2914-4678-8a82-a20afc785d0b" + "fae31537-e94d-44dc-9bb4-397fe0764652" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T002246Z:8727cd02-2914-4678-8a82-a20afc785d0b" + "WESTUS:20200224T060648Z:fae31537-e94d-44dc-9bb4-397fe0764652" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:22:46 GMT" + "Mon, 24 Feb 2020 06:06:47 GMT" ], "Expires": [ "-1" @@ -645,16 +645,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -665,7 +665,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -674,7 +674,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a705f94c-882a-4e7f-86e8-4c8e3c23f070" + "29b0aaae-98ec-4fe6-bde1-b9530f912f8d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -683,16 +683,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "783f17de-6c2c-41db-b1db-9adef0236b2a" + "b2c3792a-72de-4174-b852-1bc0485efe5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T002347Z:783f17de-6c2c-41db-b1db-9adef0236b2a" + "WESTUS:20200224T060748Z:b2c3792a-72de-4174-b852-1bc0485efe5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:23:46 GMT" + "Mon, 24 Feb 2020 06:07:48 GMT" ], "Expires": [ "-1" @@ -705,16 +705,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -725,7 +725,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -734,7 +734,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a340f0a-f2e8-4e76-8052-e16a8f9c22aa" + "900709d9-5dee-4021-b836-8c70f99a0355" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -743,16 +743,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "c87d6c44-c71e-457e-8991-bf5030d0cb64" + "dc168186-8c1c-46fc-9a31-609f9c457b7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T002447Z:c87d6c44-c71e-457e-8991-bf5030d0cb64" + "WESTUS:20200224T060849Z:dc168186-8c1c-46fc-9a31-609f9c457b7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:24:46 GMT" + "Mon, 24 Feb 2020 06:08:48 GMT" ], "Expires": [ "-1" @@ -765,16 +765,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -785,7 +785,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -794,7 +794,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4eb07a37-4cfe-4bb0-9942-9144b223f69d" + "fdce9218-d7b4-43e9-984f-a374c9b19b37" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -803,16 +803,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "98ad8525-c20b-4000-b875-9e0e2e17d735" + "f0c28ae8-87f9-428c-a379-27af5a280ce2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T002547Z:98ad8525-c20b-4000-b875-9e0e2e17d735" + "WESTUS:20200224T060949Z:f0c28ae8-87f9-428c-a379-27af5a280ce2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:25:47 GMT" + "Mon, 24 Feb 2020 06:09:49 GMT" ], "Expires": [ "-1" @@ -825,16 +825,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -845,7 +845,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -854,7 +854,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eac95409-102e-4183-9215-444203470084" + "3f48ec57-b284-4799-a97e-e2d4d09b7fc7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -863,16 +863,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "31685658-cdae-40c1-a80c-1ba4f30489dd" + "ba481211-a4a2-4aac-97dc-d55853a29c39" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T002648Z:31685658-cdae-40c1-a80c-1ba4f30489dd" + "WESTUS:20200224T061049Z:ba481211-a4a2-4aac-97dc-d55853a29c39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:26:47 GMT" + "Mon, 24 Feb 2020 06:10:49 GMT" ], "Expires": [ "-1" @@ -885,16 +885,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -905,7 +905,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -914,7 +914,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1273861b-839f-4963-916a-be82a3ca65fd" + "533130cd-248e-479c-ab2d-cf47168bdac6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -923,16 +923,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "76720c4e-a497-4897-8c9c-4e3c431a0a5e" + "746f703a-00ee-474b-aae7-f4ae0aeac78c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T002808Z:76720c4e-a497-4897-8c9c-4e3c431a0a5e" + "WESTUS:20200224T061150Z:746f703a-00ee-474b-aae7-f4ae0aeac78c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:28:07 GMT" + "Mon, 24 Feb 2020 06:11:49 GMT" ], "Expires": [ "-1" @@ -945,16 +945,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -965,7 +965,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -974,7 +974,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24848efd-62f6-41ec-970e-5ef3422a60bd" + "0616a35d-d5c0-442a-8311-32b5016d89eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -983,16 +983,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "fefa9978-96dd-4ae1-aaa1-f8c9c8a29f04" + "587ee26c-dc2c-41ad-995f-74174ea8ae21" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T002908Z:fefa9978-96dd-4ae1-aaa1-f8c9c8a29f04" + "WESTUS:20200224T061250Z:587ee26c-dc2c-41ad-995f-74174ea8ae21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:29:08 GMT" + "Mon, 24 Feb 2020 06:12:50 GMT" ], "Expires": [ "-1" @@ -1005,16 +1005,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1025,7 +1025,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1034,7 +1034,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4d7d140-c9b1-466d-88c0-d123acc70097" + "dd353ef2-1f76-4648-af59-d1c7441f4c36" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1043,16 +1043,16 @@ "11986" ], "x-ms-correlation-request-id": [ - "7df9d2bb-d9b6-496d-9822-6523b725ea5a" + "6e6f48f2-aaa6-450c-95d9-4a4771032997" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003009Z:7df9d2bb-d9b6-496d-9822-6523b725ea5a" + "WESTUS:20200224T061350Z:6e6f48f2-aaa6-450c-95d9-4a4771032997" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:30:08 GMT" + "Mon, 24 Feb 2020 06:13:50 GMT" ], "Expires": [ "-1" @@ -1065,16 +1065,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1085,7 +1085,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1094,7 +1094,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "959c173f-8bb4-4cbb-a166-e6b5083157a7" + "5a01ebbf-0f82-49b0-ad44-d1cec33191f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1103,16 +1103,16 @@ "11985" ], "x-ms-correlation-request-id": [ - "15a01a2f-e3a1-44a6-9485-87e8a41892d0" + "f14056b0-2008-4d8b-a02a-dae88dee224e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003109Z:15a01a2f-e3a1-44a6-9485-87e8a41892d0" + "WESTUS:20200224T061451Z:f14056b0-2008-4d8b-a02a-dae88dee224e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:31:09 GMT" + "Mon, 24 Feb 2020 06:14:51 GMT" ], "Expires": [ "-1" @@ -1125,16 +1125,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1145,7 +1145,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1154,7 +1154,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17ef10b1-45c9-4b98-b461-10e3462be7b6" + "a2d66785-2a56-4131-b7a7-28996ece623a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1163,16 +1163,16 @@ "11984" ], "x-ms-correlation-request-id": [ - "1e002a3b-983e-4785-92fe-1ef838c3ff36" + "5f1a0636-4daa-4a2b-a76f-d758e4f5e850" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003209Z:1e002a3b-983e-4785-92fe-1ef838c3ff36" + "WESTUS:20200224T061551Z:5f1a0636-4daa-4a2b-a76f-d758e4f5e850" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:32:09 GMT" + "Mon, 24 Feb 2020 06:15:51 GMT" ], "Expires": [ "-1" @@ -1185,16 +1185,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1205,7 +1205,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1214,7 +1214,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eeee03b1-0467-4f2d-896e-5dccb23c12c6" + "8ed1df96-7bdd-4615-a5ed-2e58e14d9aa6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1223,16 +1223,16 @@ "11983" ], "x-ms-correlation-request-id": [ - "47ce4b05-8667-4920-80d8-5b97b85c2d5a" + "5c95599c-fbbe-4733-bcb6-7d56e6023072" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003310Z:47ce4b05-8667-4920-80d8-5b97b85c2d5a" + "WESTUS:20200224T061652Z:5c95599c-fbbe-4733-bcb6-7d56e6023072" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:33:09 GMT" + "Mon, 24 Feb 2020 06:16:51 GMT" ], "Expires": [ "-1" @@ -1245,16 +1245,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1265,7 +1265,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1274,7 +1274,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4515fff-d6b1-4f11-81cd-d77e84380fc2" + "c1ab3aa0-cc77-4116-b7c9-b33e6edff1eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1283,16 +1283,16 @@ "11982" ], "x-ms-correlation-request-id": [ - "dcbb3098-d773-4d01-87de-ff8a82ab516e" + "05c07f84-48a4-48a4-83f3-3b6e0cd48e4d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003411Z:dcbb3098-d773-4d01-87de-ff8a82ab516e" + "WESTUS:20200224T061752Z:05c07f84-48a4-48a4-83f3-3b6e0cd48e4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:34:10 GMT" + "Mon, 24 Feb 2020 06:17:51 GMT" ], "Expires": [ "-1" @@ -1305,16 +1305,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1325,7 +1325,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1334,7 +1334,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3bece00-7103-44be-bfa5-172a3f66b3aa" + "16dde6cb-5d36-433f-ac90-20dd408103ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1343,16 +1343,16 @@ "11981" ], "x-ms-correlation-request-id": [ - "a6e6919b-5151-4b6d-85a4-7c2731efbee7" + "7546bf59-582b-4165-a703-b3cb0a1bd05c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003511Z:a6e6919b-5151-4b6d-85a4-7c2731efbee7" + "WESTUS:20200224T061852Z:7546bf59-582b-4165-a703-b3cb0a1bd05c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:35:11 GMT" + "Mon, 24 Feb 2020 06:18:52 GMT" ], "Expires": [ "-1" @@ -1365,16 +1365,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1385,7 +1385,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1394,7 +1394,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66bb2f50-3b0d-4f25-bfc3-d0170135b196" + "5ca37e07-9fa2-4b40-b8d2-cc5340676729" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1403,16 +1403,16 @@ "11980" ], "x-ms-correlation-request-id": [ - "2960acee-56ee-4b96-9e94-2a0f91f3d9ed" + "9fa73bac-104e-466b-83f0-9949e56b3453" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003611Z:2960acee-56ee-4b96-9e94-2a0f91f3d9ed" + "WESTUS:20200224T061953Z:9fa73bac-104e-466b-83f0-9949e56b3453" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:36:10 GMT" + "Mon, 24 Feb 2020 06:19:52 GMT" ], "Expires": [ "-1" @@ -1425,16 +1425,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1445,7 +1445,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1454,7 +1454,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0077a198-5dab-406c-a03a-369459bbbf4b" + "30f6e539-f9f2-46ef-9921-e88e76733875" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1463,16 +1463,16 @@ "11979" ], "x-ms-correlation-request-id": [ - "2d2599b6-323e-4552-a522-a33553d0a9e3" + "1e9d7eaf-48b2-4ff1-b70b-554a5b08de92" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003712Z:2d2599b6-323e-4552-a522-a33553d0a9e3" + "WESTUS:20200224T062053Z:1e9d7eaf-48b2-4ff1-b70b-554a5b08de92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:37:11 GMT" + "Mon, 24 Feb 2020 06:20:52 GMT" ], "Expires": [ "-1" @@ -1485,16 +1485,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1505,7 +1505,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1514,7 +1514,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "643bd5ef-f6ea-4fa6-8839-117531302f00" + "8c6d8f7a-8531-4298-b4e8-bc971a8c3bfb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1523,16 +1523,16 @@ "11978" ], "x-ms-correlation-request-id": [ - "ad27e246-81c0-4915-a875-cf524b41d7cb" + "ab28c35d-3508-4e13-9454-a49457105a0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003812Z:ad27e246-81c0-4915-a875-cf524b41d7cb" + "WESTUS:20200224T062153Z:ab28c35d-3508-4e13-9454-a49457105a0a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:38:12 GMT" + "Mon, 24 Feb 2020 06:21:53 GMT" ], "Expires": [ "-1" @@ -1545,16 +1545,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1565,7 +1565,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1574,7 +1574,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95e71f2a-b4a5-4c50-b54f-2a3dc769dc9f" + "12f68927-8124-43a1-bf2f-7348548f61ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1583,16 +1583,16 @@ "11977" ], "x-ms-correlation-request-id": [ - "400d6025-5f51-4a34-accb-44c6fc4fba58" + "ce2c1eb3-ea6c-4035-8889-dadfaed65577" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T003913Z:400d6025-5f51-4a34-accb-44c6fc4fba58" + "WESTUS:20200224T062254Z:ce2c1eb3-ea6c-4035-8889-dadfaed65577" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:39:13 GMT" + "Mon, 24 Feb 2020 06:22:53 GMT" ], "Expires": [ "-1" @@ -1605,16 +1605,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1625,7 +1625,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1634,7 +1634,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1441c4a5-ce14-4c10-a96f-493eb598b942" + "c4f9b721-1ec3-4f31-9963-4136598abcb3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1643,16 +1643,16 @@ "11976" ], "x-ms-correlation-request-id": [ - "4a2318ba-e1cd-4873-870c-2a319e2835b2" + "cbaa54b2-7ec9-4e3a-a965-f718f925e12b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004013Z:4a2318ba-e1cd-4873-870c-2a319e2835b2" + "WESTUS:20200224T062354Z:cbaa54b2-7ec9-4e3a-a965-f718f925e12b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:40:13 GMT" + "Mon, 24 Feb 2020 06:23:54 GMT" ], "Expires": [ "-1" @@ -1665,16 +1665,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1685,7 +1685,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1694,7 +1694,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6b361c8a-5eed-4f18-855d-1ae23c0cc74a" + "35c5763a-b731-4bcb-967a-332709069f08" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1703,16 +1703,16 @@ "11975" ], "x-ms-correlation-request-id": [ - "d26f686e-1e83-423b-a4a6-713a43550e51" + "5e6e395a-1e4a-4be6-9f07-87a661a3fcc7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004114Z:d26f686e-1e83-423b-a4a6-713a43550e51" + "WESTUS:20200224T062454Z:5e6e395a-1e4a-4be6-9f07-87a661a3fcc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:41:14 GMT" + "Mon, 24 Feb 2020 06:24:53 GMT" ], "Expires": [ "-1" @@ -1725,16 +1725,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1745,7 +1745,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1754,7 +1754,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99cee57c-41d8-4435-9525-70f5ca88fc89" + "6aec8997-c223-4a2c-84cd-83f2c2aa9689" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1763,16 +1763,16 @@ "11974" ], "x-ms-correlation-request-id": [ - "a93d5f66-af89-414a-8f20-1382a7cc5d84" + "af7b00fc-1b38-4426-8249-9f4e3342e82a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004214Z:a93d5f66-af89-414a-8f20-1382a7cc5d84" + "WESTUS:20200224T062555Z:af7b00fc-1b38-4426-8249-9f4e3342e82a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:42:13 GMT" + "Mon, 24 Feb 2020 06:25:54 GMT" ], "Expires": [ "-1" @@ -1785,16 +1785,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1805,7 +1805,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1814,7 +1814,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d21905d-5d6b-47a2-aa21-3c98c7ed1271" + "6597d751-e8a6-4a56-81a2-cf04675d4bf2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1823,16 +1823,16 @@ "11973" ], "x-ms-correlation-request-id": [ - "18204ca3-2e5a-4597-84bd-4184476476fd" + "ab4a4fae-5fda-4c05-8a23-a1e2dc773f0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004314Z:18204ca3-2e5a-4597-84bd-4184476476fd" + "WESTUS:20200224T062655Z:ab4a4fae-5fda-4c05-8a23-a1e2dc773f0a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:43:14 GMT" + "Mon, 24 Feb 2020 06:26:55 GMT" ], "Expires": [ "-1" @@ -1845,16 +1845,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1865,7 +1865,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1874,7 +1874,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ca344bd-7830-46ef-ae91-341180c2acb4" + "615dbf14-98dc-4a5f-a72a-d99d508f13be" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1883,16 +1883,16 @@ "11972" ], "x-ms-correlation-request-id": [ - "eb2cc1e3-f182-4aa0-82e0-abe545bf0163" + "9c0a29c2-d666-4683-a7b0-31cf3cdf07da" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004415Z:eb2cc1e3-f182-4aa0-82e0-abe545bf0163" + "WESTUS:20200224T062755Z:9c0a29c2-d666-4683-a7b0-31cf3cdf07da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:44:14 GMT" + "Mon, 24 Feb 2020 06:27:55 GMT" ], "Expires": [ "-1" @@ -1905,16 +1905,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1925,7 +1925,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1934,7 +1934,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b29692a-35d8-432e-817e-c544103dcc77" + "a09d72cf-55e6-45f2-a115-3f06aca57741" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1943,16 +1943,16 @@ "11971" ], "x-ms-correlation-request-id": [ - "88b29d03-6a97-45de-a8a3-52addafa985c" + "84d9a190-db46-4866-b7cb-3a1aece790f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004515Z:88b29d03-6a97-45de-a8a3-52addafa985c" + "WESTUS:20200224T062856Z:84d9a190-db46-4866-b7cb-3a1aece790f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:45:15 GMT" + "Mon, 24 Feb 2020 06:28:55 GMT" ], "Expires": [ "-1" @@ -1965,16 +1965,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -1985,7 +1985,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1994,7 +1994,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "140fe641-e482-4425-bc8d-58ab08fbaa94" + "3fd46a11-8cb5-4bdf-82f6-fe996c226bd0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2003,16 +2003,16 @@ "11970" ], "x-ms-correlation-request-id": [ - "dc1b0aa8-3798-433e-a11d-5aa6adc892d4" + "0887da02-41ce-40e4-94de-8522ede9cd90" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004615Z:dc1b0aa8-3798-433e-a11d-5aa6adc892d4" + "WESTUS:20200224T062956Z:0887da02-41ce-40e4-94de-8522ede9cd90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:46:15 GMT" + "Mon, 24 Feb 2020 06:29:56 GMT" ], "Expires": [ "-1" @@ -2025,16 +2025,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2045,7 +2045,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2054,7 +2054,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49eea509-02dc-4ea2-bb45-8bcc6d507638" + "44c6115c-bca5-4877-8423-764106de186a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2063,16 +2063,16 @@ "11969" ], "x-ms-correlation-request-id": [ - "8d6708b9-28cd-48a2-8127-ed60c32c84b6" + "c5c677bb-ec43-4e4f-99a6-678293cdad6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004716Z:8d6708b9-28cd-48a2-8127-ed60c32c84b6" + "WESTUS:20200224T063057Z:c5c677bb-ec43-4e4f-99a6-678293cdad6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:47:15 GMT" + "Mon, 24 Feb 2020 06:30:56 GMT" ], "Expires": [ "-1" @@ -2085,16 +2085,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2105,7 +2105,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2114,7 +2114,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9cb85de8-fe72-4011-ab49-256767f65ba2" + "c522d8bc-f57a-4e8b-96aa-31fe1f2dae72" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2123,16 +2123,16 @@ "11968" ], "x-ms-correlation-request-id": [ - "c77f611d-781b-4f55-be81-817e53172cd9" + "b5163eab-8e89-4bed-b6b4-7a92ca1505d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004816Z:c77f611d-781b-4f55-be81-817e53172cd9" + "WESTUS:20200224T063157Z:b5163eab-8e89-4bed-b6b4-7a92ca1505d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:48:16 GMT" + "Mon, 24 Feb 2020 06:31:57 GMT" ], "Expires": [ "-1" @@ -2145,16 +2145,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX0FjdF82ZDRjYzRhMg==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgwRmpkRjgyWkRSall6UmhNZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2164,60 +2164,57 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01" + ], + "Retry-After": [ + "60" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "295d3a88-7c85-4a9a-bf5c-88fee0c6e1a9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "b09cae2c-1d7a-4fb9-b95e-20605ddfe182" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "e8f8b5af-13b9-4f2d-8d4e-fd5a2c4c4452" + "16369549-fe0e-4131-8706-d2e527160391" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004917Z:e8f8b5af-13b9-4f2d-8d4e-fd5a2c4c4452" + "WESTUS:20200224T063257Z:16369549-fe0e-4131-8706-d2e527160391" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:49:17 GMT" - ], - "Content-Length": [ - "2185" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 24 Feb 2020 06:32:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943\",\r\n \"name\": \"ps7943\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF/YmU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T00:15:43.6931574Z\",\r\n \"gatewayUrl\": \"https://ps7943.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps7943-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps7943.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps7943.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps7943.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7943.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.164.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/networkstatus?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19BY3RfZjIzMTI4YjE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOUJZM1JmWmpJek1USTRZakU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2bc61513-c24d-44bd-9811-7f3291c0da86" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2231,7 +2228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72f31683-aec5-415e-bea1-6ca6c75a6ad9" + "d8055bdd-c01f-4b5d-baed-a861cc3e8c42" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2240,19 +2237,19 @@ "11966" ], "x-ms-correlation-request-id": [ - "c464693e-ec17-4837-90c1-830341e82bbb" + "f5edb079-abd2-471a-abeb-3778ebd51b05" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004917Z:c464693e-ec17-4837-90c1-830341e82bbb" + "WESTUS:20200224T063357Z:f5edb079-abd2-471a-abeb-3778ebd51b05" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:49:17 GMT" + "Mon, 24 Feb 2020 06:33:57 GMT" ], "Content-Length": [ - "1502" + "2230" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2261,26 +2258,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"North Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:48:18.1106357Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:38:18.0282024Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:48:21.2043794Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:38:20.9481128Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:48:20.1418845Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:38:19.8869003Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:48:19.9553562Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:38:18.3543505Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:48:20.6418941Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:38:20.0574873Z\"\r\n },\r\n {\r\n \"name\": \"m657swv8gg.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:48:19.9856364Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:38:18.8543511Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:48:20.5012544Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:38:20.2918621Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:48:22.4856309Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:48:22.4856309Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627\",\r\n \"name\": \"ps2627\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACrdk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-24T05:59:44.5146486Z\",\r\n \"gatewayUrl\": \"https://ps2627.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2627-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2627.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2627.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2627.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2627.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2627.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.52.42\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/networkstatus?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/networkstatus?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L25ldHdvcmtzdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac2991c5-65cc-435f-a3a4-46b8504b8073" + "fa431666-1b23-4c11-a4b0-12d0152d163e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2294,28 +2291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0aca7432-13c9-4e4e-a859-53433a1d6011" + "58db8c4f-db41-4cf5-a9cc-a547631f4dd7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11965" ], "x-ms-correlation-request-id": [ - "2c5f7166-5514-4340-bb78-68b2faeb3c12" + "a2a16a14-0ee5-4864-9c60-d744b87a58b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010831Z:2c5f7166-5514-4340-bb78-68b2faeb3c12" + "WESTUS:20200224T063358Z:a2a16a14-0ee5-4864-9c60-d744b87a58b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:08:30 GMT" + "Mon, 24 Feb 2020 06:33:57 GMT" ], "Content-Length": [ - "2907" + "1847" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2324,26 +2321,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"North Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:59:50.6416042Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:59:50.6416042Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:59:50.7041175Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:59:50.7041175Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:59:50.7041175Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:59:50.7041175Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:59:51.0478508Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:59:51.0478508Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:59:51.2822258Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:59:51.2822258Z\"\r\n },\r\n {\r\n \"name\": \"m657swv8gg.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:59:50.7197288Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:59:50.7197288Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T00:59:51.1416041Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:59:51.1416041Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2019-05-08T00:59:52.1103588Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:59:52.1103588Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T01:08:16.6648049Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:58:16.2153349Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T01:08:16.1022609Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:58:15.7932036Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstcu5yvcump7wjmqk.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T01:08:16.0241103Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:58:15.7463041Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstyad31sluyulaunh.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T01:08:15.7272095Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:58:15.4661092Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T01:08:15.9928509Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:58:15.7306739Z\"\r\n },\r\n {\r\n \"name\": \"m657swv8gg.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T01:08:16.2585002Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:58:15.7779409Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-05-08T01:08:15.6662028Z\",\r\n \"lastStatusChange\": \"2019-05-08T00:58:15.5899713Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"East US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:52.5571851Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:20:51.8612614Z\"\r\n },\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:51.5694676Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:20:50.1071053Z\"\r\n },\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:51.4600916Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:20:49.3115471Z\"\r\n },\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:52.6170427Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:20:51.9508588Z\"\r\n },\r\n {\r\n \"name\": \"apirpsql9q4l3jajm3dyfmiz.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:52.4913344Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:20:51.5813701Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:52.5272777Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:20:49.9844511Z\"\r\n },\r\n {\r\n \"name\": \"https://prod.warm.ingestion.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:52.6679164Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:20:50.0630975Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:52.2306495Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:20:49.9844511Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:55.1788506Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:30:55.1788506Z\"\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:30:52.8225989Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:20:51.4527403Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/networkstatus?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L25ldHdvcmtzdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "267cf856-7506-4d98-bb9d-ad20dc443896" + "551b8044-3efb-4219-91c4-962e13703a22" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2353,35 +2350,32 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAF/YmU=\"" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0839f8f-b0f8-4ba2-8214-04115f1637a5" + "1fa72004-c62d-4959-b3e0-a0bf769902f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11945" ], "x-ms-correlation-request-id": [ - "2aef1831-64cf-4fd0-9a62-0f1ac6954248" + "8008b5ab-437b-4da2-bb63-857ec5a77cc9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T004918Z:2aef1831-64cf-4fd0-9a62-0f1ac6954248" + "WESTUS:20200224T065207Z:8008b5ab-437b-4da2-bb63-857ec5a77cc9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:49:18 GMT" + "Mon, 24 Feb 2020 06:52:07 GMT" ], "Content-Length": [ - "2185" + "3763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2390,20 +2384,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943\",\r\n \"name\": \"ps7943\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF/YmU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T00:15:43.6931574Z\",\r\n \"gatewayUrl\": \"https://ps7943.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps7943-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps7943.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps7943.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps7943.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7943.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.164.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"East US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:14.2009209Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:14.2009209Z\"\r\n },\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:14.5124415Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:14.5124415Z\"\r\n },\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:14.4037798Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:14.4037798Z\"\r\n },\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:14.4037798Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:14.4037798Z\"\r\n },\r\n {\r\n \"name\": \"apirpsql9q4l3jajm3dyfmiz.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:14.344314Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:14.344314Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:13.8874412Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:13.8874412Z\"\r\n },\r\n {\r\n \"name\": \"https://prod.warm.ingestion.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:14.4968111Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:14.4968111Z\"\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:14.1558227Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:14.1558227Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:14.2816469Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:14.2816469Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2020-02-24T06:45:14.6401134Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:14.6401134Z\"\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:45:15.28021Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:45:15.28021Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:47:02.4894347Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:47:02.4894347Z\"\r\n },\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:47:02.1612245Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:47:02.1612245Z\"\r\n },\r\n {\r\n \"name\": \"apimst1hy9s6vfsq6olkqv2v.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:47:02.0674498Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:47:02.0674498Z\"\r\n },\r\n {\r\n \"name\": \"apimstjq7ciavsxzxsivkx2p.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:47:02.0372987Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:47:02.0372987Z\"\r\n },\r\n {\r\n \"name\": \"apirpsql9q4l3jajm3dyfmiz.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:47:02.1149013Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:47:02.1149013Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:47:02.2393739Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:47:02.2393739Z\"\r\n },\r\n {\r\n \"name\": \"https://southcentralus.prod.warm.ingestion.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:47:02.0987072Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:47:02.0987072Z\"\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:47:03.0676765Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:47:03.0676765Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-02-24T06:47:02.0987072Z\",\r\n \"lastStatusChange\": \"2020-02-24T06:47:02.0987072Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6eaf9a64-9fdd-46cb-a341-980591cef282" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2413,17 +2413,14 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" - ], - "Retry-After": [ - "60" + "ETag": [ + "\"AAAAAAACrdk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7b767c6-f64a-4991-9bdf-b205c090bd1b" + "fee870e1-909b-4ea7-9f27-6cfe361851fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2432,38 +2429,41 @@ "11964" ], "x-ms-correlation-request-id": [ - "efb12249-5f9d-43de-9be2-a11d6191f2bd" + "90a8587b-7eaf-4dc5-9bf7-aa1f7d915958" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005022Z:efb12249-5f9d-43de-9be2-a11d6191f2bd" + "WESTUS:20200224T063358Z:90a8587b-7eaf-4dc5-9bf7-aa1f7d915958" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:50:22 GMT" + "Mon, 24 Feb 2020 06:33:58 GMT" + ], + "Content-Length": [ + "2230" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627\",\r\n \"name\": \"ps2627\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACrdk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-24T05:59:44.5146486Z\",\r\n \"gatewayUrl\": \"https://ps2627.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2627-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2627.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2627.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2627.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2627.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2627.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.52.42\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2474,7 +2474,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2483,7 +2483,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3afe504f-2eb6-4e7d-8eb3-597de6c51dc0" + "5f392d1f-bd5f-497c-9993-d0b302aef9a2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2492,16 +2492,16 @@ "11963" ], "x-ms-correlation-request-id": [ - "b143d29e-a38b-45e6-ac43-9bd9f18c406f" + "f73bbfd9-143a-4015-aa99-15476e9b2a9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005123Z:b143d29e-a38b-45e6-ac43-9bd9f18c406f" + "WESTUS:20200224T063501Z:f73bbfd9-143a-4015-aa99-15476e9b2a9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:51:23 GMT" + "Mon, 24 Feb 2020 06:35:00 GMT" ], "Expires": [ "-1" @@ -2514,16 +2514,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2534,7 +2534,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2543,25 +2543,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47fc7f50-551a-4a64-9cdf-92e5011d2314" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "0319e53a-4b7d-4d12-a0df-1f7966630c9f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "18e0e566-c09f-41c6-b2bf-091eba0c3765" + "425677cf-e8b9-4799-a2bf-f15eaade1fde" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005223Z:18e0e566-c09f-41c6-b2bf-091eba0c3765" + "WESTUS:20200224T063601Z:425677cf-e8b9-4799-a2bf-f15eaade1fde" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:52:23 GMT" + "Mon, 24 Feb 2020 06:36:00 GMT" ], "Expires": [ "-1" @@ -2574,16 +2574,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2594,7 +2594,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2603,7 +2603,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9885fb14-7c3f-4f8a-a6c6-26cc4f6d41b9" + "60e4ce33-bec0-4486-9c82-5b6a4e98f2f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2612,16 +2612,16 @@ "11961" ], "x-ms-correlation-request-id": [ - "9bdc91d9-6756-446c-a821-cf3c41ec8c7d" + "52c0db51-e322-4aa1-811d-b61463175e69" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005324Z:9bdc91d9-6756-446c-a821-cf3c41ec8c7d" + "WESTUS:20200224T063701Z:52c0db51-e322-4aa1-811d-b61463175e69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:53:23 GMT" + "Mon, 24 Feb 2020 06:37:01 GMT" ], "Expires": [ "-1" @@ -2634,16 +2634,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2654,7 +2654,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2663,7 +2663,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "616baf5f-6287-409d-acba-21b4fcf625fb" + "a87770d0-ed44-47e6-b29a-fbdfff84bb1d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2672,16 +2672,16 @@ "11960" ], "x-ms-correlation-request-id": [ - "3ba89a90-3f53-45c5-9dc2-76210b91ddb7" + "2d8e10ee-c53f-43b4-b8cb-0e0c4bfb6dc7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005424Z:3ba89a90-3f53-45c5-9dc2-76210b91ddb7" + "WESTUS:20200224T063802Z:2d8e10ee-c53f-43b4-b8cb-0e0c4bfb6dc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:54:24 GMT" + "Mon, 24 Feb 2020 06:38:01 GMT" ], "Expires": [ "-1" @@ -2694,16 +2694,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2714,7 +2714,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2723,7 +2723,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4040c664-a984-425a-a21d-be05bf578240" + "299daffa-3a4c-470d-9ccd-51ae4b8b9a03" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2732,16 +2732,16 @@ "11959" ], "x-ms-correlation-request-id": [ - "7f91b4b9-0581-4917-95d6-958202afde69" + "e6eb6cf9-9577-4aed-b1a3-09ff3d05aba3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005525Z:7f91b4b9-0581-4917-95d6-958202afde69" + "WESTUS:20200224T063902Z:e6eb6cf9-9577-4aed-b1a3-09ff3d05aba3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:55:24 GMT" + "Mon, 24 Feb 2020 06:39:01 GMT" ], "Expires": [ "-1" @@ -2754,16 +2754,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2774,7 +2774,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2783,7 +2783,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab87da5d-e19d-45fe-b0b3-a154980d53e2" + "97481e0f-9194-41b7-91f1-857bfb28f673" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2792,16 +2792,16 @@ "11958" ], "x-ms-correlation-request-id": [ - "df6a9e39-6694-4355-9539-7a4514ddd80f" + "0fd656ae-364e-443b-ae91-fd78b5ffd250" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005625Z:df6a9e39-6694-4355-9539-7a4514ddd80f" + "WESTUS:20200224T064002Z:0fd656ae-364e-443b-ae91-fd78b5ffd250" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:56:24 GMT" + "Mon, 24 Feb 2020 06:40:02 GMT" ], "Expires": [ "-1" @@ -2814,16 +2814,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2834,7 +2834,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2843,25 +2843,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "389902cb-6d2d-4b20-8696-37026215ce0a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "6a0329bc-86b9-45a5-8970-04651fa96d08" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "621c0ee7-9915-4de1-8301-c2e1be9d1213" + "76f9625b-4a30-486e-804f-2efaa506a48a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005726Z:621c0ee7-9915-4de1-8301-c2e1be9d1213" + "WESTUS:20200224T064102Z:76f9625b-4a30-486e-804f-2efaa506a48a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:57:25 GMT" + "Mon, 24 Feb 2020 06:41:02 GMT" ], "Expires": [ "-1" @@ -2874,16 +2874,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2894,7 +2894,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2903,7 +2903,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aca7ec77-1679-42e0-83c2-db610606edb4" + "40f200f1-4d32-4957-8b3c-76396435c5ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2912,16 +2912,16 @@ "11956" ], "x-ms-correlation-request-id": [ - "857ce9b6-077b-4e64-8535-42ee5f75d1a8" + "d69e1ce1-53fc-4511-b00f-967c29a8a299" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005826Z:857ce9b6-077b-4e64-8535-42ee5f75d1a8" + "WESTUS:20200224T064203Z:d69e1ce1-53fc-4511-b00f-967c29a8a299" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:58:25 GMT" + "Mon, 24 Feb 2020 06:42:02 GMT" ], "Expires": [ "-1" @@ -2934,16 +2934,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -2954,7 +2954,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -2963,7 +2963,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a3b482d-4a23-4702-b7bc-1fbc6bb81d05" + "b398eabb-2c09-46d1-bb84-cb60d5baf416" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2972,16 +2972,16 @@ "11955" ], "x-ms-correlation-request-id": [ - "145aaf7b-9b3a-402a-969d-5081c7fe9703" + "b7eaa083-5e6a-4278-91a8-a0125b62da19" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T005927Z:145aaf7b-9b3a-402a-969d-5081c7fe9703" + "WESTUS:20200224T064303Z:b7eaa083-5e6a-4278-91a8-a0125b62da19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 00:59:26 GMT" + "Mon, 24 Feb 2020 06:43:02 GMT" ], "Expires": [ "-1" @@ -2994,16 +2994,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3014,7 +3014,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3023,7 +3023,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10490f0a-f43e-4648-b23f-cd382a4cc33e" + "72e97d14-b543-4f75-b6b2-608306794f3c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3032,16 +3032,16 @@ "11954" ], "x-ms-correlation-request-id": [ - "019b3560-4726-4fca-b632-ab3d83e94bdc" + "9401da57-a59a-46f4-a21e-7ba162fbbc13" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010027Z:019b3560-4726-4fca-b632-ab3d83e94bdc" + "WESTUS:20200224T064404Z:9401da57-a59a-46f4-a21e-7ba162fbbc13" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:00:27 GMT" + "Mon, 24 Feb 2020 06:44:03 GMT" ], "Expires": [ "-1" @@ -3054,16 +3054,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3074,7 +3074,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3083,7 +3083,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46cd000c-483f-4b45-8f51-88034ee8c171" + "612a9375-b64e-4b84-a783-3f45c1f8c222" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3092,16 +3092,16 @@ "11953" ], "x-ms-correlation-request-id": [ - "daee338c-ad3c-4b9c-9ad1-9b15fba0ec0d" + "bca70b55-6326-40c6-afb7-c70d0273796b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010127Z:daee338c-ad3c-4b9c-9ad1-9b15fba0ec0d" + "WESTUS:20200224T064504Z:bca70b55-6326-40c6-afb7-c70d0273796b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:01:27 GMT" + "Mon, 24 Feb 2020 06:45:04 GMT" ], "Expires": [ "-1" @@ -3114,16 +3114,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3134,7 +3134,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3143,7 +3143,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cefdad19-2cc9-4649-bd3e-60b356926b2c" + "bb0f7154-5862-468d-9f4c-eddcc1bff1be" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3152,16 +3152,16 @@ "11952" ], "x-ms-correlation-request-id": [ - "bd53d0b7-d23c-4798-990a-d3364a97a6ae" + "7674a04c-9fd0-4a37-8e14-3a9387f60105" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010227Z:bd53d0b7-d23c-4798-990a-d3364a97a6ae" + "WESTUS:20200224T064604Z:7674a04c-9fd0-4a37-8e14-3a9387f60105" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:02:27 GMT" + "Mon, 24 Feb 2020 06:46:04 GMT" ], "Expires": [ "-1" @@ -3174,16 +3174,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3194,7 +3194,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3203,7 +3203,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4af74c4d-6e52-467b-bd62-9694b06393a9" + "dc8f9a69-8d0d-487a-a1df-04efc8cf1e6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3212,16 +3212,16 @@ "11951" ], "x-ms-correlation-request-id": [ - "5a3d7a4d-5014-4ff8-8121-7adde7661b01" + "81802d1b-500e-464c-8877-fdb76fcc1604" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010328Z:5a3d7a4d-5014-4ff8-8121-7adde7661b01" + "WESTUS:20200224T064705Z:81802d1b-500e-464c-8877-fdb76fcc1604" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:03:28 GMT" + "Mon, 24 Feb 2020 06:47:04 GMT" ], "Expires": [ "-1" @@ -3234,16 +3234,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3254,7 +3254,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3263,7 +3263,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb5d4da2-7227-4fa5-8df1-f35e54bad858" + "6e53e7b4-b940-4e3b-99fe-ca71af0c4771" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3272,16 +3272,16 @@ "11950" ], "x-ms-correlation-request-id": [ - "f242c75f-654c-4c4a-82f3-9d4830b0b73d" + "e5f936a2-665d-4f42-9563-dd9327d37e48" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010428Z:f242c75f-654c-4c4a-82f3-9d4830b0b73d" + "WESTUS:20200224T064805Z:e5f936a2-665d-4f42-9563-dd9327d37e48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:04:28 GMT" + "Mon, 24 Feb 2020 06:48:05 GMT" ], "Expires": [ "-1" @@ -3294,16 +3294,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3314,7 +3314,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3323,7 +3323,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36da44ea-cc32-4392-b830-24642133a91d" + "ef6c7c89-abdd-4a32-ba89-c60f0b6480e4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3332,16 +3332,16 @@ "11949" ], "x-ms-correlation-request-id": [ - "1129cc1a-8bc6-407b-af68-cc7e34d015d2" + "ebf40b0f-3c8b-4556-b378-b1281f982444" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010528Z:1129cc1a-8bc6-407b-af68-cc7e34d015d2" + "WESTUS:20200224T064905Z:ebf40b0f-3c8b-4556-b378-b1281f982444" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:05:28 GMT" + "Mon, 24 Feb 2020 06:49:04 GMT" ], "Expires": [ "-1" @@ -3354,16 +3354,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3374,7 +3374,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3383,7 +3383,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4ee597f-01b1-4c6c-8a95-1f90e114f0c1" + "68073192-65d7-4a02-830c-7bec59f94598" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3392,16 +3392,16 @@ "11948" ], "x-ms-correlation-request-id": [ - "25d7f70c-ec23-43a6-83db-03323f5bf527" + "35b715d5-10b7-4426-84b0-0c413ac98d5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010629Z:25d7f70c-ec23-43a6-83db-03323f5bf527" + "WESTUS:20200224T065006Z:35b715d5-10b7-4426-84b0-0c413ac98d5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:06:29 GMT" + "Mon, 24 Feb 2020 06:50:05 GMT" ], "Expires": [ "-1" @@ -3414,16 +3414,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3434,7 +3434,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -3443,7 +3443,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72e9a136-d671-4217-ae19-7b9a892f1f37" + "46a73be3-66ee-4236-9a4a-5bb1b4fbe751" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3452,16 +3452,16 @@ "11947" ], "x-ms-correlation-request-id": [ - "63012a1e-0aba-478c-ad30-5f4ff6d77e57" + "472f26f0-d821-4eae-af20-15d37a9282de" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010729Z:63012a1e-0aba-478c-ad30-5f4ff6d77e57" + "WESTUS:20200224T065106Z:472f26f0-d821-4eae-af20-15d37a9282de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:07:29 GMT" + "Mon, 24 Feb 2020 06:51:06 GMT" ], "Expires": [ "-1" @@ -3474,16 +3474,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943/operationresults/cHM3OTQzX1VwZGF0ZV8zNzIwYTk5MA==?api-version=2019-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc5NDMvb3BlcmF0aW9ucmVzdWx0cy9jSE0zT1RRelgxVndaR0YwWlY4ek56SXdZVGs1TUE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627/operationresults/ZWFzdHVzOnBzMjYyN19VcGRhdGVfYzZhZDhmMDk=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHMyNjI3L29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6TWpZeU4xOVZjR1JoZEdWZll6WmhaRGhtTURrPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.12.0.0" ] }, "ResponseHeaders": { @@ -3497,7 +3497,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d9a2824-9cd3-4dbc-96cf-0a814942b083" + "2cd629b4-6bac-432a-898e-0b3088ce42a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3506,19 +3506,19 @@ "11946" ], "x-ms-correlation-request-id": [ - "ca0e5161-9c90-482c-b31f-52dee3554e3b" + "0da5b5e6-94f6-4d4b-a9f9-85d4b9a3cc3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010830Z:ca0e5161-9c90-482c-b31f-52dee3554e3b" + "WESTUS:20200224T065206Z:0da5b5e6-94f6-4d4b-a9f9-85d4b9a3cc3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:08:29 GMT" + "Mon, 24 Feb 2020 06:52:06 GMT" ], "Content-Length": [ - "2691" + "2738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3527,26 +3527,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2344/providers/Microsoft.ApiManagement/service/ps7943\",\r\n \"name\": \"ps7943\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAF/Y38=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-05-08T00:15:43.6931574Z\",\r\n \"gatewayUrl\": \"https://ps7943.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps7943-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps7943.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps7943.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps7943.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps7943.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.214.177\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.23.0.11\"\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"13.66.53.16\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.24.0.9\"\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://ps7943-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetncu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps94/providers/Microsoft.ApiManagement/service/ps2627\",\r\n \"name\": \"ps2627\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAACrhI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-24T05:59:44.5146486Z\",\r\n \"gatewayUrl\": \"https://ps2627.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2627-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2627.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2627.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2627.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2627.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2627.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.170.232.27\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.30.0.7\"\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"40.84.146.241\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.24.0.6\"\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://ps2627-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps2344?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMjM0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps94?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzOTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4feed02c-93cb-41fd-994f-b3ba0b1e7c87" + "d6bb98d4-5a8e-4903-9f44-68aac7ed2b10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3557,7 +3557,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3566,13 +3566,13 @@ "14999" ], "x-ms-request-id": [ - "62f8bc79-fad0-420e-89ba-2a96a03a9085" + "cd361d1f-5977-48b3-87df-78117e9ea184" ], "x-ms-correlation-request-id": [ - "62f8bc79-fad0-420e-89ba-2a96a03a9085" + "cd361d1f-5977-48b3-87df-78117e9ea184" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010832Z:62f8bc79-fad0-420e-89ba-2a96a03a9085" + "WESTUS:20200224T065210Z:cd361d1f-5977-48b3-87df-78117e9ea184" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3581,7 +3581,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:08:32 GMT" + "Mon, 24 Feb 2020 06:52:10 GMT" ], "Expires": [ "-1" @@ -3594,16 +3594,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3614,7 +3614,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3623,13 +3623,13 @@ "11999" ], "x-ms-request-id": [ - "2b2c36c8-b373-4881-b8c3-e5d50123a407" + "c9c202f8-2138-4578-af38-ee7b5cbdd4d7" ], "x-ms-correlation-request-id": [ - "2b2c36c8-b373-4881-b8c3-e5d50123a407" + "c9c202f8-2138-4578-af38-ee7b5cbdd4d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010848Z:2b2c36c8-b373-4881-b8c3-e5d50123a407" + "WESTUS:20200224T065225Z:c9c202f8-2138-4578-af38-ee7b5cbdd4d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3638,7 +3638,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:08:47 GMT" + "Mon, 24 Feb 2020 06:52:25 GMT" ], "Expires": [ "-1" @@ -3651,16 +3651,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3671,7 +3671,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3680,13 +3680,13 @@ "11998" ], "x-ms-request-id": [ - "ec038604-bb32-4d71-afc1-02dbb2e5932c" + "4c8025db-6f86-458d-b5ef-d2f435f16a14" ], "x-ms-correlation-request-id": [ - "ec038604-bb32-4d71-afc1-02dbb2e5932c" + "4c8025db-6f86-458d-b5ef-d2f435f16a14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010903Z:ec038604-bb32-4d71-afc1-02dbb2e5932c" + "WESTUS:20200224T065240Z:4c8025db-6f86-458d-b5ef-d2f435f16a14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3695,7 +3695,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:09:02 GMT" + "Mon, 24 Feb 2020 06:52:39 GMT" ], "Expires": [ "-1" @@ -3708,16 +3708,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3728,7 +3728,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3737,13 +3737,13 @@ "11997" ], "x-ms-request-id": [ - "40bc1c14-4dfc-4e44-a023-d5c77f92778a" + "d7e4ce03-0dc2-4180-9e47-8fb519584d6e" ], "x-ms-correlation-request-id": [ - "40bc1c14-4dfc-4e44-a023-d5c77f92778a" + "d7e4ce03-0dc2-4180-9e47-8fb519584d6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010918Z:40bc1c14-4dfc-4e44-a023-d5c77f92778a" + "WESTUS:20200224T065256Z:d7e4ce03-0dc2-4180-9e47-8fb519584d6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3752,7 +3752,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:09:17 GMT" + "Mon, 24 Feb 2020 06:52:55 GMT" ], "Expires": [ "-1" @@ -3765,16 +3765,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3785,7 +3785,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3794,13 +3794,13 @@ "11996" ], "x-ms-request-id": [ - "e18bc7c2-f73c-4457-a844-a84fbcbed88a" + "77aa76bf-485e-40b0-9b26-7f2588b2fa42" ], "x-ms-correlation-request-id": [ - "e18bc7c2-f73c-4457-a844-a84fbcbed88a" + "77aa76bf-485e-40b0-9b26-7f2588b2fa42" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010933Z:e18bc7c2-f73c-4457-a844-a84fbcbed88a" + "WESTUS:20200224T065311Z:77aa76bf-485e-40b0-9b26-7f2588b2fa42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3809,7 +3809,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:09:32 GMT" + "Mon, 24 Feb 2020 06:53:11 GMT" ], "Expires": [ "-1" @@ -3822,16 +3822,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3842,7 +3842,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3851,13 +3851,13 @@ "11995" ], "x-ms-request-id": [ - "102872c7-73ac-4370-b9a6-d168b3a8913e" + "0e33f9ae-5548-4e80-8b90-bb5836645127" ], "x-ms-correlation-request-id": [ - "102872c7-73ac-4370-b9a6-d168b3a8913e" + "0e33f9ae-5548-4e80-8b90-bb5836645127" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T010948Z:102872c7-73ac-4370-b9a6-d168b3a8913e" + "WESTUS:20200224T065326Z:0e33f9ae-5548-4e80-8b90-bb5836645127" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3866,7 +3866,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:09:48 GMT" + "Mon, 24 Feb 2020 06:53:26 GMT" ], "Expires": [ "-1" @@ -3879,16 +3879,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3899,7 +3899,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3908,13 +3908,13 @@ "11994" ], "x-ms-request-id": [ - "e706398e-09ac-4078-9fba-a8e44db8b9a1" + "5b2e7e89-e2bf-4b90-bf8b-0d58a66192cf" ], "x-ms-correlation-request-id": [ - "e706398e-09ac-4078-9fba-a8e44db8b9a1" + "5b2e7e89-e2bf-4b90-bf8b-0d58a66192cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011003Z:e706398e-09ac-4078-9fba-a8e44db8b9a1" + "WESTUS:20200224T065341Z:5b2e7e89-e2bf-4b90-bf8b-0d58a66192cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3923,7 +3923,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:10:03 GMT" + "Mon, 24 Feb 2020 06:53:41 GMT" ], "Expires": [ "-1" @@ -3936,16 +3936,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -3956,7 +3956,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3965,13 +3965,13 @@ "11993" ], "x-ms-request-id": [ - "4ca37218-38f8-43b8-986a-4012d15fbd0d" + "4184b2e6-1659-4229-a447-326934ac453f" ], "x-ms-correlation-request-id": [ - "4ca37218-38f8-43b8-986a-4012d15fbd0d" + "4184b2e6-1659-4229-a447-326934ac453f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011018Z:4ca37218-38f8-43b8-986a-4012d15fbd0d" + "WESTUS:20200224T065356Z:4184b2e6-1659-4229-a447-326934ac453f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3980,7 +3980,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:10:18 GMT" + "Mon, 24 Feb 2020 06:53:56 GMT" ], "Expires": [ "-1" @@ -3993,16 +3993,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4013,7 +4013,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4022,13 +4022,13 @@ "11992" ], "x-ms-request-id": [ - "940d13b5-0a39-41f7-b3b9-367e6f9e9598" + "74358e91-50d6-4644-a596-882acd7539b9" ], "x-ms-correlation-request-id": [ - "940d13b5-0a39-41f7-b3b9-367e6f9e9598" + "74358e91-50d6-4644-a596-882acd7539b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011033Z:940d13b5-0a39-41f7-b3b9-367e6f9e9598" + "WESTUS:20200224T065411Z:74358e91-50d6-4644-a596-882acd7539b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4037,7 +4037,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:10:33 GMT" + "Mon, 24 Feb 2020 06:54:11 GMT" ], "Expires": [ "-1" @@ -4050,16 +4050,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4070,7 +4070,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4079,13 +4079,13 @@ "11991" ], "x-ms-request-id": [ - "1152cadc-b8ba-4e44-b18f-0662f578c3d9" + "652f3377-a685-49c5-8bc1-ca5ca02b30c8" ], "x-ms-correlation-request-id": [ - "1152cadc-b8ba-4e44-b18f-0662f578c3d9" + "652f3377-a685-49c5-8bc1-ca5ca02b30c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011049Z:1152cadc-b8ba-4e44-b18f-0662f578c3d9" + "WESTUS:20200224T065427Z:652f3377-a685-49c5-8bc1-ca5ca02b30c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4094,7 +4094,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:10:49 GMT" + "Mon, 24 Feb 2020 06:54:26 GMT" ], "Expires": [ "-1" @@ -4107,16 +4107,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4127,7 +4127,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4136,13 +4136,13 @@ "11990" ], "x-ms-request-id": [ - "ed634a2e-02d2-407e-a2cb-f2bee7070739" + "2fd0ab15-9beb-4b71-b810-765dbc0cfd26" ], "x-ms-correlation-request-id": [ - "ed634a2e-02d2-407e-a2cb-f2bee7070739" + "2fd0ab15-9beb-4b71-b810-765dbc0cfd26" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011105Z:ed634a2e-02d2-407e-a2cb-f2bee7070739" + "WESTUS:20200224T065442Z:2fd0ab15-9beb-4b71-b810-765dbc0cfd26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4151,7 +4151,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:11:04 GMT" + "Mon, 24 Feb 2020 06:54:42 GMT" ], "Expires": [ "-1" @@ -4164,16 +4164,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4184,7 +4184,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4193,13 +4193,13 @@ "11989" ], "x-ms-request-id": [ - "7ff4f23d-2d0a-4bd1-827e-fbed9091f2bb" + "704f771a-f905-4ec6-aa9c-82e024b7e334" ], "x-ms-correlation-request-id": [ - "7ff4f23d-2d0a-4bd1-827e-fbed9091f2bb" + "704f771a-f905-4ec6-aa9c-82e024b7e334" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011120Z:7ff4f23d-2d0a-4bd1-827e-fbed9091f2bb" + "WESTUS:20200224T065457Z:704f771a-f905-4ec6-aa9c-82e024b7e334" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4208,7 +4208,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:11:19 GMT" + "Mon, 24 Feb 2020 06:54:57 GMT" ], "Expires": [ "-1" @@ -4221,16 +4221,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4241,7 +4241,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4250,13 +4250,13 @@ "11988" ], "x-ms-request-id": [ - "970887a0-e769-4f15-888d-1b60fd568166" + "00cc81be-315b-4966-8cb5-54120c94afe7" ], "x-ms-correlation-request-id": [ - "970887a0-e769-4f15-888d-1b60fd568166" + "00cc81be-315b-4966-8cb5-54120c94afe7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011135Z:970887a0-e769-4f15-888d-1b60fd568166" + "WESTUS:20200224T065513Z:00cc81be-315b-4966-8cb5-54120c94afe7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4265,7 +4265,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:11:34 GMT" + "Mon, 24 Feb 2020 06:55:12 GMT" ], "Expires": [ "-1" @@ -4278,16 +4278,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4298,7 +4298,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4307,13 +4307,13 @@ "11987" ], "x-ms-request-id": [ - "c36d5e0e-8946-45e8-9c4c-15606cba12d1" + "341a50b7-0e46-4609-8329-4b004ccd98fa" ], "x-ms-correlation-request-id": [ - "c36d5e0e-8946-45e8-9c4c-15606cba12d1" + "341a50b7-0e46-4609-8329-4b004ccd98fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011150Z:c36d5e0e-8946-45e8-9c4c-15606cba12d1" + "WESTUS:20200224T065528Z:341a50b7-0e46-4609-8329-4b004ccd98fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4322,7 +4322,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:11:50 GMT" + "Mon, 24 Feb 2020 06:55:27 GMT" ], "Expires": [ "-1" @@ -4335,16 +4335,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4354,17 +4354,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-request-id": [ - "db9ba9b7-11e4-4271-993a-35e67791506a" + "7ec4e714-691a-4fd6-8589-9c902f58e5f5" ], "x-ms-correlation-request-id": [ - "db9ba9b7-11e4-4271-993a-35e67791506a" + "7ec4e714-691a-4fd6-8589-9c902f58e5f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011205Z:db9ba9b7-11e4-4271-993a-35e67791506a" + "WESTUS:20200224T065543Z:7ec4e714-691a-4fd6-8589-9c902f58e5f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4373,7 +4379,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:12:05 GMT" + "Mon, 24 Feb 2020 06:55:42 GMT" ], "Expires": [ "-1" @@ -4383,19 +4389,19 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDQtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EUXRUazlTVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW01dmNuUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27129.04", + "FxVersion/4.6.28325.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.2.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" ] }, "ResponseHeaders": { @@ -4405,17 +4411,524 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-request-id": [ - "b1eaec91-9abb-4174-b9a9-552de836b6dc" + "7fd2340e-39eb-474a-851d-9bf05cde7d04" + ], + "x-ms-correlation-request-id": [ + "7fd2340e-39eb-474a-851d-9bf05cde7d04" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T065558Z:7fd2340e-39eb-474a-851d-9bf05cde7d04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 06:55:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "b66ddae8-0027-4d1b-b8a2-e3c3ad98459b" + ], + "x-ms-correlation-request-id": [ + "b66ddae8-0027-4d1b-b8a2-e3c3ad98459b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T065613Z:b66ddae8-0027-4d1b-b8a2-e3c3ad98459b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 06:56:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "91f2c617-a0c0-4b8e-ac60-0d6849d81801" + ], + "x-ms-correlation-request-id": [ + "91f2c617-a0c0-4b8e-ac60-0d6849d81801" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T065629Z:91f2c617-a0c0-4b8e-ac60-0d6849d81801" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 06:56:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "e98c4db0-7d62-480f-a605-e9fec43051ad" + ], + "x-ms-correlation-request-id": [ + "e98c4db0-7d62-480f-a605-e9fec43051ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T065644Z:e98c4db0-7d62-480f-a605-e9fec43051ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 06:56:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "6845eeab-6dd8-4040-bab2-f6db4d71cc68" + ], + "x-ms-correlation-request-id": [ + "6845eeab-6dd8-4040-bab2-f6db4d71cc68" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T065659Z:6845eeab-6dd8-4040-bab2-f6db4d71cc68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 06:56:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "9cb78d16-ef43-49f3-907e-e25d359e7151" + ], + "x-ms-correlation-request-id": [ + "9cb78d16-ef43-49f3-907e-e25d359e7151" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T065714Z:9cb78d16-ef43-49f3-907e-e25d359e7151" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 06:57:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "a55233ab-c96f-4c58-9b63-b434a6ea1e4d" + ], + "x-ms-correlation-request-id": [ + "a55233ab-c96f-4c58-9b63-b434a6ea1e4d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T065729Z:a55233ab-c96f-4c58-9b63-b434a6ea1e4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 06:57:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "07bcd9b7-257f-42c8-94df-99af31f5ba41" + ], + "x-ms-correlation-request-id": [ + "07bcd9b7-257f-42c8-94df-99af31f5ba41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T065744Z:07bcd9b7-257f-42c8-94df-99af31f5ba41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 06:57:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "60474e69-7177-4df9-a42c-cc933679e5f6" + ], + "x-ms-correlation-request-id": [ + "60474e69-7177-4df9-a42c-cc933679e5f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200224T065800Z:60474e69-7177-4df9-a42c-cc933679e5f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 24 Feb 2020 06:58:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "6141f142-3d34-41d9-9b66-2a7faad6efba" ], "x-ms-correlation-request-id": [ - "b1eaec91-9abb-4174-b9a9-552de836b6dc" + "6141f142-3d34-41d9-9b66-2a7faad6efba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190508T011205Z:b1eaec91-9abb-4174-b9a9-552de836b6dc" + "WESTUS:20200224T065800Z:6141f142-3d34-41d9-9b66-2a7faad6efba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4424,7 +4937,7 @@ "nosniff" ], "Date": [ - "Wed, 08 May 2019 01:12:05 GMT" + "Mon, 24 Feb 2020 06:58:00 GMT" ], "Expires": [ "-1" @@ -4439,8 +4952,8 @@ ], "Names": { "Test-ApiManagementVirtualNetworkCRUD": [ - "ps2344", - "ps7943" + "ps94", + "ps2627" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement/ApiManagement.csproj b/src/ApiManagement/ApiManagement/ApiManagement.csproj index 5770ca049352..affbb3fa5f26 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 1ab331406767..d2489a21cd53 100644 --- a/src/ApiManagement/ApiManagement/ChangeLog.md +++ b/src/ApiManagement/ApiManagement/ChangeLog.md @@ -18,6 +18,17 @@ - Additional information about change #1 --> ## Upcoming Release +* Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint + https://github.com/Azure/azure-powershell/issues/11007 + +* **Export-AzApiManagementApi** Added support for downloading Api Definition in Json format + https://github.com/Azure/azure-powershell/issues/9987 + +* **Import-AzApiManagementApi** Added support for importing OpenApi 3.0 definition from Json document + +* **New-AzApiManagementIdentityProvider** and **Set-AzApiManagementIdentityProvider** Added support for configuring `Signin Tenant` for AAD B2C Provider + https://github.com/Azure/azure-powershell/issues/9784 + ## Version 1.3.4 * **Get-AzApiManagementApiSchema** Fixed getting Open-Api Schema associated with an API diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs index e370900f4997..45eb62867987 100644 --- a/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs +++ b/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs @@ -45,6 +45,7 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource) Location = apiServiceResource.Location; Sku = ApiManagementClient.Mapper.Map(apiServiceResource.Sku.Name); Capacity = apiServiceResource.Sku.Capacity ?? 1; + CreatedTimeUtc = apiServiceResource.CreatedAtUtc; PublisherEmail = apiServiceResource.PublisherEmail; OrganizationName = apiServiceResource.PublisherName; NotificationSenderEmail = apiServiceResource.NotificationSenderEmail; @@ -52,6 +53,7 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource) RuntimeUrl = apiServiceResource.GatewayUrl; RuntimeRegionalUrl = apiServiceResource.GatewayRegionalUrl; PortalUrl = apiServiceResource.PortalUrl; + DeveloperPortalUrl = apiServiceResource.DeveloperPortalUrl; ManagementApiUrl = apiServiceResource.ManagementApiUrl; ScmUrl = apiServiceResource.ScmUrl; PublicIPAddresses = apiServiceResource.PublicIPAddresses != null ? apiServiceResource.PublicIPAddresses.ToArray() : null; @@ -105,6 +107,12 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource) { ScmCustomHostnameConfiguration = new PsApiManagementCustomHostNameConfiguration(scmHostnameResource); } + + var developerPortalResource = apiServiceResource.HostnameConfigurations.FirstOrDefault(conf => conf.Type == HostnameType.DeveloperPortal); + if (developerPortalResource != null) + { + DeveloperPortalHostnameConfiguration = new PsApiManagementCustomHostNameConfiguration(developerPortalResource); + } } if (apiServiceResource.Certificates != null && apiServiceResource.Certificates.Any()) @@ -148,6 +156,8 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource) public int Capacity { get; set; } + public DateTime? CreatedTimeUtc { get; set; } + public string ProvisioningState { get; private set; } public string RuntimeUrl { get; private set; } @@ -156,6 +166,8 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource) public string PortalUrl { get; private set; } + public string DeveloperPortalUrl { get; private set; } + public string ManagementApiUrl { get; private set; } public string ScmUrl { get; private set; } diff --git a/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md b/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md index 99ccb2cfb271..ec117d2121dd 100644 --- a/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md +++ b/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md @@ -37,7 +37,7 @@ This command adds two premium SKU units and the region named East US to the **Ps ```powershell PS C:\>$service = Get-AzApiManagement -ResourceGroupName "Contoso" -Name "ContosoApi" PS C:\>$service = Add-AzApiManagementRegion -ApiManagement $service -Location $secondarylocation -VirtualNetwork $additionalRegionVirtualNetwork -PS C:\>$service = Set-AzApiManagement -InputObject $service -PassThru +PS C:\>$service = Set-AzApiManagement -InputObject $service -PassThru ``` This command gets a **PsApiManagement** object, adds two premium SKU units for the region named East US, and then updates deployment. diff --git a/src/ApiManagement/ApiManagement/help/Export-AzApiManagementApi.md b/src/ApiManagement/ApiManagement/help/Export-AzApiManagementApi.md index 55451b177fe5..b0c64fea4245 100644 --- a/src/ApiManagement/ApiManagement/help/Export-AzApiManagementApi.md +++ b/src/ApiManagement/ApiManagement/help/Export-AzApiManagementApi.md @@ -40,6 +40,14 @@ PS C:\>Export-AzApiManagementApi -Context $ApiMgmtContext -ApiId "0123456789" -S This command exports an API to a WADL file. +### Example 2: Export an API in OpenApi 3.0 Specification Format as Json Document +```powershell +PS C:\>$ApiMgmtContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\> Export-AzApiManagementApi -Context $context -ApiId swagger-petstore -SpecificationFormat OpenApiJson -SaveAs D:\github\petstore.json +``` + +This command exports an API definitions in Open Api format as Json document + ## PARAMETERS ### -ApiId @@ -149,13 +157,13 @@ Accept wildcard characters: False ### -SpecificationFormat Specifies the API format. -psdx_paramvalues Wadl and Swagger. +psdx_paramvalues Wadl, Wsdl, Swagger, OpenApi and OpenApiJson ```yaml Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat Parameter Sets: (All) Aliases: -Accepted values: Wadl, Swagger, Wsdl, OpenApi +Accepted values: Wadl, Swagger, Wsdl, OpenApi, OpenApiJson Required: True Position: Named diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementIdentityProvider.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementIdentityProvider.md index 64fe0f5e3b60..eaf29844c873 100644 --- a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementIdentityProvider.md +++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementIdentityProvider.md @@ -31,17 +31,55 @@ Get the identity provider configuration details. ### Example 1: Get all Identity Providers -``` +```powershell PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" PS C:\>Get-AzApiManagementIdentityProvider -Context $apimContext ``` Get all the identity provider Configuration on the service. -### Get the AAD Type Identity Provider -``` +### Example 2: Get the AAD Type Identity Provider +```powershell PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" -PS C:\>Get-AzApiManagementIdentityProvider -Context $apimContext -Type Aad +PS C:\> Get-AzApiManagementIdentityProvider -Context $apimContext -Type Aad + + +Type : Aad +ClientId : aaa +ClientSecret : xxxxx +AllowedTenants : {contosotest.onmicrosoft.com} +Authority : login.microsoftonline.com +SignupPolicyName : +SigninPolicyName : +ProfileEditingPolicyName : +PasswordResetPolicyName : +SigninTenant : +Id : /subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/contoso/identityProviders/Aad +ResourceGroupName : Api-Default-West-US +ServiceName : contoso +``` + +Gets the Identity Provider Configuration of Azure Active Directory. + +### Example 3: Get the AAD B2C Type Identity Provider +```powershell +PS C:\>$context = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\> Get-AzApiManagementIdentityProvider -Context $context -Type AadB2C + + +Type : AadB2C +ClientId : f02dafe2-b8b8-48ec-a38e-27e5c16c51e5 +ClientSecret : xxxxxx +AllowedTenants : {contosoaadb2c.onmicrosoft.com} +Authority : login.microsoftonline.com +SignupPolicyName : B2C_1_policy-signup +SigninPolicyName : B2C_1_policy-signin +ProfileEditingPolicyName : +PasswordResetPolicyName : +SigninTenant : contosoaadb2c.onmicrosoft.com +Id : /subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/contoso/identityProviders/AadB2C +ResourceGroupName : Api-Default-West-US +ServiceName : contoso ``` Gets the Identity Provider Configuration of Azure Active Directory. diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementProperty.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementProperty.md index ead4f8cbe797..d3daaaa76c0d 100644 --- a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementProperty.md +++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementProperty.md @@ -48,6 +48,8 @@ PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default PS C:\>Get-AzApiManagementProperty -Context $apimContext -Name "sql-connectionstring" ``` +This command gets the property details given the property name. + ## PARAMETERS ### -Context diff --git a/src/ApiManagement/ApiManagement/help/Import-AzApiManagementApi.md b/src/ApiManagement/ApiManagement/help/Import-AzApiManagementApi.md index 2491ad1d1710..99dc72bf2028 100644 --- a/src/ApiManagement/ApiManagement/help/Import-AzApiManagementApi.md +++ b/src/ApiManagement/ApiManagement/help/Import-AzApiManagementApi.md @@ -296,7 +296,7 @@ psdx_paramvalues Wadl, Wsdl, and Swagger. Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat Parameter Sets: (All) Aliases: -Accepted values: Wadl, Swagger, Wsdl, OpenApi +Accepted values: Wadl, Swagger, Wsdl, OpenApi, OpenApiJson Required: True Position: Named diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md index e3541f230bde..2b15eaa8b620 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md @@ -32,7 +32,41 @@ The **New-AzApiManagement** cmdlet creates an API Management deployment in Azure ### Example 1: Create a Developer tier API Management service ```powershell -PS C:\>New-AzApiManagement -ResourceGroupName "ContosoGroup02" -Name "ContosoApi" -Location "Central US" -Organization "Contoso" -AdminEmail "admin@contoso.com" +PS D:\> New-AzApiManagement -ResourceGroupName "ContosoGroup02" -Name "ContosoApi2" -Location "Central US" -Organization "Contoso" -AdminEmail "admin@contoso.com" + + +PublicIPAddresses : {104.43.240.65} +PrivateIPAddresses : +Id : /subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ContosoGroup02/providers/Microsoft.ApiManagement/service/ContosoApi2 +Name : ContosoApi2 +Location : Central US +Sku : Developer +Capacity : 1 +CreatedTimeUtc : 2/24/2020 10:34:12 PM +ProvisioningState : Succeeded +RuntimeUrl : https://contosoapi2.azure-api.net +RuntimeRegionalUrl : https://contosoapi2-centralus-01.regional.azure-api.net +PortalUrl : https://contosoapi2.portal.azure-api.net +DeveloperPortalUrl : https://contosoapi2.developer.azure-api.net +ManagementApiUrl : https://contosoapi2.management.azure-api.net +ScmUrl : https://contosoapi2.scm.azure-api.net +PublisherEmail : admin@contoso.com +OrganizationName : Contoso +NotificationSenderEmail : apimgmt-noreply@mail.windowsazure.com +VirtualNetwork : +VpnType : None +PortalCustomHostnameConfiguration : +ProxyCustomHostnameConfiguration : {contosoapi2.azure-api.net} +ManagementCustomHostnameConfiguration : +ScmCustomHostnameConfiguration : +DeveloperPortalHostnameConfiguration : +SystemCertificates : +Tags : {} +AdditionalRegions : {} +SslSetting : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting +Identity : +EnableClientCertificate : +ResourceGroupName : ContosoGroup02 ``` This command creates a Developer tier API Management service. diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementIdentityProvider.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementIdentityProvider.md index 144f0b5b0d36..3cb7cd065671 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementIdentityProvider.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementIdentityProvider.md @@ -229,6 +229,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -SigninTenant +Signin Tenant to override in AAD B2C instead of the `common` Tenant + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementSslSetting.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementSslSetting.md index 386db7273473..b036490796d9 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementSslSetting.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementSslSetting.md @@ -40,6 +40,10 @@ Create an new instance of PsApiManagementSslSetting to Enable TLSv 1.0 in both F ### -BackendProtocol Backend Security protocol settings. This parameter is optional. +The valid Protocol Settings are +`Tls11` - Tls 1.1 +`Tls10` - Tls 1.0 +`Ssl30` - SSL 3.0 ```yaml Type: System.Collections.Hashtable @@ -55,6 +59,8 @@ Accept wildcard characters: False ### -CipherSuite Ssl cipher suites settings in the specified order. This parameter is optional. +The valid Settings are +`TripleDes168` - Enable / Disable Tripe Des 168 ```yaml Type: System.Collections.Hashtable @@ -85,6 +91,11 @@ Accept wildcard characters: False ### -FrontendProtocol Frontend Security protocols settings. This parameter is optional. +The valid Protocol Settings are +`Tls11` - Tls 1.1 +`Tls10` - Tls 1.0 +`Ssl30` - SSL 3.0 + ```yaml Type: System.Collections.Hashtable @@ -100,6 +111,8 @@ Accept wildcard characters: False ### -ServerProtocol Server protocol settings like Http2. This parameter is optional. +The valid Settings are +`Http2` - Enable Http 2.0 ```yaml Type: System.Collections.Hashtable diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApi.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApi.md index b23ae66391e4..16f27fb46904 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApi.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApi.md @@ -54,6 +54,7 @@ PS C:\>$api.ApiVersion = "v1" PS C:\>$api.ApiVersionSetDescription = $versionSet.Description PS C:\>Set-AzApiManagementApi -InputObject $api -PassThru ``` + This example adds an API to an existing API Version Set ### Example 3 Change the Backend ServiceUrl where the API is pointing to @@ -62,6 +63,7 @@ PS C:\>$ApiMgmtContext = New-AzApiManagementContext -ResourceGroupName "Api-Defa PS C:\>$updatedApiServiceUrl = "http://newechoapi.cloudapp.net/updateapi" PS C:\>$updatedApi = Set-AzApiManagementApi -Context $ApiMgmtContext -ApiId $echoApiId -ServiceUrl $updatedApiServiceUrl ``` + This example updates the ServiceUrl the `echo-api` is pointing to. ## PARAMETERS diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementIdentityProvider.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementIdentityProvider.md index 2d47d20e8f25..177cd432b525 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementIdentityProvider.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementIdentityProvider.md @@ -17,7 +17,7 @@ Updates the Configuration of an existing Identity Provider. Set-AzApiManagementIdentityProvider -Context -Type [-ClientId ] [-ClientSecret ] [-AllowedTenants ] [-Authority ] [-SignupPolicyName ] [-SigninPolicyName ] - [-ProfileEditingPolicyName ] [-PasswordResetPolicyName ] [-PassThru] + [-ProfileEditingPolicyName ] [-PasswordResetPolicyName ] [-SignInTenant ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -26,7 +26,7 @@ Set-AzApiManagementIdentityProvider -Context Set-AzApiManagementIdentityProvider -InputObject [-ClientId ] [-ClientSecret ] [-AllowedTenants ] [-Authority ] [-SignupPolicyName ] [-SigninPolicyName ] [-ProfileEditingPolicyName ] [-PasswordResetPolicyName ] - [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-SignInTenant ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -244,6 +244,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -SigninTenant +Signin Tenant to override in AAD B2C instead of the `common` Tenant + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet.