diff --git a/specification/sql/resource-manager/Microsoft.Sql/2015-05-01/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/2015-05-01/capabilities.json new file mode 100644 index 000000000000..5326358b5bbe --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/2015-05-01/capabilities.json @@ -0,0 +1,551 @@ +{ + "swagger": "2.0", + "info": { + "version": "2015-05-01", + "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": { + "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationName}/capabilities": { + "get": { + "tags": [ + "LocationCapabilities" + ], + "description": "Gets the subscription capabilities available for the specified location.", + "operationId": "Capabilities_ListByLocation", + "parameters": [ + { + "name": "locationName", + "in": "path", + "description": "The location name whose capabilities are retrieved.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved the subscription location capabilities.", + "schema": { + "$ref": "#/definitions/LocationCapabilities" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 InvalidLocation - An invalid location was specified.\n\n * 400 SubscriptionNotFound - The requested subscription was not found." + } + }, + "x-ms-examples": { + "List subscription capabilities in the given location.": { + "$ref": "./examples/LocationCapabilityListByLocation.json" + } + } + } + } + }, + "definitions": { + "LocationCapabilities": { + "description": "The location capability.", + "type": "object", + "properties": { + "name": { + "description": "The location name.", + "type": "string", + "readOnly": true + }, + "supportedServerVersions": { + "description": "The list of supported server versions.", + "type": "array", + "items": { + "$ref": "#/definitions/ServerVersionCapability" + }, + "readOnly": true + }, + "status": { + "description": "The status of the capability.", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CapabilityStatus", + "modelAsString": false + } + }, + "reason": { + "description": "The reason for the capability not being available.", + "type": "string" + } + } + }, + "ServerVersionCapability": { + "description": "The server capability", + "type": "object", + "properties": { + "name": { + "description": "The server version name.", + "type": "string", + "readOnly": true + }, + "supportedEditions": { + "description": "The list of supported database editions.", + "type": "array", + "items": { + "$ref": "#/definitions/EditionCapability" + }, + "readOnly": true + }, + "supportedElasticPoolEditions": { + "description": "The list of supported elastic pool editions.", + "type": "array", + "items": { + "$ref": "#/definitions/ElasticPoolEditionCapability" + }, + "readOnly": true + }, + "status": { + "description": "The status of the capability.", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CapabilityStatus", + "modelAsString": false + } + }, + "reason": { + "description": "The reason for the capability not being available.", + "type": "string" + } + } + }, + "EditionCapability": { + "description": "The edition capability.", + "type": "object", + "properties": { + "name": { + "description": "The database edition name.", + "type": "string", + "readOnly": true + }, + "supportedServiceLevelObjectives": { + "description": "The list of supported service objectives for the edition.", + "type": "array", + "items": { + "$ref": "#/definitions/ServiceLevelObjectiveCapability" + }, + "readOnly": true + }, + "status": { + "description": "The status of the capability.", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CapabilityStatus", + "modelAsString": false + } + }, + "reason": { + "description": "The reason for the capability not being available.", + "type": "string" + } + } + }, + "ElasticPoolEditionCapability": { + "description": "The elastic pool edition capability.", + "type": "object", + "properties": { + "name": { + "description": "The elastic pool edition name.", + "type": "string", + "readOnly": true + }, + "supportedElasticPoolDtus": { + "description": "The list of supported elastic pool DTU levels for the edition.", + "type": "array", + "items": { + "$ref": "#/definitions/ElasticPoolDtuCapability" + }, + "readOnly": true + }, + "status": { + "description": "The status of the capability.", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CapabilityStatus", + "modelAsString": false + } + }, + "reason": { + "description": "The reason for the capability not being available.", + "type": "string" + } + } + }, + "ServiceLevelObjectiveCapability": { + "description": "The service objectives capability.", + "type": "object", + "properties": { + "id": { + "format": "uuid", + "description": "The unique ID of the service objective.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "The service objective name.", + "type": "string", + "readOnly": true + }, + "supportedMaxSizes": { + "description": "The list of supported maximum database sizes for this service objective.", + "type": "array", + "items": { + "$ref": "#/definitions/MaxSizeCapability" + }, + "readOnly": true + }, + "performanceLevel": { + "$ref": "#/definitions/PerformanceLevelCapability", + "description": "The performance level of the service objective capability.", + "readOnly": true + }, + "includedMaxSize": { + "$ref": "#/definitions/MaxSizeCapability", + "description": "The included (free) max size for this service level objective.", + "readOnly": true + }, + "status": { + "description": "The status of the capability.", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CapabilityStatus", + "modelAsString": false + } + }, + "reason": { + "description": "The reason for the capability not being available.", + "type": "string" + } + } + }, + "ElasticPoolDtuCapability": { + "description": "The Elastic Pool DTU capability.", + "type": "object", + "properties": { + "limit": { + "format": "int32", + "description": "The DTU limit for the pool.", + "type": "integer", + "readOnly": true + }, + "maxDatabaseCount": { + "format": "int32", + "description": "The maximum number of databases supported.", + "type": "integer", + "readOnly": true + }, + "includedMaxSize": { + "$ref": "#/definitions/MaxSizeCapability", + "description": "The included (free) max size for this DTU.", + "readOnly": true + }, + "supportedMaxSizes": { + "description": "The list of supported max sizes.", + "type": "array", + "items": { + "$ref": "#/definitions/MaxSizeCapability" + }, + "readOnly": true + }, + "supportedPerDatabaseMaxSizes": { + "description": "The list of supported per database max sizes.", + "type": "array", + "items": { + "$ref": "#/definitions/MaxSizeCapability" + }, + "readOnly": true + }, + "supportedPerDatabaseMaxDtus": { + "description": "The list of supported per database max DTUs.", + "type": "array", + "items": { + "$ref": "#/definitions/ElasticPoolPerDatabaseMaxDtuCapability" + }, + "readOnly": true + }, + "status": { + "description": "The status of the capability.", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CapabilityStatus", + "modelAsString": false + } + }, + "reason": { + "description": "The reason for the capability not being available.", + "type": "string" + } + } + }, + "MaxSizeCapability": { + "description": "The maximum size capability.", + "type": "object", + "properties": { + "limit": { + "format": "int32", + "description": "The maximum size limit (see 'unit' for the units).", + "type": "integer", + "readOnly": true + }, + "unit": { + "description": "The units that the limit is expressed in.", + "enum": [ + "Megabytes", + "Gigabytes", + "Terabytes", + "Petabytes" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "MaxSizeUnits", + "modelAsString": false + } + }, + "status": { + "description": "The status of the capability.", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CapabilityStatus", + "modelAsString": false + } + }, + "reason": { + "description": "The reason for the capability not being available.", + "type": "string" + } + } + }, + "PerformanceLevelCapability": { + "description": "The performance level capability.", + "type": "object", + "properties": { + "value": { + "format": "int32", + "description": "Performance level value.", + "type": "integer", + "readOnly": true + }, + "unit": { + "description": "Unit type used to measure service objective performance level.", + "enum": [ + "DTU" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "PerformanceLevelUnit", + "modelAsString": false + } + } + } + }, + "ElasticPoolPerDatabaseMaxDtuCapability": { + "description": "The max per-database DTU capability.", + "type": "object", + "properties": { + "limit": { + "format": "int32", + "description": "The maximum DTUs per database.", + "type": "integer", + "readOnly": true + }, + "supportedPerDatabaseMinDtus": { + "description": "The list of supported min database DTUs.", + "type": "array", + "items": { + "$ref": "#/definitions/ElasticPoolPerDatabaseMinDtuCapability" + }, + "readOnly": true + }, + "status": { + "description": "The status of the capability.", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CapabilityStatus", + "modelAsString": false + } + }, + "reason": { + "description": "The reason for the capability not being available.", + "type": "string" + } + } + }, + "ElasticPoolPerDatabaseMinDtuCapability": { + "description": "The minimum per-database DTU capability.", + "type": "object", + "properties": { + "limit": { + "format": "int32", + "description": "The minimum DTUs per database.", + "type": "integer", + "readOnly": true + }, + "status": { + "description": "The status of the capability.", + "enum": [ + "Visible", + "Available", + "Default", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CapabilityStatus", + "modelAsString": false + } + }, + "reason": { + "description": "The reason for the capability not being available.", + "type": "string" + } + } + } + }, + "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" + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/2015-05-01/examples/LocationCapabilityListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/2015-05-01/examples/LocationCapabilityListByLocation.json new file mode 100644 index 000000000000..b6a941e0310c --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/2015-05-01/examples/LocationCapabilityListByLocation.json @@ -0,0 +1,17725 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "eastus2euap", + "api-version": "2015-05-01" + }, + "responses": { + "200": { + "body": { + "name": "East US 2 EUAP", + "status": "Available", + "supportedServerVersions": [ + { + "name": "12.0", + "supportedEditions": [ + { + "name": "System", + "supportedServiceLevelObjectives": [ + { + "id": "26e021db-f1f9-4c98-84c6-92af8ef433d7", + "name": "System", + "supportedMaxSizes": [ + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "performanceLevel": { + "value": 0, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 30720, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "id": "29dd7459-4a7c-4e56-be22-f0adda49440d", + "name": "System0", + "supportedMaxSizes": [ + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "performanceLevel": { + "value": 0, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 30720, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "id": "c99ac918-dbea-463f-a475-16ec020fdc12", + "name": "System1", + "supportedMaxSizes": [ + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "performanceLevel": { + "value": 0, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 30720, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "id": "620323bf-2879-4807-b30d-c2e6d7b3b3aa", + "name": "System2", + "supportedMaxSizes": [ + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "performanceLevel": { + "value": 0, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 30720, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "id": "33d0db1f-6893-4210-99f9-463fb9b496a4", + "name": "System3", + "supportedMaxSizes": [ + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "performanceLevel": { + "value": 0, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 30720, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "id": "da24338c-a6c9-46c2-a4bf-4ac95b496ae4", + "name": "System4", + "supportedMaxSizes": [ + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "performanceLevel": { + "value": 0, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 30720, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "id": "53f7fa1b-b0d0-43d6-bc29-c5f059fb36e9", + "name": "System2L", + "supportedMaxSizes": [ + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "performanceLevel": { + "value": 0, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 30720, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "id": "e79cd55c-689f-48d9-bffa-0dd12c772248", + "name": "System3L", + "supportedMaxSizes": [ + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "performanceLevel": { + "value": 0, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 30720, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "id": "4b37bb6d-e004-47ac-8f7a-be56ac9fb490", + "name": "System4L", + "supportedMaxSizes": [ + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "performanceLevel": { + "value": 0, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 30720, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + } + ], + "status": "Visible", + "reason": "'System' is not a valid database edition in this version of SQL Server." + }, + { + "name": "Free", + "supportedServiceLevelObjectives": [ + { + "id": "6aa3bb3e-7f50-40d6-95ef-5497c30d99d8", + "name": "Free", + "supportedMaxSizes": [ + { + "limit": 32, + "unit": "Megabytes", + "status": "Default" + } + ], + "performanceLevel": { + "value": 5, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 32, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Default" + } + ], + "status": "Available" + }, + { + "name": "Basic", + "supportedServiceLevelObjectives": [ + { + "id": "dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", + "name": "Basic", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Default" + } + ], + "performanceLevel": { + "value": 5, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 2048, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Default" + } + ], + "status": "Available" + }, + { + "name": "Standard", + "supportedServiceLevelObjectives": [ + { + "id": "f1173c43-91bd-4aaa-973c-54e79e15235b", + "name": "S0", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Default" + } + ], + "performanceLevel": { + "value": 10, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Default" + }, + { + "id": "1b1ebd4d-d903-4baa-97f9-4ea675f5e928", + "name": "S1", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Default" + } + ], + "performanceLevel": { + "value": 20, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Available" + }, + { + "id": "455330e1-00cd-488b-b5fa-177c226f28b7", + "name": "S2", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Default" + } + ], + "performanceLevel": { + "value": 50, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Available" + }, + { + "id": "789681b8-ca10-4eb0-bdf2-e0b050601b40", + "name": "S3", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Default" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Available" + } + ], + "performanceLevel": { + "value": 100, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Available" + }, + { + "id": "3cf14e1a-0a5d-408c-bbc7-f63c5282f735", + "name": "S4", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 200, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "ab69b4e3-d7cc-4aa5-87a6-f8b50615a03c", + "name": "S6", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 400, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "b6ca0894-d2f0-4e40-99f5-0f8a93cc2437", + "name": "S7", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 800, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "0efa88e9-99ff-4e36-a148-8c4b20c0826c", + "name": "S9", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 1600, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "98100e8b-2f8a-4a81-9eb5-4d1e675c5a29", + "name": "S12", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 3000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Default" + }, + { + "name": "Premium", + "supportedServiceLevelObjectives": [ + { + "id": "7203483a-c4fb-4304-9e9f-17c71c904f5d", + "name": "P1", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 125, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0", + "name": "P2", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 250, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc", + "name": "P4", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "43940481-9191-475a-9dba-6b505615b9aa", + "name": "P6", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 1000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "dd00d544-bbc0-4f61-ba60-cdce0c410288", + "name": "P11", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 1750, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "5bc86cca-9a96-4a94-90ef-bbdfcfbf2d71", + "name": "P15", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 4000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "name": "PremiumRS", + "supportedServiceLevelObjectives": [ + { + "id": "dfdc102c-ed02-4349-9756-e227f0e43bb8", + "name": "PRS1", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 125, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "a089506e-b47a-4f42-8a32-cc19af4c86fb", + "name": "PRS2", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 250, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "39cb8faf-cba8-4b1b-b580-1e1202f2a024", + "name": "PRS4", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "1e8da92e-efcd-4682-9140-bf6582120d1f", + "name": "PRS6", + "supportedMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 1000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "name": "DataWarehouse", + "supportedServiceLevelObjectives": [ + { + "id": "4e63cb0e-91b9-46fd-b05c-51fdd2367618", + "name": "DW100", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Default" + } + ], + "performanceLevel": { + "value": 750, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Default" + }, + { + "id": "99e78a92-d724-4e1b-857b-2be661f3d153", + "name": "DW200", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Default" + } + ], + "performanceLevel": { + "value": 1500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Available" + }, + { + "id": "284f1aff-fee7-4d3b-a211-5b8ebdd28fea", + "name": "DW300", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Default" + } + ], + "performanceLevel": { + "value": 2250, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Available" + }, + { + "id": "3bdaeefe-8a9d-41d3-91c4-46ef896b19af", + "name": "DW400", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Default" + } + ], + "performanceLevel": { + "value": 3000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Available" + }, + { + "id": "5f759b78-8ec0-4dfb-97cc-c1455a3b5b4d", + "name": "DW500", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 3750, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "efd65c5b-af7b-4389-9109-f6a69d6a3885", + "name": "DW600", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 4500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "b89b9c6a-4ec2-4eb8-99db-6d2807e6aabb", + "name": "DW1000", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 7500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "9a7a374e-b95c-4fd5-a68e-131d60796c47", + "name": "DW1200", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 9000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "b930f58e-86b5-43e0-a2da-d8bf8769c557", + "name": "DW1500", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 11250, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "99165ede-a5ab-4b52-b317-e391d92ec370", + "name": "DW2000", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 15000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "8e28c923-5cf2-43cb-bd25-28c8c69b30ff", + "name": "DW3000", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 22500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "87835a29-f934-4b57-b40a-4224aec6f207", + "name": "DW9000", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 22500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "ee1df062-4f3c-42ad-91bf-58b2a7c351e4", + "name": "DW6000", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 45000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "20a07e2c-fd93-4c65-886e-c9bb9f6df331", + "name": "DW18000", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 45000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Available" + }, + { + "name": "Stretch", + "supportedServiceLevelObjectives": [ + { + "id": "9cfc850f-d57f-4760-b5a6-bb640d268bf0", + "name": "DS100", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 750, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "053407ef-f01c-46f4-b829-96e01a14f449", + "name": "DS200", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 1500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "013a9e10-cafc-45a8-8fcf-93095655d2ce", + "name": "DS300", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 2250, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "79f61db4-8c10-46ba-a93a-d7d02dddd61c", + "name": "DS400", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 3000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "44eaac33-df00-4ef4-a2bb-f7ff87899eea", + "name": "DS500", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 3750, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "f8e0f3a6-888b-459c-a9dd-d74d8b2b0e72", + "name": "DS600", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 4500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "b9ed8f51-a414-42dc-8348-e4a1de25e12b", + "name": "DS1000", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 7500, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "07479569-6d70-47a5-8db6-0af55d34f2c1", + "name": "DS1200", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 9000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "2d79baec-2879-46d5-9f5d-fb70eb004c4e", + "name": "DS1500", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 11250, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "id": "7fb5389f-6d15-4e0b-9540-fe5ecdfdbeee", + "name": "DS2000", + "supportedMaxSizes": [ + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5120, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10240, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20480, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30720, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40960, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 51200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 61440, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 71680, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 81920, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 92160, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 245760, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "performanceLevel": { + "value": 15000, + "unit": "DTU" + }, + "includedMaxSize": { + "limit": 251658240, + "unit": "Megabytes", + "status": "Available" + }, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedElasticPoolEditions": [ + { + "name": "Standard", + "supportedElasticPoolDtus": [ + { + "limit": 50, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 51200, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Default" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Default" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Available" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Default" + }, + { + "limit": 10, + "status": "Available" + } + ], + "status": "Available" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Default" + }, + { + "limit": 10, + "status": "Available" + }, + { + "limit": 20, + "status": "Available" + } + ], + "status": "Available" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Default" + }, + { + "limit": 10, + "status": "Available" + }, + { + "limit": 20, + "status": "Available" + }, + { + "limit": 50, + "status": "Available" + } + ], + "status": "Default" + } + ], + "status": "Available" + }, + { + "limit": 100, + "maxDatabaseCount": 200, + "includedMaxSize": { + "limit": 102400, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Default" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Available" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Default" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Available" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Default" + }, + { + "limit": 10, + "status": "Available" + } + ], + "status": "Available" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Default" + }, + { + "limit": 10, + "status": "Available" + }, + { + "limit": 20, + "status": "Available" + } + ], + "status": "Available" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Default" + }, + { + "limit": 10, + "status": "Available" + }, + { + "limit": 20, + "status": "Available" + }, + { + "limit": 50, + "status": "Available" + } + ], + "status": "Available" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Default" + }, + { + "limit": 10, + "status": "Available" + }, + { + "limit": 20, + "status": "Available" + }, + { + "limit": 50, + "status": "Available" + }, + { + "limit": 100, + "status": "Available" + } + ], + "status": "Default" + } + ], + "status": "Default" + }, + { + "limit": 200, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 204800, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 307200, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1228800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1310720, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 409600, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1228800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1310720, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1572864, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 819200, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1228800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1310720, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1572864, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1638400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1835008, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2048000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2097152, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 1228800, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1228800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1310720, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1572864, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1638400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1835008, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2048000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2097152, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2359296, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2560000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2621440, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 1638400, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1228800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1310720, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1572864, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1638400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1835008, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2048000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2097152, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2359296, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2560000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2621440, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2883584, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3072000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3145728, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 2048000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1228800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1310720, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1572864, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1638400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1835008, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2048000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2097152, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2359296, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2560000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2621440, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2883584, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3072000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3145728, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3407872, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3670016, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2500, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 2560000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1228800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1310720, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1572864, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1638400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1835008, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2048000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2097152, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2359296, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2560000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2621440, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2883584, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3072000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3145728, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3407872, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3670016, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3932160, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 4194304, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3000, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 3072000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1228800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1310720, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1572864, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1638400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1835008, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2048000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2097152, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2359296, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2560000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2621440, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2883584, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3072000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3145728, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3407872, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3670016, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3932160, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 4194304, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 10, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Default" + }, + { + "name": "Premium", + "supportedElasticPoolDtus": [ + { + "limit": 125, + "maxDatabaseCount": 50, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 768000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1500, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2000, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2500, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3000, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 3500, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 4000, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 4000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1750, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 4000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "name": "Basic", + "supportedElasticPoolDtus": [ + { + "limit": 50, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 5000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 5000, + "unit": "Megabytes", + "status": "Default" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Default" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 5, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Default" + }, + { + "limit": 5, + "status": "Available" + } + ], + "status": "Default" + } + ], + "status": "Default" + }, + { + "limit": 100, + "maxDatabaseCount": 200, + "includedMaxSize": { + "limit": 10000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 10000, + "unit": "Megabytes", + "status": "Default" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Available" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Available" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Default" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 5, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Default" + }, + { + "limit": 5, + "status": "Available" + } + ], + "status": "Default" + } + ], + "status": "Available" + }, + { + "limit": 200, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 20000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 20000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 5, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 30000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 30000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 5, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 40000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 40000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 5, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 800, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 80000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 80000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 5, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1200, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 120000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 120000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 5, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1600, + "maxDatabaseCount": 500, + "includedMaxSize": { + "limit": 160000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 160000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 5, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Available" + }, + { + "name": "PremiumRS", + "supportedElasticPoolDtus": [ + { + "limit": 125, + "maxDatabaseCount": 50, + "includedMaxSize": { + "limit": 256000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 512000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 768000, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "maxDatabaseCount": 100, + "includedMaxSize": { + "limit": 1048576, + "unit": "Megabytes", + "status": "Available" + }, + "supportedMaxSizes": [ + { + "limit": 51200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 102400, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 153600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 204800, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 256000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 307200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 409600, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 512000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 768000, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 819200, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1048576, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxSizes": [ + { + "limit": 100, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Megabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 2, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 5, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 10, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 20, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 30, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 40, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 100, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 150, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 200, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 300, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 400, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 750, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1024, + "unit": "Gigabytes", + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "supportedPerDatabaseMaxDtus": [ + { + "limit": 25, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "supportedPerDatabaseMinDtus": [ + { + "limit": 0, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 25, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 50, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 75, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 125, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 250, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 500, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + }, + { + "limit": 1000, + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Visible", + "reason": "Free Trial subscriptions can provision Basic, Standard S0 through S3 databases, up to 100 eDTU Basic or Standard elastic pools and DW100 through DW400 data warehouses" + } + ], + "status": "Default" + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/readme.md b/specification/sql/resource-manager/readme.md index defba3c63393..b94c2cd53ed2 100644 --- a/specification/sql/resource-manager/readme.md +++ b/specification/sql/resource-manager/readme.md @@ -41,7 +41,6 @@ input-file: - Microsoft.Sql/2014-04-01/backupLongTermRetentionPolicies.json - Microsoft.Sql/2014-04-01/backupLongTermRetentionVaults.json - Microsoft.Sql/2014-04-01/backups.json -- Microsoft.Sql/2014-04-01/capabilities.json - Microsoft.Sql/2014-04-01/connectionPolicies.json - Microsoft.Sql/2014-04-01/databaseSecurityAlertPolicies.json - Microsoft.Sql/2014-04-01/dataMasking.json @@ -56,6 +55,7 @@ input-file: - Microsoft.Sql/2014-04-01/sql.core.json - Microsoft.Sql/2014-04-01/usages.json - Microsoft.Sql/2015-05-01-preview/blobAuditingPolicies.json +- Microsoft.Sql/2015-05-01/capabilities.json - Microsoft.Sql/2015-05-01-preview/encryptionProtectors.json - Microsoft.Sql/2015-05-01-preview/failoverGroups.json - Microsoft.Sql/2015-05-01-preview/operations.json