{ "swagger": "2.0", "info": { "description": "Edge gateway pool operation endpoints and objects.", "title": "FabricAdminClient", "version": "2016-05-01" }, "host": "management.azure.com", "schemes": [ "https" ], "produces": [ "application/json" ], "consumes": [ "application/json" ], "paths": { "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/edgeGatewayPools/{edgeGatewayPool}": { "get": { "x-ms-examples": { "Returns the requested edge gateway pool object.": { "$ref": "./examples/EdgeGatewayPool/Get.json" } }, "tags": [ "EdgeGatewayPools" ], "description": "Returns the requested edge gateway pool object.", "operationId": "EdgeGatewayPools_Get", "parameters": [ { "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" }, { "$ref": "Fabric.json#/parameters/ResourceGroupParameter" }, { "$ref": "Fabric.json#/parameters/LocationParameter" }, { "$ref": "#/parameters/EdgeGatewayPoolParameter" }, { "$ref": "Fabric.json#/parameters/ApiVersionParameter" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/EdgeGatewayPool" } }, "404": { "description": "NOT FOUND" } } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/edgeGatewayPools": { "get": { "x-ms-examples": { "Returns a list of all edge gateway pool objects at a location.": { "$ref": "./examples/EdgeGatewayPool/List.json" } }, "tags": [ "EdgeGatewayPools" ], "description": "Returns a list of all edge gateway pool objects at a location.", "operationId": "EdgeGatewayPools_List", "parameters": [ { "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" }, { "$ref": "Fabric.json#/parameters/ResourceGroupParameter" }, { "$ref": "Fabric.json#/parameters/LocationParameter" }, { "$ref": "Fabric.json#/parameters/ApiVersionParameter" }, { "$ref": "Fabric.json#/parameters/FilterParameter" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/EdgeGatewayPoolList" } }, "404": { "description": "NOT FOUND" } }, "x-ms-pageable": { "nextLinkName": "nextLink" }, "x-ms-odata": "#/definitions/EdgeGatewayPool" } } }, "definitions": { "EdgeGatewayPool": { "description": "This object represents an edge gateway pool, which contains a list of gateways.", "type": "object", "properties": { "properties": { "description": "The properties of an edge gateway pool.", "x-ms-client-flatten": true, "$ref": "#/definitions/EdgeGatewayPoolModel" } }, "allOf": [ { "$ref": "Fabric.json#/definitions/Resource" } ] }, "EdgeGatewayPoolModel": { "description": "An object that contains the properties of an edge gateway pool.", "type": "object", "properties": { "gatewayType": { "description": "The gateway type, for example, S2sIPsec, S2sGre, and so on.", "type": "string" }, "numberOfGateways": { "description": "The number of gateways in the pool.", "format": "int32", "type": "integer" }, "redundantGatewayCount": { "description": "The number of redundant gateways.", "format": "int64", "type": "integer" }, "gatewayCapacityKiloBitsPerSecond": { "description": "Gateway capacity in kilobits per second.", "format": "int32", "type": "integer" }, "publicIpAddress": { "description": "The public IP address.", "type": "string" }, "greVipSubnet": { "description": "The GRE VIP subnet.", "type": "string" }, "edgeGateways": { "description": "List of the edge gateways in the pool.", "type": "array", "items": { "type": "string" } } } }, "EdgeGatewayPoolList": { "description": "A pageable list of edge gateway pools objects.", "type": "object", "properties": { "value": { "description": "List of edge gateway pool objects.", "type": "array", "items": { "$ref": "#/definitions/EdgeGatewayPool" } }, "nextLink": { "description": "The URI to the next page.", "type": "string" } } } }, "parameters": { "EdgeGatewayPoolParameter": { "name": "edgeGatewayPool", "description": "Name of the edge gateway pool.", "in": "path", "required": true, "type": "string", "x-ms-parameter-location": "method" } }, "securityDefinitions": { "azure_auth": { "type": "oauth2", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", "flow": "implicit", "description": "Authorization uses an Azure Active Directory OAuth2 flow.", "scopes": { "user_impersonation": "impersonate your user account" } } }, "security": [ { "azure_auth": [ "user_impersonation" ] } ] }