{ "swagger": "2.0", "info": { "version": "2015-05-01-preview", "title": "SqlManagementClient", "description": "The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities." }, "host": "management.azure.com", "schemes": [ "https" ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "paths": { "/providers/Microsoft.Sql/operations": { "get": { "tags": [ "Operations" ], "description": "Lists all of the available SQL Rest API operations.", "operationId": "Operations_List", "parameters": [ { "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { "200": { "description": "Successfully retrieved operations.", "schema": { "$ref": "#/definitions/OperationListResult" } }, "default": { "description": "*** Error Responses: ***" } }, "x-ms-pageable": { "nextLinkName": "nextLink" } } } }, "definitions": { "OperationListResult": { "description": "Result of the request to list SQL operations.", "type": "object", "properties": { "value": { "description": "Array of results.", "type": "array", "items": { "$ref": "#/definitions/Operation" }, "readOnly": true }, "nextLink": { "description": "Link to retrieve next page of results.", "type": "string", "readOnly": true } } }, "Operation": { "description": "SQL REST API operation definition.", "type": "object", "properties": { "name": { "description": "The name of the operation being performed on this particular object.", "type": "string", "readOnly": true }, "display": { "$ref": "#/definitions/OperationDisplay", "description": "The localized display information for this particular operation / action.", "readOnly": true }, "origin": { "description": "The intended executor of the operation.", "enum": [ "user", "system" ], "type": "string", "readOnly": true, "x-ms-enum": { "name": "OperationOrigin", "modelAsString": true } }, "properties": { "description": "Additional descriptions for the operation.", "type": "object", "additionalProperties": { "type": "object" }, "readOnly": true, "x-ms-client-flatten": false } } }, "OperationDisplay": { "description": "Display metadata associated with the operation.", "type": "object", "properties": { "provider": { "description": "The localized friendly form of the resource provider name.", "type": "string", "readOnly": true }, "resource": { "description": "The localized friendly form of the resource type related to this action/operation.", "type": "string", "readOnly": true }, "operation": { "description": "The localized friendly name for the operation.", "type": "string", "readOnly": true }, "description": { "description": "The localized friendly description for the operation.", "type": "string", "readOnly": true } } } }, "parameters": { "SubscriptionIdParameter": { "name": "subscriptionId", "in": "path", "description": "The subscription ID that identifies an Azure subscription.", "required": true, "type": "string", "x-ms-parameter-location": "client" }, "ApiVersionParameter": { "name": "api-version", "in": "query", "description": "The API version to use for the request.", "required": true, "type": "string", "x-ms-parameter-location": "client" }, "ResourceGroupParameter": { "name": "resourceGroupName", "in": "path", "description": "The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.", "required": true, "type": "string", "x-ms-parameter-location": "method" }, "ServerNameParameter": { "name": "serverName", "in": "path", "description": "The name of the server.", "required": true, "type": "string", "x-ms-parameter-location": "method" }, "DatabaseNameParameter": { "name": "databaseName", "in": "path", "description": "The name of the database.", "required": true, "type": "string", "x-ms-parameter-location": "method" }, "SqlVirtualMachineInstanceNameParameter": { "name": "sqlVirtualMachineInstanceName", "in": "path", "description": "The name of the SqlVirtualMachineInstance.", "required": true, "type": "string", "x-ms-parameter-location": "method" }, "SqlVirtualMachineContainerNameParameter": { "name": "sqlVirtualMachineContainerName", "in": "path", "description": "The name of the SqlVirtualMachineContainer.", "required": true, "type": "string", "x-ms-parameter-location": "method" } }, "securityDefinitions": { "azure_auth": { "type": "oauth2", "description": "Azure Active Directory OAuth2 Flow", "flow": "implicit", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", "scopes": { "user_impersonation": "impersonate your user account" } } } }