From 605032a86cf942954c794f1eed05ebe0004247f6 Mon Sep 17 00:00:00 2001 From: "Jeffrey A. Robinson" Date: Wed, 20 Sep 2017 15:33:58 -0700 Subject: [PATCH 1/2] IpPool creation should be long running operation --- .../fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json index 143b98ec967c..70f8e0c1684e 100644 --- a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json @@ -85,8 +85,15 @@ "schema": { "$ref": "#/definitions/IpPool" } + }, + "202": { + "description": "OK", + "schema": { + "$ref": "#/definitions/IpPool" + } } - } + }, + "x-ms-long-running-operation": true } }, "/subscriptions/{subscriptionId}/resourceGroups/System.{location}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/ipPools": { From 90614f169458fae29c401508befc7659c6d6c9b2 Mon Sep 17 00:00:00 2001 From: "Jeffrey A. Robinson" Date: Thu, 21 Sep 2017 11:28:38 -0700 Subject: [PATCH 2/2] Fixed return type of IpPool to correct type. --- .../fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json index 70f8e0c1684e..d765e6ac9a5d 100644 --- a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/2016-05-01/IpPool.json @@ -83,13 +83,13 @@ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/IpPool" + "$ref": "Operations.json#/definitions/OperationStatus" } }, "202": { "description": "OK", "schema": { - "$ref": "#/definitions/IpPool" + "$ref": "Operations.json#/definitions/OperationStatus" } } },