{ "swagger": "2.0", "info": { "description": "Software load balancer multiplexer operation endpoints and objects.", "title": "FabricAdminClient", "version": "2016-05-01" }, "host": "management.azure.com", "schemes": [ "https" ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "paths": { "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/slbMuxInstances/{slbMuxInstance}": { "get": { "x-ms-examples": { "Returns the requested software load balancer MUX Instance": { "$ref": "./examples/SlbMuxInstance/Get.json" } }, "tags": [ "SlbMuxInstances" ], "description": "Returns the requested software load balancer multiplexer instance.", "operationId": "SlbMuxInstances_Get", "parameters": [ { "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" }, { "$ref": "Fabric.json#/parameters/ResourceGroupParameter" }, { "$ref": "Fabric.json#/parameters/LocationParameter" }, { "$ref": "#/parameters/SLBMuxInstanceParameter" }, { "$ref": "Fabric.json#/parameters/ApiVersionParameter" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/SlbMuxInstance" } }, "404": { "description": "NOT FOUND" } } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/slbMuxInstances": { "get": { "x-ms-examples": { "Returns all software load balancer MUX Instances": { "$ref": "./examples/SlbMuxInstance/List.json" } }, "tags": [ "SlbMuxInstances" ], "description": "Returns a list of all software load balancer instances at a location.", "operationId": "SlbMuxInstances_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/SlbMuxInstanceList" } }, "404": { "description": "NOT FOUND" } }, "x-ms-pageable": { "nextLinkName": "nextLink" }, "x-ms-odata": "#/definitions/SlbMuxInstance" } } }, "definitions": { "SlbMuxInstance": { "description": "This resource represents an SLB MUX (software load balancing multiplexer, which distributes the tenant and tenant customer network traffic).", "type": "object", "properties": { "properties": { "description": "Properties of a SLB MUX.", "x-ms-client-flatten": true, "$ref": "#/definitions/SlbMuxInstanceModel" } }, "allOf": [ { "$ref": "Fabric.json#/definitions/Resource" } ] }, "SlbMuxInstanceModel": { "description": "Properties of a SLB MUX.", "type": "object", "properties": { "configurationState": { "description": "Configuration state.", "type": "string" }, "virtualServer": { "description": "Virtual server.", "type": "string" }, "bgpPeers": { "description": "List of BGP peers.", "type": "array", "items": { "type": "string" } } } }, "SlbMuxInstanceList": { "description": "A pageable list of SLB MUX instances.", "type": "object", "properties": { "value": { "description": "List of SLB MUX instances.", "type": "array", "items": { "$ref": "#/definitions/SlbMuxInstance" } }, "nextLink": { "description": "URI to the next page.", "type": "string" } } } }, "parameters": { "SLBMuxInstanceParameter": { "name": "slbMuxInstance", "description": "Name of a SLB MUX instance.", "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" ] } ] }