From 7cc3ba1e3ddd49f0ca11e0ff2ced14b38dc72ed4 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 11 Aug 2020 16:13:52 -0700 Subject: [PATCH 01/43] Add 2020-02-02-preview related to new ImportExport API --- .../preview/2020-02-02-preview/databases.json | 1555 +++++++++++++++++ .../examples/ExportDatabase.json | 37 + .../ExportDatabaseWithNetworkIsolation.json | 41 + .../examples/ImportDatabase.json | 37 + .../ImportDatabaseWithNetworkIsolation.json | 41 + .../examples/ImportNewDatabase.json | 37 + ...ImportNewDatabaseWithNetworkIsolation.json | 41 + .../preview/2020-02-02-preview/servers.json | 1093 ++++++++++++ 8 files changed, 2882 insertions(+) create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json new file mode 100644 index 000000000000..32f16b5bed51 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json @@ -0,0 +1,1555 @@ +{ + "swagger": "2.0", + "info": { + "version": "2020-02-02-preview", + "title": "SqlManagementClient", + "description": "The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities." + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases": { + "get": { + "tags": [ + "Databases" + ], + "description": "Gets a list of databases.", + "operationId": "Databases_ListByServer", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved the list of databases.", + "schema": { + "$ref": "#/definitions/DatabaseListResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription." + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Gets a list of databases.": { + "$ref": "./examples/ListVCoreDatabasesByServer.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}": { + "get": { + "tags": [ + "Databases" + ], + "description": "Gets a database.", + "operationId": "Databases_Get", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved the specified database.", + "schema": { + "$ref": "#/definitions/Database" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ResourceNotFound - The requested resource was not found." + } + }, + "x-ms-examples": { + "Gets a database.": { + "$ref": "./examples/GetVCoreDatabase.json" + } + } + }, + "put": { + "tags": [ + "Databases" + ], + "description": "Creates a new database or updates an existing database.", + "operationId": "Databases_CreateOrUpdate", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The requested database resource state.", + "required": true, + "schema": { + "$ref": "#/definitions/Database" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully updated the database.", + "schema": { + "$ref": "#/definitions/Database" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 InvalidDatabaseCreateOrUpdateRequest - The request body for the create or update database operation is invalid.\n\n * 400 InvalidResourceId - Invalid resource identifier.\n\n * 400 InvalidSourceDatabaseId - Invalid source database identifier.\n\n * 400 MismatchingResourceGroupNameWithUrl - The provided resource group name did not match the name in the Url.\n\n * 400 MismatchingServerNameWithUrl - The provided server name did not match the name in the Url.\n\n * 400 MismatchingSubscriptionWithUrl - The provided subscription did not match the subscription in the Url.\n\n * 400 MissingCollation - Collation is required.\n\n * 400 MissingMaxSizeBytes - MaxSizeBytes is required.\n\n * 400 MissingSkuName - Sku name is required.\n\n * 400 MissingSourceDatabaseId - Missing source database identifier.\n\n * 400 InvalidLicenseType - The specified license type is invalid.\n\n * 400 InvalidSkuName - Invalid SKU name.\n\n * 400 MismatchedSkuNameAndCapacity - Mismatch between SKU name and capacity.\n\n * 400 MismatchedSkuNameAndTier - Mismatch between SKU name and tier.\n\n * 400 MismatchedSkuNameAndFamily - Mismatch between SKU name and family.\n\n * 400 DatabaseNameDoesNotMatchSourceDatabaseId - The database name specified doesn’t match the database name in sourceDatabaseId.\n\n * 400 ElasticPoolNotSupportedForExternalBackupRestore - Elastic pool is not supported for external backup restore\n\n * 400 InvalidRecoverableDatabaseId - Invalid recoverable database identifier.\n\n * 400 InvalidRecoveryServicesRecoveryPointId - Invalid recovery services recovery point identifier.\n\n * 400 InvalidRestorableDroppedDatabaseDeletionDate - The restorable dropped database deletion date given is invalid\n\n * 400 InvalidRestorableDroppedDatabaseId - Invalid restorable dropped database identifier\n\n * 400 MissingRecoverableDatabaseId - Missing recoverable database identifier.\n\n * 400 MissingRecoveryServicesRecoveryPointId - Missing recovery services recovery point Id.\n\n * 400 MissingRestorableDroppedDatabaseId - Missing restorableDroppedDatabaseId\n\n * 400 MissingRestorePointInTime - Missing restore point in time\n\n * 400 MissingSourceDatabaseDeletionDate - Missing source database deletion date\n\n * 400 MissingStorageContainerSasToken - Missing storage container SAS token\n\n * 400 MissingStorageContainerUri - Missing storage container URI\n\n * 400 RestorableDroppedDatabaseIdGivenForRestoreWithSourceDatabaseId - Cannot specify restorableDroppedDatabaseId when sourceDatabaseId is already given in restore create mode\n\n * 400 InvalidCollation - Collation is not recognized by the server.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 UnableToResolveRemoteServer - The remote partner server name could not be resolved due to an invalid server name or DNS connectivity issues.\n\n * 400 ElasticPoolOverStorageUsage - Attempting to write data to a database when the storage limit of the elastic pool has been reached.\n\n * 400 RemoteDatabaseCopyPermission - User does not have sufficient permission to create a database copy on the specified server.\n\n * 400 SourceDatabaseNotFound - The source database does not exist.\n\n * 400 UpdateNotAllowedInCurrentReplicationState - The operation is disallowed on the database in its current replication state.\n\n * 400 GeoReplicaLimitReached - The per-replica replication limit was reached.\n\n * 400 ReplicationSourceAndTargetMustHaveSameName - The replication source and target databases must have the same name.\n\n * 400 ReplicationSourceAndTargetMustBeInDifferentServers - The replication source and target databases must be in different logical servers.\n\n * 400 ChangeUnsupportedOnEntity - User attempted an unsupported create/update/delete operation on a given entity.\n\n * 400 TierChangeUnsupportedDueToMemoryOptimizedObject - The database cannot update its sku because it has memory-optimized objects.\n\n * 400 SourceServerNotFound - The server part of a source database id provided in a CreateDatabaseAsCopy API call doesn't map to an existing server.\n\n * 400 InvalidDatabaseCreateMode - Invalid request to create a database.\n\n * 400 InvalidAddSecondaryPermission - User does not have sufficient permission to add secondary on the specified server.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CurrentDatabaseLogSizeExceedsMaxSize - User attempted to change the database to a sku with lower max log size than the current usage.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 InvalidSku - The user specified an invalid sku.\n\n * 400 InvalidTierSkuCombination - The specified tier does not support the specified sku.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 OfferDisabledOnSubscription - Subscription offer type is restricted from provisioning the requested resource.\n\n * 400 InvalidTargetSubregion - The target server of a non-readable secondary is not in a DR paired Azure region.\n\n * 400 PartnerServerNotCompatible - The user is attempting to copy a database from a SAWA V1 server to a Sterling server or vice versa.\n\n * 400 IncorrectReplicationLinkState - The operation expects the database to be in an expected state on the replication link.\n\n * 400 TargetElasticPoolDoesNotExist - The elastic pool does not exist on a server.\n\n * 400 CurrentDatabaseSizeExceedsMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 ElasticPoolSkuCombinationInvalid - Elastic pool and sku can be specified together only if sku is specified as 'ElasticPool'.\n\n * 400 ElasticPoolTierCombinationInvalid - The database tier is different than the elastic pool service tier.\n\n * 400 ElasticPoolNameRequired - User tried to create or update database to elastic pool service objective without specifying the name of the elastic pool.\n\n * 400 AzureKeyVaultInvalidExpirationDate - The operation could not be completed because the Azure Key Vault key expiration date is invalid.\n\n * 400 SecurityAzureKeyVaultUrlNullOrEmpty - The operation could not be completed because the Azure Key Vault Uri is null or empty.\n\n * 400 AzureKeyVaultInvalidUri - An invalid response from Azure Key Vault. Please use a valid Azure Key Vault URI.\n\n * 400 ElasticPoolInconsistentDtuGuaranteeSettings - Attempting to provide DTU min for databases in the elastic pool that exceeds requested DTUs of the elastic pool.\n\n * 400 InvalidReadScaleEdition - User attempted to enable read scale on a database type that does not support it.\n\n * 400 InvalidReadScaleUnits - User attempted to provide a read scale value that is not supported.\n\n * 400 SecurityAzureKeyVaultInvalidKeyName - The operation could not be completed because of an invalid Server Key name.\n\n * 400 ElasticPoolDatabaseCountOverLimit - Attempting to create or add database to elastic pool when the database count limit of the elastic pool has been reached.\n\n * 400 CannotChangeToOrFromDataWarehouseTier - User attempted to change the sku of a database from DataWarehouse tier to non DataWarehouse tiers or vice versa.\n\n * 400 AzureKeyVaultMalformedVaultUri - The provided Key Vault uri is not valid.\n\n * 400 ElasticPoolDecreaseStorageLimitBelowUsage - Attempting to decrease the storage limit of the elastic pool below its storage usage.\n\n * 400 UpdateNotAllowedOnPausedDatabase - User attempted to perform an update on a paused database.\n\n * 400 RequestedDatabaseSizeRequiresShrink - User attempted to ALTER DATABASE MODIFY MAXSIZE to modify the MAXSIZE for a database to a smaller size then the current size.\n\n * 400 CurrentDatabaseSizeExceedsDbMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 CannotUseTrailingWhitespacesInDatabaseName - The database name validation failed.\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 SecurityAdalPrincipalCertExpiredError - The operation could not be completed because the Azure Key Vault principal certificate has expired.\n\n * 400 SecurityInvalidAzureKeyVaultRecoveryLevel - The provided Key Vault uri is not valid.\n\n * 400 KeyMaterialNotFoundOnRemoteServer - Remote server does not have access to key material used as a TDE protector.\n\n * 400 AzureKeyVaultMismatchError - Unexpected Key Vault region found in the http response.\n\n * 400 SourceDatabaseEditionCouldNotBeUpgraded - The source database cannot have higher edition than the target database.\n\n * 400 AzureKeyVaultRsaKeyNotSupported - The provided key vault uses unsupported RSA Key Size or Key Type. The supported RSA key size is 2048 or 3072 and Key Type is RSA or RSA-HSM.\n\n * 400 TargetDatabaseEditionCouldNotBeDowngraded - The target database cannot have lower edition than the source database.\n\n * 400 UpdateNotAllowedIfGeoDrOperationInProgress - The operation is disallowed because copy or failover operation for database '{0}' on server '{1}' is currently in progress.\n\n * 400 ElasticPoolOverFileSpace - Insufficient file space in the elastic pool.\n\n * 400 SecurityAzureKeyVaultGeoChainError - Creating secondary of secondary (a process known as chaining) is not supported when enabling Transparent Data Encryption using Azure Key Vault (BYOK).\n\n * 400 InvalidLicenseType - User tried to create or update a database or elastic pool with unsupported license type.\n\n * 400 UnsupportedCapacity - User tried to create or update database with capacity which is not supported.\n\n * 400 RestoreToFreeEditionNotSupported - Restore and GeoRestore target cannot be free database.\n\n * 400 RestoreNotSupportedForFreeEdition - Restore and GeoRestore are not supported for free database.\n\n * 400 InvalidDroppedDatabase - Source database dropped does not exist on server within the supported recovery period.\n\n * 400 InvalidLiveDatabase - Source database does not exist on server within the supported recovery period. If restoring a dropped database, please specify its deletion date.\n\n * 400 InvalidVldbRecoverySlo - The Hyperscale edition recovery requires both source and target databases to use Hyperscale service level objective.\n\n * 400 InvalidVldbRestoreSlo - The Hyperscale edition Point-In-Time restore requires both source and target databases to use Hyperscale service level objective.\n\n * 400 CannotSpecifyPoolOrSlo - Specifying an elastic pool and/or changing the service level objective or edition is not supported for edition.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 JobAgentDatabaseEditionUnsupported - The specified database's service level objective is not supported for use as a job agent database.\n\n * 400 CannotUpdateToFreeDatabase - Updating a database to the free sku is not supported.\n\n * 400 InvalidBackupStorageAccountType - User passed zrs/lrs during create/update of a database but it failed either because the customer is not whitelisted or because zrs is not available in the specified region.\n\n * 400 DatabaseInvalidSkuPropertyCombination - The properties of the requested sku are inconsistent. Please check that a valid combination is specified. See https://docs.microsoft.com/en-us/rest/api/sql/capabilities/listbylocation#serviceobjectivecapability for more details.\n\n * 400 DatabaseNamedReplicaPerDatabaseLimitExceeded - User tried create a named replica that would exceed the allowed number per primary database\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 ElasticPoolInconsistentVcoreGuaranteeSettings - The number of databases and VCore min per database cannot exceed requested VCores of the elastic pool.\n\n * 400 InvalidMaxSizeTierCombination - The specified tier does not support the specified database max size.\n\n * 400 InvalidTier - The user specified an invalid tier.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 401 AzureKeyVaultKeyDisabled - The operation could not be completed on the server because the Azure Key Vault key is disabled.\n\n * 401 AzureKeyVaultNoServerIdentity - The server identity is not correctly configured.\n\n * 401 AzureKeyVaultMissingPermissions - The server is missing required permissions on the Azure Key Vault. \n\n * 401 AdalGenericError - The operation could not be completed because an Azure Active Directory error was encountered.\n\n * 401 AdalServicePrincipalNotFound - The operation could not be completed because an Azure Active Directory library Service Principal not found error was encountered.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 CannotFindObject - Cannot find the object because it does not exist or you do not have permissions\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 405 UnsupportedReplicationOperation - An unsupported replication operation was initiated on the database.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 InvalidOperationForDatabaseNotInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 InvalidOperationForDatabaseInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 RemoteDatabaseExists - The destination database name already exists on the destination server.\n\n * 409 DuplicateGeoDrRelation - The databases are already in a replication relation. This is a duplicate request.\n\n * 409 FreeDbAlreadyExists - Only one free database can exist for a subscription per region.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ConflictingSystemOperationInProgress - A system maintenance operation is in progress on the database and further operations need to wait until it is completed.\n\n * 409 SkuAssignmentInProgress - The current assignment request cannot be processed because a previous request has not completed.\n\n * 409 CurrentMemoryUsageExceedsSkuQuota - User attempted an sku update operation that cannot be completed due to the higher resource consumption.\n\n * 409 ServerDtuQuotaExceeded - Could not perform the operation because server would exceed the allowed Database Throughput Unit quota.\n\n * 409 ServerKeyNameAlreadyExists - The server key already exists on the server.\n\n * 409 ServerKeyUriAlreadyExists - The server key URI already exists on the server.\n\n * 409 UnableToAlterDatabaseInReplication - User altered edition on a database in a replication relationship.\n\n * 409 ServerKeyDoesNotExists - The server key does not exist.\n\n * 409 UpdateSloInProgress - User tried to initiate an incompatible operation while a SLO update was in progress.\n\n * 409 AzureKeyVaultKeyNameNotFound - The operation could not be completed because the Azure Key Vault Key name does not exist.\n\n * 409 AzureKeyVaultKeyInUse - The key is currently being used by the server.\n\n * 409 SimultaneousSkuChangeNotAllowed - Service objective change operations cannot run on both databases of a replication relationship at the same time.\n\n * 409 TargetElasticPoolBeingUpdated - The update of elastic pool cannot be started because there is copy operation in progress for one of the databases in this elastic pool\n\n * 409 DatabaseCopyLimitPerReplicaReached - User reached the limit of concurrent database copies.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingDatabaseOperation - There is already some operation on the database and the current operation should wait till it is done.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows\n\n * 503 AzureKeyVaultConnectionFailed - The operation could not be completed on the server because attempts to connect to Azure Key Vault have failed\n\n * 503 AzureKeyVaultGenericConnectionError - The operation could not be completed because an error was encountered when attempting to retrieve Key Vault information .\n\n * 503 DatabaseUnavailable - The operation failed because the database is unavailable.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 504 RequestTimeout - Service request exceeded the allowed timeout." + }, + "202": { + "description": "Creating or updating the database is in progress." + }, + "201": { + "description": "Successfully created the database.", + "schema": { + "$ref": "#/definitions/Database" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Creates a VCore database by specifying service objective name.": { + "$ref": "./examples/CreateVCoreDatabaseByServiceObjective.json" + }, + "Creates a VCore database by specifying sku name and capacity.": { + "$ref": "./examples/CreateVCoreDatabaseBySkuNameCapacity.json" + }, + "Creates a data warehouse by specifying service objective name.": { + "$ref": "./examples/CreateDwDatabaseByServiceObjective.json" + }, + "Creates a database with minimum number of parameters.": { + "$ref": "./examples/CreateDatabaseMin.json" + }, + "Creates a database with default mode.": { + "$ref": "./examples/CreateDatabaseDefaultMode.json" + }, + "Creates a database as a copy.": { + "$ref": "./examples/CreateDatabaseCopyMode.json" + }, + "Creates a database as an on-line secondary.": { + "$ref": "./examples/CreateDatabaseSecondaryMode.json" + }, + "Creates a database from PointInTimeRestore.": { + "$ref": "./examples/CreateDatabasePITRMode.json" + }, + "Creates a database from restore with database deletion time.": { + "$ref": "./examples/CreateDatabaseRestoreMode.json" + }, + "Creates a database from restore with restorableDroppedDatabaseId.": { + "$ref": "./examples/CreateDatabaseRestoreMode2.json" + }, + "Creates a database from recoverableDatabaseId.": { + "$ref": "./examples/CreateDatabaseRecoveryMode.json" + } + } + }, + "delete": { + "tags": [ + "Databases" + ], + "description": "Deletes the database.", + "operationId": "Databases_Delete", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully deleted the database." + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources." + }, + "202": { + "description": "Deleting the database is in progress." + }, + "204": { + "description": "The specified database does not exist." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Deletes a database.": { + "$ref": "./examples/DeleteDatabase.json" + } + } + }, + "patch": { + "tags": [ + "Databases" + ], + "description": "Updates an existing database.", + "operationId": "Databases_Update", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The requested database resource state.", + "required": true, + "schema": { + "$ref": "#/definitions/DatabaseUpdate" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully updated the database.", + "schema": { + "$ref": "#/definitions/Database" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 InvalidDatabaseCreateOrUpdateRequest - The request body for the create or update database operation is invalid.\n\n * 400 InvalidResourceId - Invalid resource identifier.\n\n * 400 InvalidSourceDatabaseId - Invalid source database identifier.\n\n * 400 MismatchingResourceGroupNameWithUrl - The provided resource group name did not match the name in the Url.\n\n * 400 MismatchingServerNameWithUrl - The provided server name did not match the name in the Url.\n\n * 400 MismatchingSubscriptionWithUrl - The provided subscription did not match the subscription in the Url.\n\n * 400 MissingCollation - Collation is required.\n\n * 400 MissingMaxSizeBytes - MaxSizeBytes is required.\n\n * 400 MissingSkuName - Sku name is required.\n\n * 400 MissingSourceDatabaseId - Missing source database identifier.\n\n * 400 InvalidLicenseType - The specified license type is invalid.\n\n * 400 InvalidSkuName - Invalid SKU name.\n\n * 400 MismatchedSkuNameAndCapacity - Mismatch between SKU name and capacity.\n\n * 400 MismatchedSkuNameAndTier - Mismatch between SKU name and tier.\n\n * 400 MismatchedSkuNameAndFamily - Mismatch between SKU name and family.\n\n * 400 DatabaseNameDoesNotMatchSourceDatabaseId - The database name specified doesn’t match the database name in sourceDatabaseId.\n\n * 400 ElasticPoolNotSupportedForExternalBackupRestore - Elastic pool is not supported for external backup restore\n\n * 400 InvalidRecoverableDatabaseId - Invalid recoverable database identifier.\n\n * 400 InvalidRecoveryServicesRecoveryPointId - Invalid recovery services recovery point identifier.\n\n * 400 InvalidRestorableDroppedDatabaseDeletionDate - The restorable dropped database deletion date given is invalid\n\n * 400 InvalidRestorableDroppedDatabaseId - Invalid restorable dropped database identifier\n\n * 400 MissingRecoverableDatabaseId - Missing recoverable database identifier.\n\n * 400 MissingRecoveryServicesRecoveryPointId - Missing recovery services recovery point Id.\n\n * 400 MissingRestorableDroppedDatabaseId - Missing restorableDroppedDatabaseId\n\n * 400 MissingRestorePointInTime - Missing restore point in time\n\n * 400 MissingSourceDatabaseDeletionDate - Missing source database deletion date\n\n * 400 MissingStorageContainerSasToken - Missing storage container SAS token\n\n * 400 MissingStorageContainerUri - Missing storage container URI\n\n * 400 RestorableDroppedDatabaseIdGivenForRestoreWithSourceDatabaseId - Cannot specify restorableDroppedDatabaseId when sourceDatabaseId is already given in restore create mode\n\n * 400 InvalidCollation - Collation is not recognized by the server.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 UnableToResolveRemoteServer - The remote partner server name could not be resolved due to an invalid server name or DNS connectivity issues.\n\n * 400 ElasticPoolOverStorageUsage - Attempting to write data to a database when the storage limit of the elastic pool has been reached.\n\n * 400 RemoteDatabaseCopyPermission - User does not have sufficient permission to create a database copy on the specified server.\n\n * 400 SourceDatabaseNotFound - The source database does not exist.\n\n * 400 UpdateNotAllowedInCurrentReplicationState - The operation is disallowed on the database in its current replication state.\n\n * 400 GeoReplicaLimitReached - The per-replica replication limit was reached.\n\n * 400 ReplicationSourceAndTargetMustHaveSameName - The replication source and target databases must have the same name.\n\n * 400 ReplicationSourceAndTargetMustBeInDifferentServers - The replication source and target databases must be in different logical servers.\n\n * 400 ChangeUnsupportedOnEntity - User attempted an unsupported create/update/delete operation on a given entity.\n\n * 400 TierChangeUnsupportedDueToMemoryOptimizedObject - The database cannot update its sku because it has memory-optimized objects.\n\n * 400 SourceServerNotFound - The server part of a source database id provided in a CreateDatabaseAsCopy API call doesn't map to an existing server.\n\n * 400 InvalidDatabaseCreateMode - Invalid request to create a database.\n\n * 400 InvalidAddSecondaryPermission - User does not have sufficient permission to add secondary on the specified server.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CurrentDatabaseLogSizeExceedsMaxSize - User attempted to change the database to a sku with lower max log size than the current usage.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 InvalidSku - The user specified an invalid sku.\n\n * 400 InvalidTierSkuCombination - The specified tier does not support the specified sku.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 OfferDisabledOnSubscription - Subscription offer type is restricted from provisioning the requested resource.\n\n * 400 InvalidTargetSubregion - The target server of a non-readable secondary is not in a DR paired Azure region.\n\n * 400 PartnerServerNotCompatible - The user is attempting to copy a database from a SAWA V1 server to a Sterling server or vice versa.\n\n * 400 IncorrectReplicationLinkState - The operation expects the database to be in an expected state on the replication link.\n\n * 400 TargetElasticPoolDoesNotExist - The elastic pool does not exist on a server.\n\n * 400 CurrentDatabaseSizeExceedsMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 ElasticPoolSkuCombinationInvalid - Elastic pool and sku can be specified together only if sku is specified as 'ElasticPool'.\n\n * 400 ElasticPoolTierCombinationInvalid - The database tier is different than the elastic pool service tier.\n\n * 400 ElasticPoolNameRequired - User tried to create or update database to elastic pool service objective without specifying the name of the elastic pool.\n\n * 400 AzureKeyVaultInvalidExpirationDate - The operation could not be completed because the Azure Key Vault key expiration date is invalid.\n\n * 400 SecurityAzureKeyVaultUrlNullOrEmpty - The operation could not be completed because the Azure Key Vault Uri is null or empty.\n\n * 400 AzureKeyVaultInvalidUri - An invalid response from Azure Key Vault. Please use a valid Azure Key Vault URI.\n\n * 400 ElasticPoolInconsistentDtuGuaranteeSettings - Attempting to provide DTU min for databases in the elastic pool that exceeds requested DTUs of the elastic pool.\n\n * 400 InvalidReadScaleEdition - User attempted to enable read scale on a database type that does not support it.\n\n * 400 InvalidReadScaleUnits - User attempted to provide a read scale value that is not supported.\n\n * 400 SecurityAzureKeyVaultInvalidKeyName - The operation could not be completed because of an invalid Server Key name.\n\n * 400 ElasticPoolDatabaseCountOverLimit - Attempting to create or add database to elastic pool when the database count limit of the elastic pool has been reached.\n\n * 400 CannotChangeToOrFromDataWarehouseTier - User attempted to change the sku of a database from DataWarehouse tier to non DataWarehouse tiers or vice versa.\n\n * 400 AzureKeyVaultMalformedVaultUri - The provided Key Vault uri is not valid.\n\n * 400 ElasticPoolDecreaseStorageLimitBelowUsage - Attempting to decrease the storage limit of the elastic pool below its storage usage.\n\n * 400 UpdateNotAllowedOnPausedDatabase - User attempted to perform an update on a paused database.\n\n * 400 RequestedDatabaseSizeRequiresShrink - User attempted to ALTER DATABASE MODIFY MAXSIZE to modify the MAXSIZE for a database to a smaller size then the current size.\n\n * 400 CurrentDatabaseSizeExceedsDbMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 CannotUseTrailingWhitespacesInDatabaseName - The database name validation failed.\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 SecurityAdalPrincipalCertExpiredError - The operation could not be completed because the Azure Key Vault principal certificate has expired.\n\n * 400 SecurityInvalidAzureKeyVaultRecoveryLevel - The provided Key Vault uri is not valid.\n\n * 400 KeyMaterialNotFoundOnRemoteServer - Remote server does not have access to key material used as a TDE protector.\n\n * 400 AzureKeyVaultMismatchError - Unexpected Key Vault region found in the http response.\n\n * 400 SourceDatabaseEditionCouldNotBeUpgraded - The source database cannot have higher edition than the target database.\n\n * 400 AzureKeyVaultRsaKeyNotSupported - The provided key vault uses unsupported RSA Key Size or Key Type. The supported RSA key size is 2048 or 3072 and Key Type is RSA or RSA-HSM.\n\n * 400 TargetDatabaseEditionCouldNotBeDowngraded - The target database cannot have lower edition than the source database.\n\n * 400 UpdateNotAllowedIfGeoDrOperationInProgress - The operation is disallowed because copy or failover operation for database '{0}' on server '{1}' is currently in progress.\n\n * 400 ElasticPoolOverFileSpace - Insufficient file space in the elastic pool.\n\n * 400 SecurityAzureKeyVaultGeoChainError - Creating secondary of secondary (a process known as chaining) is not supported when enabling Transparent Data Encryption using Azure Key Vault (BYOK).\n\n * 400 InvalidLicenseType - User tried to create or update a database or elastic pool with unsupported license type.\n\n * 400 UnsupportedCapacity - User tried to create or update database with capacity which is not supported.\n\n * 400 RestoreToFreeEditionNotSupported - Restore and GeoRestore target cannot be free database.\n\n * 400 RestoreNotSupportedForFreeEdition - Restore and GeoRestore are not supported for free database.\n\n * 400 InvalidDroppedDatabase - Source database dropped does not exist on server within the supported recovery period.\n\n * 400 InvalidLiveDatabase - Source database does not exist on server within the supported recovery period. If restoring a dropped database, please specify its deletion date.\n\n * 400 InvalidVldbRecoverySlo - The Hyperscale edition recovery requires both source and target databases to use Hyperscale service level objective.\n\n * 400 InvalidVldbRestoreSlo - The Hyperscale edition Point-In-Time restore requires both source and target databases to use Hyperscale service level objective.\n\n * 400 CannotSpecifyPoolOrSlo - Specifying an elastic pool and/or changing the service level objective or edition is not supported for edition.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 JobAgentDatabaseEditionUnsupported - The specified database's service level objective is not supported for use as a job agent database.\n\n * 400 CannotUpdateToFreeDatabase - Updating a database to the free sku is not supported.\n\n * 400 InvalidBackupStorageAccountType - User passed zrs/lrs during create/update of a database but it failed either because the customer is not whitelisted or because zrs is not available in the specified region.\n\n * 400 DatabaseInvalidSkuPropertyCombination - The properties of the requested sku are inconsistent. Please check that a valid combination is specified. See https://docs.microsoft.com/en-us/rest/api/sql/capabilities/listbylocation#serviceobjectivecapability for more details.\n\n * 400 DatabaseNamedReplicaPerDatabaseLimitExceeded - User tried create a named replica that would exceed the allowed number per primary database\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 ElasticPoolInconsistentVcoreGuaranteeSettings - The number of databases and VCore min per database cannot exceed requested VCores of the elastic pool.\n\n * 400 InvalidMaxSizeTierCombination - The specified tier does not support the specified database max size.\n\n * 400 InvalidTier - The user specified an invalid tier.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 401 AzureKeyVaultKeyDisabled - The operation could not be completed on the server because the Azure Key Vault key is disabled.\n\n * 401 AzureKeyVaultNoServerIdentity - The server identity is not correctly configured.\n\n * 401 AzureKeyVaultMissingPermissions - The server is missing required permissions on the Azure Key Vault. \n\n * 401 AdalGenericError - The operation could not be completed because an Azure Active Directory error was encountered.\n\n * 401 AdalServicePrincipalNotFound - The operation could not be completed because an Azure Active Directory library Service Principal not found error was encountered.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 CannotFindObject - Cannot find the object because it does not exist or you do not have permissions\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 405 UnsupportedReplicationOperation - An unsupported replication operation was initiated on the database.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 InvalidOperationForDatabaseNotInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 InvalidOperationForDatabaseInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 RemoteDatabaseExists - The destination database name already exists on the destination server.\n\n * 409 DuplicateGeoDrRelation - The databases are already in a replication relation. This is a duplicate request.\n\n * 409 FreeDbAlreadyExists - Only one free database can exist for a subscription per region.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ConflictingSystemOperationInProgress - A system maintenance operation is in progress on the database and further operations need to wait until it is completed.\n\n * 409 SkuAssignmentInProgress - The current assignment request cannot be processed because a previous request has not completed.\n\n * 409 CurrentMemoryUsageExceedsSkuQuota - User attempted an sku update operation that cannot be completed due to the higher resource consumption.\n\n * 409 ServerDtuQuotaExceeded - Could not perform the operation because server would exceed the allowed Database Throughput Unit quota.\n\n * 409 ServerKeyNameAlreadyExists - The server key already exists on the server.\n\n * 409 ServerKeyUriAlreadyExists - The server key URI already exists on the server.\n\n * 409 UnableToAlterDatabaseInReplication - User altered edition on a database in a replication relationship.\n\n * 409 ServerKeyDoesNotExists - The server key does not exist.\n\n * 409 UpdateSloInProgress - User tried to initiate an incompatible operation while a SLO update was in progress.\n\n * 409 AzureKeyVaultKeyNameNotFound - The operation could not be completed because the Azure Key Vault Key name does not exist.\n\n * 409 AzureKeyVaultKeyInUse - The key is currently being used by the server.\n\n * 409 SimultaneousSkuChangeNotAllowed - Service objective change operations cannot run on both databases of a replication relationship at the same time.\n\n * 409 TargetElasticPoolBeingUpdated - The update of elastic pool cannot be started because there is copy operation in progress for one of the databases in this elastic pool\n\n * 409 DatabaseCopyLimitPerReplicaReached - User reached the limit of concurrent database copies.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingDatabaseOperation - There is already some operation on the database and the current operation should wait till it is done.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows\n\n * 503 AzureKeyVaultConnectionFailed - The operation could not be completed on the server because attempts to connect to Azure Key Vault have failed\n\n * 503 AzureKeyVaultGenericConnectionError - The operation could not be completed because an error was encountered when attempting to retrieve Key Vault information .\n\n * 503 DatabaseUnavailable - The operation failed because the database is unavailable.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 504 RequestTimeout - Service request exceeded the allowed timeout." + }, + "202": { + "description": "Updating the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Updates a database.": { + "$ref": "./examples/PatchDatabase.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases": { + "get": { + "tags": [ + "Databases" + ], + "description": "Gets a list of databases in an elastic pool.", + "operationId": "Databases_ListByElasticPool", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "elasticPoolName", + "in": "path", + "description": "The name of the elastic pool.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved a list of databases in an elastic pool.", + "schema": { + "$ref": "#/definitions/DatabaseListResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 CannotFindObject - Cannot find the object because it does not exist or you do not have permissions\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 504 RequestTimeout - Service request exceeded the allowed timeout." + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Gets a list of databases in an elastic pool.": { + "$ref": "./examples/ListDatabasesByElasticPool.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/pause": { + "post": { + "tags": [ + "Databases" + ], + "description": "Pauses a database.", + "operationId": "Databases_Pause", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "description": "The name of the database to be paused.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully paused the database.", + "schema": { + "$ref": "#/definitions/Database" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 CannotDeactivateWhenDeactivatingInProgress - Deactivation workflow failed because there is a deactivate workflow already running.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 404 SourceDatabaseNotFound - The source database does not exist.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows" + }, + "202": { + "description": "Pausing the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Pauses a database.": { + "$ref": "./examples/PauseDatabase.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/resume": { + "post": { + "tags": [ + "Databases" + ], + "description": "Resumes a database.", + "operationId": "Databases_Resume", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "description": "The name of the database to be resumed.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully resumed the database.", + "schema": { + "$ref": "#/definitions/Database" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 404 SourceDatabaseNotFound - The source database does not exist.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows" + }, + "202": { + "description": "Resuming the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Resumes a database.": { + "$ref": "./examples/ResumeDatabase.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/import": { + "post": { + "tags": [ + "Databases" + ], + "description": "Imports a bacpac into a new database.", + "operationId": "Databases_Import", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The database import request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/ImportExportDatabaseDefinition" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully imported the database.", + "schema": { + "$ref": "#/definitions/ImportExportOperationResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." + }, + "202": { + "description": "Importing the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Imports to an existing empty database.": { + "$ref": "./examples/ImportDatabase.json" + }, + "Imports to an existing empty database, using private link to communicate with SQL server and storage account.": { + "$ref": "./examples/ImportDatabaseWithNetworkIsolation.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/export": { + "post": { + "tags": [ + "Databases" + ], + "description": "Exports a database.", + "operationId": "Databases_Export", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The database export request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/ImportExportDatabaseDefinition" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully exported the database.", + "schema": { + "$ref": "#/definitions/ImportExportOperationResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." + }, + "202": { + "description": "Exporting the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Exports a database.": { + "$ref": "./examples/ExportDatabase.json" + }, + "Exports a database, using private link to communicate with SQL server and storage account.": { + "$ref": "./examples/ExportDatabaseWithNetworkIsolation.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/inaccessibleDatabases": { + "get": { + "tags": [ + "Databases" + ], + "description": "Gets a list of inaccessible databases in a logical server", + "operationId": "Databases_ListInaccessibleByServer", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved the list of inaccessible databases in a logical server", + "schema": { + "$ref": "#/definitions/DatabaseListResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription." + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Gets a list of inaccessible databases in a logical server": { + "$ref": "./examples/ListVCoreInaccessibleDatabasesByServer.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/failover": { + "post": { + "tags": [ + "Databases" + ], + "description": "Failovers a database.", + "operationId": "Databases_Failover", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "description": "The name of the database to failover.", + "required": true, + "type": "string" + }, + { + "name": "replicaType", + "in": "query", + "description": "The type of replica to be failed over.", + "required": false, + "type": "string", + "enum": [ + "Primary", + "ReadableSecondary" + ], + "x-ms-enum": { + "name": "ReplicaType", + "modelAsString": true + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully completed database failover." + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 ManagementServiceFeatureDisabled - User attempted to use a feature which is disabled.\n\n * 400 DatabaseFailoverThrottled - There was a recent failover on the database or pool if database belongs in an elastic pool.\n\n * 400 DatabaseFailoverNotSupportedOnSKU - This type of customer initiated failover is not supported on the given SKU.\n\n * 409 ManagementServiceDatabaseBusy - Database '{0}' is busy with another operation. Please try your operation later.\n\n * 409 DatabaseNotInStateToFailover - The database is currently in a state such that failover cannot be issued." + }, + "202": { + "description": "Database failover is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Failover an database": { + "$ref": "./examples/FailoverDatabase.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/upgradeDataWarehouse": { + "post": { + "tags": [ + "Databases" + ], + "description": "Upgrades a data warehouse.", + "operationId": "Databases_UpgradeDataWarehouse", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "description": "The name of the database to be upgraded.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully upgraded the data warehouse." + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 InvalidCollation - Collation is not recognized by the server.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 UnableToResolveRemoteServer - The remote partner server name could not be resolved due to an invalid server name or DNS connectivity issues.\n\n * 400 ElasticPoolOverStorageUsage - Attempting to write data to a database when the storage limit of the elastic pool has been reached.\n\n * 400 RemoteDatabaseCopyPermission - User does not have sufficient permission to create a database copy on the specified server.\n\n * 400 SourceDatabaseNotFound - The source database does not exist.\n\n * 400 UpdateNotAllowedInCurrentReplicationState - The operation is disallowed on the database in its current replication state.\n\n * 400 GeoReplicaLimitReached - The per-replica replication limit was reached.\n\n * 400 ReplicationSourceAndTargetMustHaveSameName - The replication source and target databases must have the same name.\n\n * 400 ReplicationSourceAndTargetMustBeInDifferentServers - The replication source and target databases must be in different logical servers.\n\n * 400 ChangeUnsupportedOnEntity - User attempted an unsupported create/update/delete operation on a given entity.\n\n * 400 TierChangeUnsupportedDueToMemoryOptimizedObject - The database cannot update its sku because it has memory-optimized objects.\n\n * 400 SourceServerNotFound - The server part of a source database id provided in a CreateDatabaseAsCopy API call doesn't map to an existing server.\n\n * 400 InvalidDatabaseCreateMode - Invalid request to create a database.\n\n * 400 InvalidAddSecondaryPermission - User does not have sufficient permission to add secondary on the specified server.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CurrentDatabaseLogSizeExceedsMaxSize - User attempted to change the database to a sku with lower max log size than the current usage.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 InvalidSku - The user specified an invalid sku.\n\n * 400 InvalidTierSkuCombination - The specified tier does not support the specified sku.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 OfferDisabledOnSubscription - Subscription offer type is restricted from provisioning the requested resource.\n\n * 400 InvalidTargetSubregion - The target server of a non-readable secondary is not in a DR paired Azure region.\n\n * 400 PartnerServerNotCompatible - The user is attempting to copy a database from a SAWA V1 server to a Sterling server or vice versa.\n\n * 400 IncorrectReplicationLinkState - The operation expects the database to be in an expected state on the replication link.\n\n * 400 TargetElasticPoolDoesNotExist - The elastic pool does not exist on a server.\n\n * 400 CurrentDatabaseSizeExceedsMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 ElasticPoolSkuCombinationInvalid - Elastic pool and sku can be specified together only if sku is specified as 'ElasticPool'.\n\n * 400 ElasticPoolTierCombinationInvalid - The database tier is different than the elastic pool service tier.\n\n * 400 ElasticPoolNameRequired - User tried to create or update database to elastic pool service objective without specifying the name of the elastic pool.\n\n * 400 AzureKeyVaultInvalidExpirationDate - The operation could not be completed because the Azure Key Vault key expiration date is invalid.\n\n * 400 SecurityAzureKeyVaultUrlNullOrEmpty - The operation could not be completed because the Azure Key Vault Uri is null or empty.\n\n * 400 AzureKeyVaultInvalidUri - An invalid response from Azure Key Vault. Please use a valid Azure Key Vault URI.\n\n * 400 ElasticPoolInconsistentDtuGuaranteeSettings - Attempting to provide DTU min for databases in the elastic pool that exceeds requested DTUs of the elastic pool.\n\n * 400 InvalidReadScaleEdition - User attempted to enable read scale on a database type that does not support it.\n\n * 400 InvalidReadScaleUnits - User attempted to provide a read scale value that is not supported.\n\n * 400 SecurityAzureKeyVaultInvalidKeyName - The operation could not be completed because of an invalid Server Key name.\n\n * 400 ElasticPoolDatabaseCountOverLimit - Attempting to create or add database to elastic pool when the database count limit of the elastic pool has been reached.\n\n * 400 CannotChangeToOrFromDataWarehouseTier - User attempted to change the sku of a database from DataWarehouse tier to non DataWarehouse tiers or vice versa.\n\n * 400 AzureKeyVaultMalformedVaultUri - The provided Key Vault uri is not valid.\n\n * 400 ElasticPoolDecreaseStorageLimitBelowUsage - Attempting to decrease the storage limit of the elastic pool below its storage usage.\n\n * 400 UpdateNotAllowedOnPausedDatabase - User attempted to perform an update on a paused database.\n\n * 400 RequestedDatabaseSizeRequiresShrink - User attempted to ALTER DATABASE MODIFY MAXSIZE to modify the MAXSIZE for a database to a smaller size then the current size.\n\n * 400 CurrentDatabaseSizeExceedsDbMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 CannotUseTrailingWhitespacesInDatabaseName - The database name validation failed.\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 SecurityAdalPrincipalCertExpiredError - The operation could not be completed because the Azure Key Vault principal certificate has expired.\n\n * 400 SecurityInvalidAzureKeyVaultRecoveryLevel - The provided Key Vault uri is not valid.\n\n * 400 KeyMaterialNotFoundOnRemoteServer - Remote server does not have access to key material used as a TDE protector.\n\n * 400 AzureKeyVaultMismatchError - Unexpected Key Vault region found in the http response.\n\n * 400 SourceDatabaseEditionCouldNotBeUpgraded - The source database cannot have higher edition than the target database.\n\n * 400 AzureKeyVaultRsaKeyNotSupported - The provided key vault uses unsupported RSA Key Size or Key Type. The supported RSA key size is 2048 or 3072 and Key Type is RSA or RSA-HSM.\n\n * 400 TargetDatabaseEditionCouldNotBeDowngraded - The target database cannot have lower edition than the source database.\n\n * 400 UpdateNotAllowedIfGeoDrOperationInProgress - The operation is disallowed because copy or failover operation for database '{0}' on server '{1}' is currently in progress.\n\n * 400 ElasticPoolOverFileSpace - Insufficient file space in the elastic pool.\n\n * 400 SecurityAzureKeyVaultGeoChainError - Creating secondary of secondary (a process known as chaining) is not supported when enabling Transparent Data Encryption using Azure Key Vault (BYOK).\n\n * 400 InvalidLicenseType - User tried to create or update a database or elastic pool with unsupported license type.\n\n * 400 UnsupportedCapacity - User tried to create or update database with capacity which is not supported.\n\n * 400 RestoreToFreeEditionNotSupported - Restore and GeoRestore target cannot be free database.\n\n * 400 RestoreNotSupportedForFreeEdition - Restore and GeoRestore are not supported for free database.\n\n * 400 InvalidDroppedDatabase - Source database dropped does not exist on server within the supported recovery period.\n\n * 400 InvalidLiveDatabase - Source database does not exist on server within the supported recovery period. If restoring a dropped database, please specify its deletion date.\n\n * 400 InvalidVldbRecoverySlo - The Hyperscale edition recovery requires both source and target databases to use Hyperscale service level objective.\n\n * 400 InvalidVldbRestoreSlo - The Hyperscale edition Point-In-Time restore requires both source and target databases to use Hyperscale service level objective.\n\n * 400 CannotSpecifyPoolOrSlo - Specifying an elastic pool and/or changing the service level objective or edition is not supported for edition.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 JobAgentDatabaseEditionUnsupported - The specified database's service level objective is not supported for use as a job agent database.\n\n * 400 CannotUpdateToFreeDatabase - Updating a database to the free sku is not supported.\n\n * 400 InvalidBackupStorageAccountType - User passed zrs/lrs during create/update of a database but it failed either because the customer is not whitelisted or because zrs is not available in the specified region.\n\n * 400 DatabaseInvalidSkuPropertyCombination - The properties of the requested sku are inconsistent. Please check that a valid combination is specified. See https://docs.microsoft.com/en-us/rest/api/sql/capabilities/listbylocation#serviceobjectivecapability for more details.\n\n * 400 DatabaseNamedReplicaPerDatabaseLimitExceeded - User tried create a named replica that would exceed the allowed number per primary database\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 ElasticPoolInconsistentVcoreGuaranteeSettings - The number of databases and VCore min per database cannot exceed requested VCores of the elastic pool.\n\n * 400 InvalidMaxSizeTierCombination - The specified tier does not support the specified database max size.\n\n * 400 InvalidTier - The user specified an invalid tier.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 400 UpgradeOnlyAllowedOnDataWarehouseInstances - User attempted to upgrade non-datawarehouse instance.\n\n * 401 AzureKeyVaultKeyDisabled - The operation could not be completed on the server because the Azure Key Vault key is disabled.\n\n * 401 AzureKeyVaultNoServerIdentity - The server identity is not correctly configured.\n\n * 401 AzureKeyVaultMissingPermissions - The server is missing required permissions on the Azure Key Vault. \n\n * 401 AdalGenericError - The operation could not be completed because an Azure Active Directory error was encountered.\n\n * 401 AdalServicePrincipalNotFound - The operation could not be completed because an Azure Active Directory library Service Principal not found error was encountered.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 404 CannotFindObject - Cannot find the object because it does not exist or you do not have permissions\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 405 UnsupportedReplicationOperation - An unsupported replication operation was initiated on the database.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 InvalidOperationForDatabaseNotInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 InvalidOperationForDatabaseInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 RemoteDatabaseExists - The destination database name already exists on the destination server.\n\n * 409 DuplicateGeoDrRelation - The databases are already in a replication relation. This is a duplicate request.\n\n * 409 FreeDbAlreadyExists - Only one free database can exist for a subscription per region.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ConflictingSystemOperationInProgress - A system maintenance operation is in progress on the database and further operations need to wait until it is completed.\n\n * 409 SkuAssignmentInProgress - The current assignment request cannot be processed because a previous request has not completed.\n\n * 409 CurrentMemoryUsageExceedsSkuQuota - User attempted an sku update operation that cannot be completed due to the higher resource consumption.\n\n * 409 ServerDtuQuotaExceeded - Could not perform the operation because server would exceed the allowed Database Throughput Unit quota.\n\n * 409 ServerKeyNameAlreadyExists - The server key already exists on the server.\n\n * 409 ServerKeyUriAlreadyExists - The server key URI already exists on the server.\n\n * 409 UnableToAlterDatabaseInReplication - User altered edition on a database in a replication relationship.\n\n * 409 ServerKeyDoesNotExists - The server key does not exist.\n\n * 409 UpdateSloInProgress - User tried to initiate an incompatible operation while a SLO update was in progress.\n\n * 409 AzureKeyVaultKeyNameNotFound - The operation could not be completed because the Azure Key Vault Key name does not exist.\n\n * 409 AzureKeyVaultKeyInUse - The key is currently being used by the server.\n\n * 409 SimultaneousSkuChangeNotAllowed - Service objective change operations cannot run on both databases of a replication relationship at the same time.\n\n * 409 TargetElasticPoolBeingUpdated - The update of elastic pool cannot be started because there is copy operation in progress for one of the databases in this elastic pool\n\n * 409 DatabaseCopyLimitPerReplicaReached - User reached the limit of concurrent database copies.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingDatabaseOperation - There is already some operation on the database and the current operation should wait till it is done.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows\n\n * 503 AzureKeyVaultConnectionFailed - The operation could not be completed on the server because attempts to connect to Azure Key Vault have failed\n\n * 503 AzureKeyVaultGenericConnectionError - The operation could not be completed because an error was encountered when attempting to retrieve Key Vault information .\n\n * 503 DatabaseUnavailable - The operation failed because the database is unavailable.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 504 RequestTimeout - Service request exceeded the allowed timeout." + }, + "202": { + "description": "Upgrading the data warehouse is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Upgrades a data warehouse.": { + "$ref": "./examples/UpgradeDataWarehouse.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/move": { + "post": { + "tags": [ + "Databases" + ], + "description": "Renames a database.", + "operationId": "Databases_Rename", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "databaseName", + "in": "path", + "description": "The name of the database to rename.", + "required": true, + "type": "string" + }, + { + "name": "parameters", + "in": "body", + "description": "The resource move definition for renaming this database.", + "required": true, + "schema": { + "$ref": "#/definitions/ResourceMoveDefinition" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully renamed the database." + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 InvalidResourceMoveRequest - The resource move request is invalid.\n\n * 400 InvalidMoveTargetResourceId - The target resource identifier in move request is invalid.\n\n * 400 MismatchingSubscriptionWithUrl - The provided subscription did not match the subscription in the Url.\n\n * 400 MismatchingResourceGroupNameWithUrl - The provided resource group name did not match the name in the Url.\n\n * 400 MismatchingServerNameWithUrl - The provided server name did not match the name in the Url.\n\n * 400 InvalidIdentifier - The identifier contains NULL or an invalid unicode character.\n\n * 400 DatabaseNameInUse - Database already exists. Choose a different database name.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 404 SourceDatabaseNotFound - The source database does not exist.\n\n * 409 InvalidOperationForDatabaseInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship." + } + }, + "x-ms-examples": { + "Renames a database.": { + "$ref": "./examples/RenameDatabase.json" + } + } + } + } + }, + "definitions": { + "DatabaseListResult": { + "description": "A list of databases.", + "type": "object", + "properties": { + "value": { + "description": "Array of results.", + "type": "array", + "items": { + "$ref": "#/definitions/Database" + }, + "readOnly": true + }, + "nextLink": { + "description": "Link to retrieve next page of results.", + "type": "string", + "readOnly": true + } + } + }, + "Sku": { + "description": "An ARM Resource SKU.", + "required": [ + "name" + ], + "type": "object", + "properties": { + "name": { + "description": "The name of the SKU, typically, a letter + Number code, e.g. P3.", + "type": "string" + }, + "tier": { + "description": "The tier or edition of the particular SKU, e.g. Basic, Premium.", + "type": "string" + }, + "size": { + "description": "Size of the particular SKU", + "type": "string" + }, + "family": { + "description": "If the service has different generations of hardware, for the same SKU, then that can be captured here.", + "type": "string" + }, + "capacity": { + "format": "int32", + "description": "Capacity of the particular SKU.", + "type": "integer" + } + } + }, + "DatabaseProperties": { + "description": "The database's properties.", + "type": "object", + "properties": { + "createMode": { + "description": "Specifies the mode of database creation.\r\n\r\nDefault: regular database creation.\r\n\r\nCopy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database.\r\n\r\nSecondary: creates a database as a secondary replica of an existing database. sourceDatabaseId must be specified as the resource ID of the existing primary database.\r\n\r\nPointInTimeRestore: Creates a database by restoring a point in time backup of an existing database. sourceDatabaseId must be specified as the resource ID of the existing database, and restorePointInTime must be specified.\r\n\r\nRecovery: Creates a database by restoring a geo-replicated backup. sourceDatabaseId must be specified as the recoverable database resource ID to restore.\r\n\r\nRestore: Creates a database by restoring a backup of a deleted database. sourceDatabaseId must be specified. If sourceDatabaseId is the database's original resource ID, then sourceDatabaseDeletionDate must be specified. Otherwise sourceDatabaseId must be the restorable dropped database resource ID and sourceDatabaseDeletionDate is ignored. restorePointInTime may also be specified to restore from an earlier point in time.\r\n\r\nRestoreLongTermRetentionBackup: Creates a database by restoring from a long term retention vault. recoveryServicesRecoveryPointResourceId must be specified as the recovery point resource ID.\r\n\r\nCopy, Secondary, and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition.", + "enum": [ + "Default", + "Copy", + "Secondary", + "PointInTimeRestore", + "Restore", + "Recovery", + "RestoreExternalBackup", + "RestoreExternalBackupSecondary", + "RestoreLongTermRetentionBackup", + "OnlineSecondary" + ], + "type": "string", + "x-ms-enum": { + "name": "CreateMode", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "collation": { + "description": "The collation of the database.", + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "maxSizeBytes": { + "format": "int64", + "description": "The max size of the database expressed in bytes.", + "type": "integer" + }, + "sampleName": { + "description": "The name of the sample schema to apply when creating this database.", + "enum": [ + "AdventureWorksLT", + "WideWorldImportersStd", + "WideWorldImportersFull" + ], + "type": "string", + "x-ms-enum": { + "name": "SampleName", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "elasticPoolId": { + "description": "The resource identifier of the elastic pool containing this database.", + "type": "string" + }, + "sourceDatabaseId": { + "description": "The resource identifier of the source database associated with create operation of this database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "status": { + "description": "The status of the database.", + "enum": [ + "Online", + "Restoring", + "RecoveryPending", + "Recovering", + "Suspect", + "Offline", + "Standby", + "Shutdown", + "EmergencyMode", + "AutoClosed", + "Copying", + "Creating", + "Inaccessible", + "OfflineSecondary", + "Pausing", + "Paused", + "Resuming", + "Scaling", + "OfflineChangingDwPerformanceTiers", + "OnlineChangingDwPerformanceTiers", + "Disabled" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "DatabaseStatus", + "modelAsString": true + } + }, + "databaseId": { + "format": "uuid", + "description": "The ID of the database.", + "type": "string", + "readOnly": true + }, + "creationDate": { + "format": "date-time", + "description": "The creation date of the database (ISO8601 format).", + "type": "string", + "readOnly": true + }, + "currentServiceObjectiveName": { + "description": "The current service level objective name of the database.", + "type": "string", + "readOnly": true + }, + "requestedServiceObjectiveName": { + "description": "The requested service level objective name of the database.", + "type": "string", + "readOnly": true + }, + "defaultSecondaryLocation": { + "description": "The default secondary region for this database.", + "type": "string", + "readOnly": true + }, + "failoverGroupId": { + "description": "Failover Group resource identifier that this database belongs to.", + "type": "string", + "readOnly": true + }, + "restorePointInTime": { + "format": "date-time", + "description": "Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "sourceDatabaseDeletionDate": { + "format": "date-time", + "description": "Specifies the time that the database was deleted.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "recoveryServicesRecoveryPointId": { + "description": "The resource identifier of the recovery point associated with create operation of this database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "longTermRetentionBackupResourceId": { + "description": "The resource identifier of the long term retention backup associated with create operation of this database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "recoverableDatabaseId": { + "description": "The resource identifier of the recoverable database associated with create operation of this database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "restorableDroppedDatabaseId": { + "description": "The resource identifier of the restorable dropped database associated with create operation of this database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "catalogCollation": { + "description": "Collation of the metadata catalog.", + "enum": [ + "DATABASE_DEFAULT", + "SQL_Latin1_General_CP1_CI_AS" + ], + "type": "string", + "x-ms-enum": { + "name": "CatalogCollationType", + "modelAsString": true + }, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "zoneRedundant": { + "description": "Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones.", + "type": "boolean" + }, + "licenseType": { + "description": "The license type to apply for this database.", + "enum": [ + "LicenseIncluded", + "BasePrice" + ], + "type": "string", + "x-ms-enum": { + "name": "DatabaseLicenseType", + "modelAsString": true + } + }, + "maxLogSizeBytes": { + "format": "int64", + "description": "The max log size for this database.", + "type": "integer", + "readOnly": true + }, + "earliestRestoreDate": { + "format": "date-time", + "description": "This records the earliest start date and time that restore is available for this database (ISO8601 format).", + "type": "string", + "readOnly": true + }, + "readScale": { + "description": "The state of read-only routing. If enabled, connections that have application intent set to readonly in their connection string may be routed to a readonly secondary replica in the same region.", + "enum": [ + "Enabled", + "Disabled" + ], + "type": "string", + "x-ms-enum": { + "name": "DatabaseReadScale", + "modelAsString": true + }, + "x-ms-mutability": [ + "read", + "update" + ] + }, + "readReplicaCount": { + "format": "int32", + "description": "The number of readonly secondary replicas associated with the database.", + "type": "integer" + }, + "currentSku": { + "$ref": "#/definitions/Sku", + "description": "The name and tier of the SKU.", + "readOnly": true + }, + "autoPauseDelay": { + "format": "int32", + "description": "Time in minutes after which database is automatically paused. A value of -1 means that automatic pause is disabled", + "type": "integer" + }, + "storageAccountType": { + "description": "The storage account type used to store backups for this database. Currently the only supported option is GRS (GeoRedundantStorage).", + "enum": [ + "GRS", + "LRS", + "ZRS" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageAccountType", + "modelAsString": true + } + }, + "minCapacity": { + "format": "double", + "description": "Minimal capacity that database will always have allocated, if not paused", + "type": "number" + }, + "pausedDate": { + "format": "date-time", + "description": "The date when database was paused by user configuration or action(ISO8601 format). Null if the database is ready.", + "type": "string", + "readOnly": true + }, + "resumedDate": { + "format": "date-time", + "description": "The date when database was resumed by user action or database login (ISO8601 format). Null if the database is paused.", + "type": "string", + "readOnly": true + } + } + }, + "Resource": { + "description": "ARM resource.", + "type": "object", + "properties": { + "id": { + "description": "Resource ID.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Resource name.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Resource type.", + "type": "string", + "readOnly": true + } + }, + "x-ms-azure-resource": true + }, + "TrackedResource": { + "description": "ARM tracked top level resource.", + "required": [ + "location" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "location": { + "description": "Resource location.", + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "tags": { + "description": "Resource tags.", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "Database": { + "description": "A database resource.", + "required": [ + "location" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/TrackedResource" + } + ], + "properties": { + "sku": { + "$ref": "#/definitions/Sku", + "description": "The database SKU.\r\n\r\nThe list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API or one of the following commands:\r\n\r\n```azurecli\r\naz sql db list-editions -l -o table\r\n````\r\n\r\n```powershell\r\nGet-AzSqlServerServiceObjective -Location \r\n````\r\n" + }, + "kind": { + "description": "Kind of database. This is metadata used for the Azure portal experience.", + "type": "string", + "readOnly": true + }, + "managedBy": { + "description": "Resource that manages the database.", + "type": "string", + "readOnly": true + }, + "properties": { + "$ref": "#/definitions/DatabaseProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + } + } + }, + "DatabaseUpdate": { + "description": "A database resource.", + "type": "object", + "properties": { + "sku": { + "$ref": "#/definitions/Sku", + "description": "The name and tier of the SKU." + }, + "properties": { + "$ref": "#/definitions/DatabaseProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + }, + "tags": { + "description": "Resource tags.", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "ImportExportDatabaseDefinition": { + "description": "Contains the information necessary to perform import/export operation.", + "required": [ + "storageKeyType", + "storageKey", + "storageUri", + "administratorLogin", + "administratorLoginPassword" + ], + "type": "object", + "properties": { + "databaseName": { + "description": "Name of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "edition": { + "description": "Edition of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "serviceObjectiveName": { + "description": "Service level objective name of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "maxSizeBytes": { + "description": "Max size in bytes for the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageKeyType": { + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "storageKey": { + "description": "Storage key.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageUri": { + "description": "Storage Uri.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLogin": { + "description": "Administrator login name.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLoginPassword": { + "description": "Administrator login password.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "authenticationType": { + "description": "Authentication type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "networkIsolation": { + "$ref": "#/definitions/NetworkIsolationSettings", + "description": "Optional resource information to enable network isolation for request.", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "NetworkIsolationSettings": { + "description": "Contains the ARM resources for which to create private endpoint connection.", + "type": "object", + "properties": { + "storageAccountResourceId": { + "description": "The resource id for the storage account used to store BACPAC file. If set, private endpoint connection will be created for the storage account. Must match storage account used for StorageUri parameter.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "sqlServerResourceId": { + "description": "The resource id for the SQL server which is the target of this request. If set, private endpoint connection will be created for the SQL server. Must match server which is target of the operation.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "ImportExportOperationResultProperties": { + "description": "Contains the operation result properties for import/export operation.", + "type": "object", + "properties": { + "requestId": { + "format": "uuid", + "description": "Request Id.", + "type": "string", + "readOnly": true + }, + "requestType": { + "description": "Request type.", + "type": "string", + "readOnly": true + }, + "queuedTime": { + "description": "Queued time.", + "type": "string", + "readOnly": true + }, + "lastModifiedTime": { + "description": "Last modified time.", + "type": "string", + "readOnly": true + }, + "blobUri": { + "description": "Blob Uri.", + "type": "string", + "readOnly": true + }, + "serverName": { + "description": "Server name.", + "type": "string", + "readOnly": true + }, + "databaseName": { + "description": "Database name.", + "type": "string", + "readOnly": true + }, + "status": { + "description": "Operation status.", + "type": "string", + "readOnly": true + }, + "errorMessage": { + "description": "Error message.", + "type": "string", + "readOnly": true + }, + "privateEndpointConnections": { + "description": "Gets the status of private endpoints associated with this request.", + "type": "array", + "items": { + "$ref": "#/definitions/PrivateEndpointConnectionRequestStatus" + }, + "readOnly": true + } + } + }, + "PrivateEndpointConnectionRequestStatus": { + "description": "Contains the private endpoint connection requests status.", + "type": "object", + "properties": { + "privateLinkServiceId": { + "description": "Resource id for which the private endpoint is created.", + "type": "string", + "readOnly": true + }, + "privateEndpointConnectionName": { + "description": "The connection name for the private endpoint.", + "type": "string", + "readOnly": true + }, + "status": { + "description": "Status of this private endpoint connection.", + "type": "string", + "readOnly": true + } + } + }, + "ProxyResource": { + "description": "ARM proxy resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": {} + }, + "ImportExportOperationResult": { + "description": "An ImportExport operation result resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "$ref": "#/definitions/ImportExportOperationResultProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + } + } + }, + "ResourceMoveDefinition": { + "description": "Contains the information necessary to perform a resource move (rename).", + "required": [ + "id" + ], + "type": "object", + "properties": { + "id": { + "description": "The target ID for the resource", + "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" + }, + "ManagedInstanceNameParameter": { + "name": "managedInstanceName", + "in": "path", + "description": "The name of the managed instance.", + "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" + }, + "BlobAuditingPolicyNameParameter": { + "name": "blobAuditingPolicyName", + "in": "path", + "description": "The name of the blob auditing policy.", + "required": true, + "type": "string", + "enum": [ + "default" + ], + "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" + }, + "VirtualClusterNameParameter": { + "name": "virtualClusterName", + "in": "path", + "description": "The name of the virtual cluster.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "WorkspaceNameParameter": { + "name": "workspaceName", + "in": "path", + "description": "The name of the workspace.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "SqlPoolNameParameter": { + "name": "sqlPoolName", + "in": "path", + "description": "The name of the sql pool.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "SqlDatabaseNameParameter": { + "name": "sqlDatabaseName", + "in": "path", + "description": "The name of the sql database.", + "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/preview/2020-02-02-preview/examples/ExportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json new file mode 100644 index 000000000000..dd5c240eb87a --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2020-02-02-preview", + "parameters": { + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json new file mode 100644 index 000000000000..5a6a1f994c4d --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2020-02-02-preview", + "parameters": { + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql", + "networkIsolation": { + "sqlServerResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr", + "storageAccountResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Storage/storageAccounts/test-privatelink" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json new file mode 100644 index 000000000000..2df3f9ef41a5 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2020-02-02-preview", + "parameters": { + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json new file mode 100644 index 000000000000..827dfd1e9375 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2020-02-02-preview", + "parameters": { + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql", + "networkIsolation": { + "sqlServerResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr", + "storageAccountResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Storage/storageAccounts/test-privatelink" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json new file mode 100644 index 000000000000..29c472af7ca4 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2020-02-02-preview", + "parameters": { + "databaseName": "testdb", + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json new file mode 100644 index 000000000000..8275aeec3e82 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2020-02-02-preview", + "parameters": { + "databaseName": "testdb", + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql", + "networkIsolation": { + "sqlServerResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr", + "storageAccountResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Storage/storageAccounts/test-privatelink" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json new file mode 100644 index 000000000000..b399288c5e9b --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json @@ -0,0 +1,1093 @@ +{ + "swagger": "2.0", + "info": { + "version": "2020-02-02-preview", + "title": "SqlManagementClient", + "description": "The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities." + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import": { + "post": { + "tags": [ + "Servers" + ], + "description": "Imports a bacpac into a new database.", + "operationId": "Servers_Import", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The database import request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/ImportExportDatabaseDefinition" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully imported the database.", + "schema": { + "$ref": "#/definitions/ImportExportOperationResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." + }, + "202": { + "description": "Importing the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Imports to a new database.": { + "$ref": "./examples/ImportNewDatabase.json" + }, + "Imports to a new database, using private link for the SQL server and storage account.": { + "$ref": "./examples/ImportNewDatabaseWithNetworkIsolation.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers": { + "get": { + "tags": [ + "Servers" + ], + "description": "Gets a list of servers in a resource groups.", + "operationId": "Servers_ListByResourceGroup", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved the list of servers.", + "schema": { + "$ref": "#/definitions/ServerListResult" + } + }, + "default": { + "description": "*** Error Responses: ***" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "List servers by resource group": { + "$ref": "./examples/ServerListByResourceGroup.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}": { + "get": { + "tags": [ + "Servers" + ], + "description": "Gets a server.", + "operationId": "Servers_Get", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved the specified server.", + "schema": { + "$ref": "#/definitions/Server" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 404 ResourceNotFound - The requested resource was not found." + } + }, + "x-ms-examples": { + "Get server": { + "$ref": "./examples/ServerGet.json" + } + } + }, + "put": { + "tags": [ + "Servers" + ], + "description": "Creates or updates a server.", + "operationId": "Servers_CreateOrUpdate", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The requested server resource state.", + "required": true, + "schema": { + "$ref": "#/definitions/Server" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully updated the server.", + "schema": { + "$ref": "#/definitions/Server" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 PECsNotExistingToDenyPublicNetworkAccess - Unable to set Deny Public Network Access to Yes since there is no private endpoint enabled to access the server. Please set up private endpoints and retry the operation (https://docs.microsoft.com/azure/sql-database/sql-database-private-endpoint-overview#how-to-set-up-private-link-for-azure-sql-database).\n\n * 400 NameAlreadyExists - The provided name already exists.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 InvalidLoginName - The provided login name is invalid.\n\n * 400 InvalidUsername - Supplied user name contains invalid characters.\n\n * 400 PasswordTooShort - The provided password is too short\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 PasswordTooLong - The provided password is too long.\n\n * 400 PasswordNotComplex - The provided password is not complex enough.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidParameterValue - An invalid value was given to a parameter.\n\n * 400 InvalidLocation - An invalid location was specified.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 400 InvalidIdentifier - The identifier contains NULL or an invalid unicode character.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 RegionDoesNotAllowProvisioning - The selected location is not accepting new Windows Azure SQL Database servers. This may change at a later time.\n\n * 400 InvalidMinimalTlsVersion - Invalid minimal TLS version.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 UpsertLogicalServerRequestAlreadyInProgress - An ongoing logical server request is already in progress, please try your request again later.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingServerOperation - An operation is currently in progress for the server.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ServerQuotaExceeded - Server cannot be added to a subscription because it will exceed quota.\n\n * 409 ServerAlreadyExists - Duplicate server name.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 ConflictingSubscriptionOperation - An operation is currently in progress for the subscription.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources." + }, + "202": { + "description": "Accepted" + }, + "201": { + "description": "Successfully created the server.", + "schema": { + "$ref": "#/definitions/Server" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Create server": { + "$ref": "./examples/ServerCreate.json" + } + } + }, + "delete": { + "tags": [ + "Servers" + ], + "description": "Deletes a server.", + "operationId": "Servers_Delete", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully deleted the server." + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 ConflictingServerOperation - An operation is currently in progress for the server.\n\n * 409 DropLogicalServerAlreadyInProgress - Server is already being dropped.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources." + }, + "202": { + "description": "Accepted" + }, + "204": { + "description": "The specified server does not exist." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Delete server": { + "$ref": "./examples/ServerDelete.json" + } + } + }, + "patch": { + "tags": [ + "Servers" + ], + "description": "Updates a server.", + "operationId": "Servers_Update", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The requested server resource state.", + "required": true, + "schema": { + "$ref": "#/definitions/ServerUpdate" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully updated the server.", + "schema": { + "$ref": "#/definitions/Server" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 PECsNotExistingToDenyPublicNetworkAccess - Unable to set Deny Public Network Access to Yes since there is no private endpoint enabled to access the server. Please set up private endpoints and retry the operation (https://docs.microsoft.com/azure/sql-database/sql-database-private-endpoint-overview#how-to-set-up-private-link-for-azure-sql-database).\n\n * 400 NameAlreadyExists - The provided name already exists.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 InvalidLoginName - The provided login name is invalid.\n\n * 400 InvalidUsername - Supplied user name contains invalid characters.\n\n * 400 PasswordTooShort - The provided password is too short\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 PasswordTooLong - The provided password is too long.\n\n * 400 PasswordNotComplex - The provided password is not complex enough.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidParameterValue - An invalid value was given to a parameter.\n\n * 400 InvalidLocation - An invalid location was specified.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 400 InvalidIdentifier - The identifier contains NULL or an invalid unicode character.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 RegionDoesNotAllowProvisioning - The selected location is not accepting new Windows Azure SQL Database servers. This may change at a later time.\n\n * 400 InvalidMinimalTlsVersion - Invalid minimal TLS version.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 UpsertLogicalServerRequestAlreadyInProgress - An ongoing logical server request is already in progress, please try your request again later.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingServerOperation - An operation is currently in progress for the server.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ServerQuotaExceeded - Server cannot be added to a subscription because it will exceed quota.\n\n * 409 ServerAlreadyExists - Duplicate server name.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 ConflictingSubscriptionOperation - An operation is currently in progress for the subscription.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources." + }, + "202": { + "description": "Accepted" + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Update a server": { + "$ref": "./examples/ServerUpdate.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/servers": { + "get": { + "tags": [ + "Servers" + ], + "description": "Gets a list of all servers in the subscription.", + "operationId": "Servers_List", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved the list of servers.", + "schema": { + "$ref": "#/definitions/ServerListResult" + } + }, + "default": { + "description": "*** Error Responses: ***" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "List servers": { + "$ref": "./examples/ServerList.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/checkNameAvailability": { + "post": { + "tags": [ + "Servers" + ], + "description": "Determines whether a resource can be created with the specified name.", + "operationId": "Servers_CheckNameAvailability", + "parameters": [ + { + "name": "parameters", + "in": "body", + "description": "The name availability request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityRequest" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully completed the availability check.", + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityResponse" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 InvalidNameAvailabilityRequest - The check name availability request is invalid.\n\n * 400 UnknownNameType - Unknown resource type specified for a subscription level name availability check." + } + }, + "x-ms-examples": { + "Check for a server name that already exists": { + "$ref": "./examples/CheckNameAvailabilityServerAlreadyExists.json" + }, + "Check for a server name that is available": { + "$ref": "./examples/CheckNameAvailabilityServerAvailable.json" + }, + "Check for a server name that is invalid": { + "$ref": "./examples/CheckNameAvailabilityServerInvalid.json" + } + } + } + } + }, + "definitions": { + "ImportExportDatabaseDefinition": { + "description": "Contains the information necessary to perform import/export operation.", + "required": [ + "storageKeyType", + "storageKey", + "storageUri", + "administratorLogin", + "administratorLoginPassword" + ], + "type": "object", + "properties": { + "databaseName": { + "description": "Name of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "edition": { + "description": "Edition of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "serviceObjectiveName": { + "description": "Service level objective name of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "maxSizeBytes": { + "description": "Max size in bytes for the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageKeyType": { + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "storageKey": { + "description": "Storage key.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageUri": { + "description": "Storage Uri.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLogin": { + "description": "Administrator login name.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLoginPassword": { + "description": "Administrator login password.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "authenticationType": { + "description": "Authentication type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "networkIsolation": { + "$ref": "#/definitions/NetworkIsolationSettings", + "description": "Optional resource information to enable network isolation for request.", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "NetworkIsolationSettings": { + "description": "Contains the ARM resources for which to create private endpoint connection.", + "type": "object", + "properties": { + "storageAccountResourceId": { + "description": "The resource id for the storage account used to store BACPAC file. If set, private endpoint connection will be created for the storage account. Must match storage account used for StorageUri parameter.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "sqlServerResourceId": { + "description": "The resource id for the SQL server which is the target of this request. If set, private endpoint connection will be created for the SQL server. Must match server which is target of the operation.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "ImportExportOperationResultProperties": { + "description": "Contains the operation result properties for import/export operation.", + "type": "object", + "properties": { + "requestId": { + "format": "uuid", + "description": "Request Id.", + "type": "string", + "readOnly": true + }, + "requestType": { + "description": "Request type.", + "type": "string", + "readOnly": true + }, + "queuedTime": { + "description": "Queued time.", + "type": "string", + "readOnly": true + }, + "lastModifiedTime": { + "description": "Last modified time.", + "type": "string", + "readOnly": true + }, + "blobUri": { + "description": "Blob Uri.", + "type": "string", + "readOnly": true + }, + "serverName": { + "description": "Server name.", + "type": "string", + "readOnly": true + }, + "databaseName": { + "description": "Database name.", + "type": "string", + "readOnly": true + }, + "status": { + "description": "Operation status.", + "type": "string", + "readOnly": true + }, + "errorMessage": { + "description": "Error message.", + "type": "string", + "readOnly": true + }, + "privateEndpointConnections": { + "description": "Gets the status of private endpoints associated with this request.", + "type": "array", + "items": { + "$ref": "#/definitions/PrivateEndpointConnectionRequestStatus" + }, + "readOnly": true + } + } + }, + "PrivateEndpointConnectionRequestStatus": { + "description": "Contains the private endpoint connection requests status.", + "type": "object", + "properties": { + "privateLinkServiceId": { + "description": "Resource id for which the private endpoint is created.", + "type": "string", + "readOnly": true + }, + "privateEndpointConnectionName": { + "description": "The connection name for the private endpoint.", + "type": "string", + "readOnly": true + }, + "status": { + "description": "Status of this private endpoint connection.", + "type": "string", + "readOnly": true + } + } + }, + "Resource": { + "description": "ARM resource.", + "type": "object", + "properties": { + "id": { + "description": "Resource ID.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Resource name.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Resource type.", + "type": "string", + "readOnly": true + } + }, + "x-ms-azure-resource": true + }, + "ProxyResource": { + "description": "ARM proxy resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": {} + }, + "ImportExportOperationResult": { + "description": "An ImportExport operation result resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "$ref": "#/definitions/ImportExportOperationResultProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + } + } + }, + "ServerListResult": { + "description": "A list of servers.", + "type": "object", + "properties": { + "value": { + "description": "Array of results.", + "type": "array", + "items": { + "$ref": "#/definitions/Server" + }, + "readOnly": true + }, + "nextLink": { + "description": "Link to retrieve next page of results.", + "type": "string", + "readOnly": true + } + } + }, + "ResourceIdentity": { + "description": "Azure Active Directory identity configuration for a resource.", + "type": "object", + "properties": { + "principalId": { + "format": "uuid", + "description": "The Azure Active Directory principal id.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.", + "enum": [ + "None", + "SystemAssigned" + ], + "type": "string", + "x-ms-enum": { + "name": "IdentityTypeWithNone", + "modelAsString": true + } + }, + "tenantId": { + "format": "uuid", + "description": "The Azure Active Directory tenant id.", + "type": "string", + "readOnly": true + } + } + }, + "ServerProperties": { + "description": "The properties of a server.", + "type": "object", + "properties": { + "administratorLogin": { + "description": "Administrator username for the server. Once created it cannot be changed.", + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "administratorLoginPassword": { + "description": "The administrator login password (required for server creation).", + "type": "string", + "x-ms-mutability": [ + "create", + "update" + ] + }, + "version": { + "description": "The version of the server.", + "type": "string" + }, + "state": { + "description": "The state of the server.", + "type": "string", + "readOnly": true + }, + "fullyQualifiedDomainName": { + "description": "The fully qualified domain name of the server.", + "type": "string", + "readOnly": true + }, + "privateEndpointConnections": { + "description": "List of private endpoint connections on a server", + "type": "array", + "items": { + "$ref": "#/definitions/ServerPrivateEndpointConnection" + }, + "readOnly": true + }, + "minimalTlsVersion": { + "description": "Minimal TLS version. Allowed values: '1.0', '1.1', '1.2'", + "type": "string" + }, + "publicNetworkAccess": { + "description": "Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'", + "enum": [ + "Enabled", + "Disabled" + ], + "type": "string", + "x-ms-enum": { + "name": "ServerPublicNetworkAccess", + "modelAsString": true + } + } + } + }, + "ServerPrivateEndpointConnection": { + "description": "A private endpoint connection under a server", + "type": "object", + "properties": { + "id": { + "description": "Resource ID.", + "type": "string", + "readOnly": true + }, + "properties": { + "$ref": "#/definitions/PrivateEndpointConnectionProperties", + "description": "Private endpoint connection properties", + "readOnly": true + } + } + }, + "PrivateEndpointConnectionProperties": { + "description": "Properties of a private endpoint connection.", + "type": "object", + "properties": { + "privateEndpoint": { + "$ref": "#/definitions/PrivateEndpointProperty", + "description": "Private endpoint which the connection belongs to." + }, + "privateLinkServiceConnectionState": { + "$ref": "#/definitions/PrivateLinkServiceConnectionStateProperty", + "description": "Connection state of the private endpoint connection." + }, + "provisioningState": { + "description": "State of the private endpoint connection.", + "enum": [ + "Approving", + "Ready", + "Dropping", + "Failed", + "Rejecting" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "PrivateEndpointProvisioningState", + "modelAsString": true + } + } + } + }, + "PrivateEndpointProperty": { + "type": "object", + "properties": { + "id": { + "description": "Resource id of the private endpoint.", + "type": "string" + } + }, + "x-ms-azure-resource": true + }, + "PrivateLinkServiceConnectionStateProperty": { + "required": [ + "status", + "description" + ], + "type": "object", + "properties": { + "status": { + "description": "The private link service connection status.", + "enum": [ + "Approved", + "Pending", + "Rejected", + "Disconnected" + ], + "type": "string", + "x-ms-enum": { + "name": "PrivateLinkServiceConnectionStateStatus", + "modelAsString": true + } + }, + "description": { + "description": "The private link service connection description.", + "type": "string" + }, + "actionsRequired": { + "description": "The actions required for private link service connection.", + "enum": [ + "None" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "PrivateLinkServiceConnectionStateActionsRequire", + "modelAsString": true + } + } + } + }, + "TrackedResource": { + "description": "ARM tracked top level resource.", + "required": [ + "location" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": { + "location": { + "description": "Resource location.", + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "tags": { + "description": "Resource tags.", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "Server": { + "description": "An Azure SQL Database server.", + "required": [ + "location" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/TrackedResource" + } + ], + "properties": { + "identity": { + "$ref": "#/definitions/ResourceIdentity", + "description": "The Azure Active Directory identity of the server.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "kind": { + "description": "Kind of sql server. This is metadata used for the Azure portal experience.", + "type": "string", + "readOnly": true + }, + "properties": { + "$ref": "#/definitions/ServerProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + } + } + }, + "ServerUpdate": { + "description": "An update request for an Azure SQL Database server.", + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/ServerProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + }, + "tags": { + "description": "Resource tags.", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "CheckNameAvailabilityRequest": { + "description": "A request to check whether the specified name for a resource is available.", + "required": [ + "name", + "type" + ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "enum": [ + "Microsoft.Sql/servers" + ], + "type": "string", + "x-ms-enum": { + "name": "CheckNameAvailabilityResourceType", + "modelAsString": false + } + } + } + }, + "CheckNameAvailabilityResponse": { + "description": "The result of a name availability check.", + "type": "object", + "properties": { + "name": { + "description": "The name whose availability was checked.", + "type": "string", + "readOnly": true + }, + "available": { + "description": "True if the name is available, otherwise false.", + "type": "boolean", + "readOnly": true + }, + "reason": { + "description": "The reason code explaining why the name is unavailable. Will be undefined if the name is available.", + "enum": [ + "Invalid", + "AlreadyExists" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "CheckNameAvailabilityReason", + "modelAsString": false + } + }, + "message": { + "description": "A message explaining why the name is unavailable. Will be undefined if the name is available.", + "type": "string", + "readOnly": true + } + } + } + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "description": "The subscription ID that identifies an Azure subscription.", + "required": true, + "type": "string", + "x-ms-parameter-location": "client" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "description": "The API version to use for the request.", + "required": true, + "type": "string", + "x-ms-parameter-location": "client" + }, + "ResourceGroupParameter": { + "name": "resourceGroupName", + "in": "path", + "description": "The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "ServerNameParameter": { + "name": "serverName", + "in": "path", + "description": "The name of the server.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "ManagedInstanceNameParameter": { + "name": "managedInstanceName", + "in": "path", + "description": "The name of the managed instance.", + "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" + }, + "BlobAuditingPolicyNameParameter": { + "name": "blobAuditingPolicyName", + "in": "path", + "description": "The name of the blob auditing policy.", + "required": true, + "type": "string", + "enum": [ + "default" + ], + "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" + }, + "VirtualClusterNameParameter": { + "name": "virtualClusterName", + "in": "path", + "description": "The name of the virtual cluster.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "WorkspaceNameParameter": { + "name": "workspaceName", + "in": "path", + "description": "The name of the workspace.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "SqlPoolNameParameter": { + "name": "sqlPoolName", + "in": "path", + "description": "The name of the sql pool.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "SqlDatabaseNameParameter": { + "name": "sqlDatabaseName", + "in": "path", + "description": "The name of the sql database.", + "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 From d80bf7a3337d2ac07a04bd230a8e4b3dcb724510 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 11 Aug 2020 16:29:01 -0700 Subject: [PATCH 02/43] Add missing example json --- ...ckNameAvailabilityServerAlreadyExists.json | 20 +++++ .../CheckNameAvailabilityServerAvailable.json | 18 ++++ .../CheckNameAvailabilityServerInvalid.json | 19 +++++ .../examples/CreateDatabaseCopyMode.json | 69 ++++++++++++++++ .../examples/CreateDatabaseDefaultMode.json | 70 ++++++++++++++++ .../examples/CreateDatabaseMin.json | 61 ++++++++++++++ .../examples/CreateDatabasePITRMode.json | 70 ++++++++++++++++ .../examples/CreateDatabaseRecoveryMode.json | 69 ++++++++++++++++ .../CreateDatabaseRestoreLtrBackup.json | 70 ++++++++++++++++ .../examples/CreateDatabaseRestoreMode.json | 70 ++++++++++++++++ .../examples/CreateDatabaseRestoreMode2.json | 69 ++++++++++++++++ .../examples/CreateDatabaseSecondaryMode.json | 69 ++++++++++++++++ .../CreateDwDatabaseByServiceObjective.json | 82 +++++++++++++++++++ ...ateHyperscaleDatabaseWithReadReplicas.json | 79 ++++++++++++++++++ ...CreateVCoreDatabaseByServiceObjective.json | 80 ++++++++++++++++++ .../CreateVCoreDatabaseBySkuNameCapacity.json | 77 +++++++++++++++++ ...eVCoreDatabaseBySkuTierFamilyCapacity.json | 78 ++++++++++++++++++ .../examples/DeleteDatabase.json | 14 ++++ .../examples/FailoverDatabase.json | 14 ++++ .../examples/GetDatabase.json | 34 ++++++++ .../examples/GetVCoreDatabase.json | 39 +++++++++ .../examples/ListDatabasesByElasticPool.json | 61 ++++++++++++++ .../examples/ListDatabasesByServer.json | 56 +++++++++++++ .../examples/ListVCoreDatabasesByServer.json | 63 ++++++++++++++ ...istVCoreInaccessibleDatabasesByServer.json | 42 ++++++++++ .../examples/PatchDatabase.json | 45 ++++++++++ .../examples/PatchVCoreDatabase.json | 47 +++++++++++ .../examples/PauseDatabase.json | 34 ++++++++ .../examples/RenameDatabase.json | 15 ++++ .../examples/ResumeDatabase.json | 34 ++++++++ .../examples/ServerCreate.json | 80 ++++++++++++++++++ .../examples/ServerCreateMax.json | 60 ++++++++++++++ .../examples/ServerCreateMin.json | 48 +++++++++++ .../examples/ServerDelete.json | 13 +++ .../examples/ServerGet.json | 44 ++++++++++ .../examples/ServerList.json | 72 ++++++++++++++++ .../examples/ServerListByResourceGroup.json | 73 +++++++++++++++++ .../examples/ServerUpdate.json | 51 ++++++++++++ .../examples/ServerUpdateMax.json | 42 ++++++++++ .../examples/ServerUpdateMin.json | 36 ++++++++ .../examples/UpgradeDataWarehouse.json | 13 +++ 41 files changed, 2100 insertions(+) create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json new file mode 100644 index 000000000000..b533ff8f08e3 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "api-version": "2015-05-01-preview", + "parameters": { + "name": "server1", + "type": "Microsoft.Sql/servers" + } + }, + "responses": { + "200": { + "body": { + "name":"server1", + "available":false, + "reason":"AlreadyExists", + "message":"Specified server name is already used" + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json new file mode 100644 index 000000000000..119536535f7e --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json @@ -0,0 +1,18 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "api-version": "2015-05-01-preview", + "parameters": { + "name": "server1", + "type": "Microsoft.Sql/servers" + } + }, + "responses": { + "200": { + "body": { + "name":"server1", + "available":true + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json new file mode 100644 index 000000000000..4c4e49cff037 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "api-version": "2015-05-01-preview", + "parameters": { + "name": "SERVER1", + "type": "Microsoft.Sql/servers" + } + }, + "responses": { + "200": { + "body": { + "name":"SERVER1", + "available":false, + "reason":"Invalid", + "message":"Specified server name contains unsupported characters or is too long. Server name must be no longer than 63 characters long, contain only lower-case characters or digits, cannot contain \u0027.\u0027 or \u0027_\u0027 characters and can\u0027t start or end with \u0027-\u0027 character."} + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json new file mode 100644 index 000000000000..c888714f0480 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbcopy", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Copy", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": { } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json new file mode 100644 index 000000000000..b8736ea03a02 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Default", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824 + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": { } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json new file mode 100644 index 000000000000..871367c58ee5 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia" + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": { } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json new file mode 100644 index 000000000000..cad9460c0e21 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbpitr", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "PointInTimeRestore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "restorePointInTime": "2017-07-14T05:35:31.503Z" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", + "name": "dbpitr", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", + "name": "dbpitr", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": { } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json new file mode 100644 index 000000000000..2d02dcf5926d --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "restorableDroppedDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb2,131444841315030000" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": { } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json new file mode 100644 index 000000000000..100d97fb6ed8 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "testResourceGroup", + "serverName": "testServer", + "databaseName": "testDatabase", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "RestoreLongTermRetentionBackup", + "longTermRetentionBackupResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionServers/testServer/databases/testDatabase/longTermRetentionBackups/00000000-1111-2222-3333-444444444444;131637960820000000" + } + } + }, + + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testDatabase", + "name": "testDatabase", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testDatabase", + "name": "testDatabase", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json new file mode 100644 index 000000000000..5be22c3fb50e --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "sourceDatabaseDeletionDate": "2017-07-14T06:41:06.613Z" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": { } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json new file mode 100644 index 000000000000..0dc1bf0e377c --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": { } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json new file mode 100644 index 000000000000..b7f18f6e0ac5 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Secondary", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": { } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json new file mode 100644 index 000000000000..012f36d06668 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json @@ -0,0 +1,82 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdw", + "api-version": "2017-03-01-preview", + "parameters": { + "location": "westus", + "sku": { + "name": "DW1000c" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "DataWarehouse", + "tier": "DataWarehouse", + "capacity": 9000 + }, + "kind": "v12.0,user,datawarehouse,gen2", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 263882790666240, + "status": "Online", + "databaseId": "188784c9-d602-4684-86cf-e67b6f03551a", + "creationDate": "2019-04-24T06:46:14.99Z", + "currentServiceObjectiveName": "DW1000c", + "requestedServiceObjectiveName": "DW1000c", + "defaultSecondaryLocation": "eastus", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "readScale": "Disabled", + "readReplicaCount": 0, + "currentSku": { + "name": "DataWarehouse", + "tier": "DataWarehouse", + "capacity": 9000 + } + }, + "location": "westus", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdw", + "name": "testdw", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "DataWarehouse", + "tier": "DataWarehouse", + "capacity": 9000 + }, + "kind": "v12.0,user,datawarehouse,gen2", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 263882790666240, + "status": "Online", + "databaseId": "188784c9-d602-4684-86cf-e67b6f03551a", + "creationDate": "2019-04-24T06:46:14.99Z", + "currentServiceObjectiveName": "DW1000c", + "requestedServiceObjectiveName": "DW1000c", + "defaultSecondaryLocation": "eastus", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "readScale": "Disabled", + "readReplicaCount": 0, + "currentSku": { + "name": "DataWarehouse", + "tier": "DataWarehouse", + "capacity": 9000 + } + }, + "location": "westus", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdw", + "name": "testdw", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json new file mode 100644 index 000000000000..ba48154d3c5d --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json @@ -0,0 +1,79 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-10-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "HS_Gen4", + "tier": "Hyperscale", + "capacity": 1 + }, + "properties": { + "readReplicaCount": 3 + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "HS_Gen4", + "tier": "Hyperscale", + "family": "Gen4", + "capacity": 1 + }, + "kind": "v12.0,user,vcore,hyperscale", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": -1, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "HS_Gen4_1", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "readScale": "Enabled", + "readReplicaCount": 3 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "HS_Gen4", + "tier": "Hyperscale", + "family": "Gen4", + "capacity": 1 + }, + "kind": "v12.0,user,vcore,hyperscale", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": -1, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "HS_Gen4_1", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "readScale": "Enabled", + "readReplicaCount": 3 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json new file mode 100644 index 000000000000..7dae6aee65b6 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json @@ -0,0 +1,80 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-10-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "BC", + "family": "Gen4", + "capacity": 2 + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "family": "Gen4", + "capacity": 2 + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "family": "Gen4", + "capacity": 2 + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json new file mode 100644 index 000000000000..d86fb7c31820 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json @@ -0,0 +1,77 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-10-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "BC_Gen4", + "capacity": 2 + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "family": "Gen4", + "capacity": 2 + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "family": "Gen4", + "capacity": 2 + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json new file mode 100644 index 000000000000..f418610356b5 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json @@ -0,0 +1,78 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-10-01-preview", + "parameters": { + "location": "southeastasia", + "sku": { + "name": "BC_Gen4_2" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "family": "Gen4", + "capacity": 2 + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "201": { + "body": { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "family": "Gen4", + "capacity": 2 + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": + "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json new file mode 100644 index 000000000000..ed35085e9ec4 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json @@ -0,0 +1,14 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { }, + "204": { }, + "202": { } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json new file mode 100644 index 000000000000..04b6a792e5a6 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json @@ -0,0 +1,14 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "group1", + "serverName": "testServer", + "databaseName": "testDatabase", + "replicaType": "Primary", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": {}, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json new file mode 100644 index 000000000000..70e9298d0244 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json new file mode 100644 index 000000000000..62124ea4726e --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json @@ -0,0 +1,39 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "capacity": 2 + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json new file mode 100644 index 000000000000..8d7b94a8caa8 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "elasticPoolName": "pool1", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "sku": { + "name": "ElasticPool", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "elasticPoolId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/elasticPools/Pool1", + "status": "Online", + "databaseId": "bfe0735f-bc87-447f-b2c2-481f4b100614", + "creationDate": "2017-07-12T22:08:39.163Z", + "currentServiceObjectiveName": "ElasticPool", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/DB001", + "name": "DB001", + "type": "Microsoft.Sql/servers/databases" + }, + { + "sku": { + "name": "ElasticPool", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "elasticPoolId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/elasticPools/Pool1", + "status": "Online", + "databaseId": "82246152-3177-4357-b81c-a16d87ce3593", + "creationDate": "2017-07-12T22:10:10.773Z", + "currentServiceObjectiveName": "ElasticPool", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/DB002", + "name": "DB002", + "type": "Microsoft.Sql/servers/databases" + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json new file mode 100644 index 000000000000..b487148a6635 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json @@ -0,0 +1,56 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [{ + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + }, + { + "sku": { + "name": "System0", + "tier": "System" + }, + "kind": "v12.0,system", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 32212254720, + "status": "Online", + "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", + "creationDate": "2017-06-07T04:23:42.537Z", + "currentServiceObjectiveName": "System0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", + "name": "master", + "type": "Microsoft.Sql/servers/databases" + }] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json new file mode 100644 index 000000000000..48a370ef982c --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json @@ -0,0 +1,63 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "capacity": 2 + }, + "kind": "v12.0,user,vcore", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + }, + { + "sku": { + "name": "System0", + "tier": "System" + }, + "kind": "v12.0,system", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 32212254720, + "status": "Online", + "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", + "creationDate": "2017-06-07T04:23:42.537Z", + "currentServiceObjectiveName": "System0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", + "name": "master", + "type": "Microsoft.Sql/servers/databases" + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json new file mode 100644 index 000000000000..ebd8398b4682 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json @@ -0,0 +1,42 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2019-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "capacity": 2 + }, + "kind": "v12.0,user,vcore", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Inaccessible", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json new file mode 100644 index 000000000000..ecc2460ce7e9 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json @@ -0,0 +1,45 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", + "parameters": { + "sku": { + "name": "S1", + "tier": "Standard" + }, + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824 + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S1", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S1", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json new file mode 100644 index 000000000000..b0b211816a51 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json @@ -0,0 +1,47 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", + "parameters": { + "sku": { + "name": "BC_Gen4_4" + }, + "properties": { + "maxSizeBytes": 1073741824, + "licenseType": "LicenseIncluded" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "BC_Gen4_4", + "tier": "BusinessCritical", + "capacity": 4 + }, + "kind": "v12.0,user,vcore", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_4", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json new file mode 100644 index 000000000000..1759dd2d0a25 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdwdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "sku": { + + }, + "kind": "v12.0,user,datawarehouse", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 10995116277760, + "status": "Paused", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-07-13T02:04:26.187Z", + "currentServiceObjectiveName": "D1", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdwdb", + "name": "testdwdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json new file mode 100644 index 000000000000..2a5a534d8d02 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", + "parameters": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/newtestdb" + } + }, + "responses": { + "200": { } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json new file mode 100644 index 000000000000..20cf7dc71a28 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdwdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "sku": { + + }, + "kind": "v12.0,user,datawarehouse", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 10995116277760, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-07-13T02:04:26.187Z", + "currentServiceObjectiveName": "D1", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdwdb", + "name": "testdwdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json new file mode 100644 index 000000000000..9d78936231cb --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json @@ -0,0 +1,80 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "api-version": "2019-06-01-preview", + "parameters": { + "properties": { + "administratorLogin": "dummylogin", + "administratorLoginPassword": "Un53cuRE!" + }, + "location": "Japan East" + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready", + "privateEndpointConnections": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", + "properties": { + "provisioningState": "Ready", + "privateEndpoint": { + "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" + }, + "privateLinkServiceConnectionState": { + "status": "Approved", + "description": "Auto-approved", + "actionsRequired": "None" + } + } + } + ] + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready", + "privateEndpointConnections": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", + "properties": { + "provisioningState": "Ready", + "privateEndpoint": { + "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" + }, + "privateLinkServiceConnectionState": { + "status": "Approved", + "description": "Auto-approved", + "actionsRequired": "None" + } + } + } + ] + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json new file mode 100644 index 000000000000..b5fcc8866d50 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json @@ -0,0 +1,60 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "api-version": "2015-05-01-preview", + "parameters": { + "tags": { + "tagKey1": "TagValue1" + }, + "location": "Japan East", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "administratorLoginPassword": "Un53cuRE!", + "version": "12.0", + "state": "Ready" + } + } + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready" + } + } + }, + "201": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready" + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json new file mode 100644 index 000000000000..905d494a2846 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "api-version": "2015-05-01-preview", + "parameters": { + "properties": { + "administratorLogin": "dummylogin", + "administratorLoginPassword": "Un53cuRE!" + }, + "location": "Japan East" + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready" + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json new file mode 100644 index 000000000000..ed8ac172d95d --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json @@ -0,0 +1,13 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-6661", + "api-version": "2019-06-01-preview" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json new file mode 100644 index 000000000000..0871f866e81a --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json @@ -0,0 +1,44 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "api-version": "2019-06-01-preview" + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready", + "privateEndpointConnections": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", + "properties": { + "provisioningState": "Ready", + "privateEndpoint": { + "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" + }, + "privateLinkServiceConnectionState": { + "status": "Approved", + "description": "Auto-approved", + "actionsRequired": "None" + } + } + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json new file mode 100644 index 000000000000..bbd9b7a9ba24 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json @@ -0,0 +1,72 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "api-version": "2019-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready", + "privateEndpointConnections": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", + "properties": { + "provisioningState": "Ready", + "privateEndpoint": { + "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" + }, + "privateLinkServiceConnectionState": { + "status": "Approved", + "description": "Auto-approved", + "actionsRequired": "None" + } + } + } + ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661", + "name": "sqlcrudtest-6661", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-6661.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready", + "privateEndpointConnections": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", + "properties": { + "provisioningState": "Ready", + "privateEndpoint": { + "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" + }, + "privateLinkServiceConnectionState": { + "status": "Approved", + "description": "Auto-approved", + "actionsRequired": "None" + } + } + } + ] + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json new file mode 100644 index 000000000000..3ddf2af20c71 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json @@ -0,0 +1,73 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "api-version": "2019-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready", + "privateEndpointConnections": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", + "properties": { + "provisioningState": "Ready", + "privateEndpoint": { + "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" + }, + "privateLinkServiceConnectionState": { + "status": "Approved", + "description": "Auto-approved", + "actionsRequired": "None" + } + } + } + ] + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661", + "name": "sqlcrudtest-6661", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-6661.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready", + "privateEndpointConnections": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", + "properties": { + "provisioningState": "Ready", + "privateEndpoint": { + "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" + }, + "privateLinkServiceConnectionState": { + "status": "Approved", + "description": "Auto-approved", + "actionsRequired": "None" + } + } + } + ] + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json new file mode 100644 index 000000000000..f91af2bbabaa --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json @@ -0,0 +1,51 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "api-version": "2019-06-01-preview", + "parameters": { + "properties": { + "administratorLogin": "dummylogin", + "administratorLoginPassword": "Un53cuRE!" + } + } + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready", + "privateEndpointConnections": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", + "properties": { + "provisioningState": "Ready", + "privateEndpoint": { + "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" + }, + "privateLinkServiceConnectionState": { + "status": "Approved", + "description": "Auto-approved", + "actionsRequired": "None" + } + } + } + ] + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json new file mode 100644 index 000000000000..e49fc127294b --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json @@ -0,0 +1,42 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "api-version": "2015-05-01-preview", + "parameters": { + "tags": { + "tagKey1": "TagValue1" + }, + "location": "Japan East", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "administratorLoginPassword": "Un53cuRE!", + "version": "12.0", + "state": "Ready" + } + } + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready" + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json new file mode 100644 index 000000000000..f1d6971479a2 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "serverName": "sqlcrudtest-4645", + "api-version": "2015-05-01-preview", + "parameters": { + "properties": { + "administratorLogin": "dummylogin", + "administratorLoginPassword": "Un53cuRE!" + }, + "location": "Japan East" + } + }, + "responses": { + "200": { + "body": { + "tags": { + "tagKey1": "TagValue1" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", + "name": "sqlcrudtest-4645", + "type": "Microsoft.Sql/servers", + "location": "japaneast", + "kind": "v12.0", + "properties": { + "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", + "administratorLogin": "dummylogin", + "version": "12.0", + "state": "Ready" + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json new file mode 100644 index 000000000000..499aafe92cc7 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json @@ -0,0 +1,13 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdwdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "202": {} + } +} \ No newline at end of file From 7779bb79c65f8f3c0a0483d1f7ea751103da0398 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Fri, 14 Aug 2020 13:59:37 -0700 Subject: [PATCH 03/43] Update after merge DsMainDev --- .../preview/2020-02-02-preview/databases.json | 2 +- .../examples/AdministratorCreateOrUpdate.json | 47 + .../examples/AdministratorDelete.json | 14 + .../examples/AdministratorGet.json | 24 + .../examples/AdministratorList.json | 24 + .../examples/DatabaseSecurityAlertCreate.json | 12 +- .../DatabaseSecurityAlertCreateMax.json | 60 + .../DatabaseSecurityAlertCreateMin.json | 53 + .../examples/DatabaseSecurityAlertGet.json | 20 +- .../DatabaseSecurityAlertListByDatabase.json | 4 +- .../ElasticPoolCreateOrUpdateMax.json | 72 + .../ElasticPoolCreateOrUpdateMin.json | 61 + .../examples/ElasticPoolDelete.json | 17 + .../examples/ElasticPoolGet.json | 36 + .../examples/ElasticPoolListByServer.json | 81 + .../examples/ElasticPoolUpdateMax.json | 52 + .../examples/ElasticPoolUpdateMin.json | 37 + .../examples/FirewallRuleCreate.json | 38 + .../examples/FirewallRuleDelete.json | 17 + .../examples/FirewallRuleGet.json | 22 + .../examples/FirewallRuleList.json | 52 + .../examples/FirewallRuleReplace.json | 32 + .../examples/FirewallRuleUpdate.json | 39 + ...orableDroppedShortTermRetentionPolicy.json | 22 + .../examples/GetShortTermRetentionPolicy.json | 4 +- ...dShortTermRetentionPoliciesByDatabase.json | 26 + ...tShortTermRetentionPoliciesByDatabase.json | 4 +- .../LocationCapabilityListByLocation.json | 17926 ++++++++++++++++ ...ManagedDatabaseSecurityAlertCreateMax.json | 60 + ...ManagedDatabaseSecurityAlertCreateMin.json | 53 + .../ManagedDatabaseSecurityAlertGet.json | 30 + ...edDatabaseSecurityAlertListByDatabase.json | 33 + .../ManagedServerSecurityAlertCreate.json | 47 +- .../ManagedServerSecurityAlertCreateMax.json | 40 + .../ManagedServerSecurityAlertCreateMin.json | 36 + .../ManagedServerSecurityAlertGet.json | 38 +- ...agedServerSecurityAlertListByInstance.json | 21 +- .../examples/ServerSecurityAlertsCreate.json | 47 +- .../ServerSecurityAlertsCreateMax.json | 40 + .../ServerSecurityAlertsCreateMin.json | 37 + .../examples/ServerSecurityAlertsGet.json | 38 +- .../ServerSecurityAlertsListByServer.json | 3 +- .../examples/SqlAgentConfigurationGet.json | 32 + .../examples/SqlAgentConfigurationPut.json | 27 + .../examples/SubscriptionUsageGet.json | 30 + .../SubscriptionUsageListByLocation.json | 44 + ...orableDroppedShortTermRetentionPolicy.json | 28 + .../UpdateShortTermRetentionPolicy.json | 4 +- .../preview/2020-02-02-preview/servers.json | 362 +- 49 files changed, 19393 insertions(+), 455 deletions(-) create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json index 32f16b5bed51..8e8f282965a6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json @@ -1001,7 +1001,7 @@ "type": "boolean" }, "licenseType": { - "description": "The license type to apply for this database.", + "description": "The license type to apply for this database. `LicenseIncluded` if you need a license, or `BasePrice` if you have a license and are eligible for the Azure Hybrid Benefit.", "enum": [ "LicenseIncluded", "BasePrice" diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json new file mode 100644 index 000000000000..8a1e6387cc39 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json @@ -0,0 +1,47 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-4799", + "serverName": "sqlcrudtest-6440", + "administratorName": "ActiveDirectory", + "api-version": "2018-06-01-preview", + "name": "ActiveDirectory", + "parameters": { + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", + "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/ActiveDirectory", + "name": "ActiveDirectory", + "type": "Microsoft.Sql/servers/administrators", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", + "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/ActiveDirectory", + "name": "ActiveDirectory", + "type": "Microsoft.Sql/servers/administrators", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", + "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json new file mode 100644 index 000000000000..924c26348a52 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json @@ -0,0 +1,14 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-4799", + "serverName": "sqlcrudtest-6440", + "administratorName": "ActiveDirectory", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": {}, + "202": {}, + "204": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json new file mode 100644 index 000000000000..4930ee826edf --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-4799", + "serverName": "sqlcrudtest-6440", + "administratorName": "ActiveDirectory", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/ActiveDirectory", + "name": "ActiveDirectory", + "type": "Microsoft.Sql/servers/administrators", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", + "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json new file mode 100644 index 000000000000..4930ee826edf --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-4799", + "serverName": "sqlcrudtest-6440", + "administratorName": "ActiveDirectory", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/ActiveDirectory", + "name": "ActiveDirectory", + "type": "Microsoft.Sql/servers/administrators", + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", + "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json index 256ce2945593..d47d7d0e8aec 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json @@ -6,32 +6,36 @@ "databaseName": "testdb", "securityAlertPolicyName": "default", "api-version": "2020-02-02-preview", - "parameters": { + "databaseSecurityAlertPolicyResource": { "properties": { "state": "Enabled" } } }, + "responses": { "200": { "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "properties": { - "state": "Enabled" + "kind": "V12", + "properties": { + "state": "Enabled" } } }, + "201": { "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "kind": "V12", "properties": { "state": "Enabled" } } } } -} +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json new file mode 100644 index 000000000000..d948a7bb3d34 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json @@ -0,0 +1,60 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "databaseName": "testdb", + "securityAlertPolicyName": "default", + "api-version": "2018-06-01-preview", + "databaseSecurityAlertPolicyResource": { + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ "test@microsoft.com", "user@microsoft.com" ], + "disabledAlerts": [ "Sql_Injection", "Usage_Anomaly" ], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": ["test@microsoft.com","user@microsoft.com"], + "disabledAlerts": ["Sql_Injection","Usage_Anomaly"], + "retentionDays": 6, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": ["test@microsoft.com","user@microsoft.com"], + "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Disabled" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json new file mode 100644 index 000000000000..747b0e8ce7af --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json @@ -0,0 +1,53 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "databaseName": "testdb", + "securityAlertPolicyName": "default", + "api-version": "2018-06-01-preview", + "databaseSecurityAlertPolicyResource": { + "properties": { + "state": "Enabled" + } + } + }, + + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" + } + } + }, + + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json index 39d70f7603e3..c75f9cf55588 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json @@ -9,15 +9,17 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "properties": { - "state": "Enabled", - "creationTime": "2020-04-03T04:41:33.937Z" + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "location": "Japan East", + "kind": "V12", + "properties": { + "state": "Enabled", + "creationTime": "3/11/2020 12:00:00 AM" + } } - } } } -} +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertListByDatabase.json index 254adf741f33..21d13464cd07 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertListByDatabase.json @@ -14,9 +14,11 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "location": "Japan East", + "kind": "V12", "properties": { "state": "Enabled", - "creationTime": "2020-04-03T04:41:33.937Z" + "creationTime": "3/11/2020 12:00:00 AM" } } ] diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json new file mode 100644 index 000000000000..b9bebd074c12 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json @@ -0,0 +1,72 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-2369", + "serverName": "sqlcrudtest-8069", + "elasticPoolName": "sqlcrudtest-8102", + "api-version": "2017-10-01", + "parameters": { + "location": "Japan East", + "sku": { + "name": "GP_Gen4_2", + "tier": "GeneralPurpose", + "capacity": 2 + }, + "properties": { + "perDatabaseSettings": { + "minCapacity": 0.25, + "maxCapacity": 2.0 + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", + "name": "sqlcrudtest-8102", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "GP_Gen4_2", + "tier": "GeneralPurpose", + "capacity": 2 + }, + "properties": { + "creationDate": "2017-02-10T01:25:25.033Z", + "state": "Ready", + "maxSizeBytes": 5242880000, + "perDatabaseSettings": { + "minCapacity": 0.25, + "maxCapacity": 2.0 + } + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", + "name": "sqlcrudtest-8102", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "GP_Gen4_2", + "tier": "GeneralPurpose", + "capacity": 2 + }, + "properties": { + "creationDate": "2017-02-10T01:25:25.033Z", + "state": "Ready", + "maxSizeBytes": 5242880000, + "perDatabaseSettings": { + "minCapacity": 0.25, + "maxCapacity": 2.0 + } + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json new file mode 100644 index 000000000000..bb0e9bb14263 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-2369", + "serverName": "sqlcrudtest-8069", + "elasticPoolName": "sqlcrudtest-8102", + "api-version": "2017-10-01", + "parameters": { + "location": "Japan East" + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", + "name": "sqlcrudtest-8102", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "StandardPool", + "tier": "Standard", + "capacity": 100 + }, + "properties": { + "creationDate": "2017-02-10T01:25:25.033Z", + "state": "Ready", + "maxSizeBytes": 102400, + "perDatabaseSettings": { + "minCapacity": 0, + "maxCapacity": 100 + } + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", + "name": "sqlcrudtest-8102", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "StandardPool", + "tier": "Standard", + "capacity": 100 + }, + "properties": { + "creationDate": "2017-02-10T01:25:25.033Z", + "state": "Ready", + "maxSizeBytes": 102400, + "perDatabaseSettings": { + "minCapacity": 0, + "maxCapacity": 100 + } + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json new file mode 100644 index 000000000000..198cb66f70bb --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json @@ -0,0 +1,17 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-3129", + "serverName": "sqlcrudtest-228", + "elasticPoolName": "sqlcrudtest-3851", + "api-version": "2017-10-01" + }, + "responses": { + "200": { + "body": "" + }, + "204": { + "body": "" + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json new file mode 100644 index 000000000000..c6054e374a6a --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-2369", + "serverName": "sqlcrudtest-8069", + "elasticPoolName": "sqlcrudtest-8102", + "api-version": "2017-10-01" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", + "name": "sqlcrudtest-8102", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "GP_Gen4_2", + "tier": "GeneralPurpose", + "capacity": 2 + }, + "properties": { + "creationDate": "2017-10-10T01:25:25.033Z", + "state": "Ready", + "maxSizeBytes": 5242880000, + "perDatabaseSettings": { + "minCapacity": 0.25, + "maxCapacity": 1.0 + }, + "zoneRedundant": true, + "licenseType": "LicenseIncluded" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json new file mode 100644 index 000000000000..e72fa7cb748d --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json @@ -0,0 +1,81 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-2369", + "serverName": "sqlcrudtest-8069", + "api-version": "2017-10-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729", + "name": "sqlcrudtest-2729", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "GP_Gen4_2", + "tier": "GeneralPurpose", + "capacity": 2 + }, + "properties": { + "creationDate": "2017-02-10T01:27:21.32Z", + "state": "Ready", + "maxSizeBytes": 5242880000, + "perDatabaseSettings": { + "minCapacity": 0.25, + "maxCapacity": 1.0 + }, + "zoneRedundant": true, + "licenseType": "LicenseIncluded" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191", + "name": "sqlcrudtest-3191", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "BasicPool", + "tier": "Basic", + "capacity": 50 + }, + "properties": { + "creationDate": "2017-02-10T01:26:26.45Z", + "state": "Ready", + "maxSizeBytes": 5242880000, + "perDatabaseSettings": { + "minCapacity": 0, + "maxCapacity": 5 + } + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", + "name": "sqlcrudtest-8102", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "BasicPool", + "tier": "Basic", + "capacity": 50 + }, + "properties": { + "creationDate": "2017-02-10T01:25:25.033Z", + "state": "Ready", + "maxSizeBytes": 5242880000, + "perDatabaseSettings": { + "minCapacity": 0, + "maxCapacity": 5 + } + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json new file mode 100644 index 000000000000..e2799f4a725e --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json @@ -0,0 +1,52 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-2369", + "serverName": "sqlcrudtest-8069", + "elasticPoolName": "sqlcrudtest-8102", + "api-version": "2017-10-01", + "parameters": { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "capacity": 2 + }, + "properties": { + "perDatabaseSettings": { + "minCapacity": 0.25, + "maxCapacity": 1.0 + }, + "zoneRedundant": true, + "licenseType": "LicenseIncluded" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", + "name": "sqlcrudtest-8102", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "capacity": 2 + }, + "properties": { + "creationDate": "2017-02-10T01:27:21.32Z", + "state": "Ready", + "maxSizeBytes": 5242880000, + "perDatabaseSettings": { + "minCapacity": 0.25, + "maxCapacity": 1.0 + }, + "zoneRedundant": true, + "licenseType": "LicenseIncluded" + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json new file mode 100644 index 000000000000..b2b9c5679c96 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-2369", + "serverName": "sqlcrudtest-8069", + "elasticPoolName": "sqlcrudtest-8102", + "api-version": "2017-10-01", + "parameters": { + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", + "name": "sqlcrudtest-8102", + "type": "Microsoft.Sql/servers/elasticPools", + "location": "Japan East", + "kind": null, + "sku": { + "name": "BasicPool", + "tier": "Basic", + "capacity": 50 + }, + "properties": { + "creationDate": "2017-02-10T01:25:25.033Z", + "state": "Ready", + "maxSizeBytes": 5242880000, + "perDatabaseSettings": { + "minCapacity": 0, + "maxCapacity": 5 + } + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json new file mode 100644 index 000000000000..88b04c6ff4a0 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json @@ -0,0 +1,38 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "firewallrulecrudtest-12", + "serverName": "firewallrulecrudtest-6285", + "firewallRuleName": "firewallrulecrudtest-5370", + "api-version": "2015-05-01-preview", + "parameters": { + "properties": { + "startIpAddress": "0.0.0.3", + "endIpAddress": "0.0.0.3" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370", + "name": "firewallrulecrudtest-5370", + "type": "Microsoft.Sql/servers/firewallRules", + "properties": { + "startIpAddress": "0.0.0.3", + "endIpAddress": "0.0.0.3" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370", + "name": "firewallrulecrudtest-5370", + "properties": { + "startIpAddress": "0.0.0.3", + "endIpAddress": "0.0.0.3" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json new file mode 100644 index 000000000000..ea931a438ff2 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json @@ -0,0 +1,17 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "firewallrulecrudtest-9886", + "serverName": "firewallrulecrudtest-2368", + "firewallRuleName": "firewallrulecrudtest-7011", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": "" + }, + "204": { + "body": "" + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json new file mode 100644 index 000000000000..d244c64544af --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "firewallrulecrudtest-12", + "serverName": "firewallrulecrudtest-6285", + "firewallRuleName": "firewallrulecrudtest-2304", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-2304", + "name": "firewallrulecrudtest-2304", + "type": "Microsoft.Sql/servers/firewallRules", + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "0.0.0.0" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json new file mode 100644 index 000000000000..3668a81c246c --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json @@ -0,0 +1,52 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "firewallrulecrudtest-12", + "serverName": "firewallrulecrudtest-6285", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-2304", + "name": "firewallrulecrudtest-2304", + "type": "Microsoft.Sql/servers/firewallRules", + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "0.0.0.0" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927", + "name": "firewallrulecrudtest-3927", + "type": "Microsoft.Sql/servers/firewallRules", + "properties": { + "startIpAddress": "0.0.0.1", + "endIpAddress": "0.0.0.1" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370", + "name": "firewallrulecrudtest-5370", + "type": "Microsoft.Sql/servers/firewallRules", + "properties": { + "startIpAddress": "0.0.0.3", + "endIpAddress": "0.0.0.3" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5767", + "name": "firewallrulecrudtest-5767", + "type": "Microsoft.Sql/servers/firewallRules", + "properties": { + "startIpAddress": "0.0.0.2", + "endIpAddress": "0.0.0.2" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json new file mode 100644 index 000000000000..02adc653e914 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "firewallrulecrudtest-12", + "serverName": "firewallrulecrudtest-6285", + "api-version": "2015-05-01-preview", + "parameters": { + "values": [{ + "name": "firewallrulecrudtest-5370 ", + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "100.0.0.0" + } + }] + } + + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370", + "name": "firewallrulecrudtest-5370", + "type": "Microsoft.Sql/servers/firewallRules", + "properties": { + "startIpAddress": "0.0.0.3", + "endIpAddress": "0.0.0.3" + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json new file mode 100644 index 000000000000..cef7a28fec3f --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json @@ -0,0 +1,39 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "firewallrulecrudtest-12", + "serverName": "firewallrulecrudtest-6285", + "firewallRuleName": "firewallrulecrudtest-3927", + "api-version": "2015-05-01-preview", + "parameters": { + "properties": { + "startIpAddress": "0.0.0.1", + "endIpAddress": "0.0.0.1" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927", + "name": "firewallrulecrudtest-3927", + "type": "Microsoft.Sql/servers/firewallRules", + "properties": { + "startIpAddress": "0.0.0.1", + "endIpAddress": "0.0.0.1" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927", + "name": "firewallrulecrudtest-3927", + "type": "Microsoft.Sql/servers/firewallRules", + "properties": { + "startIpAddress": "0.0.0.1", + "endIpAddress": "0.0.0.1" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json new file mode 100644 index 000000000000..c35a4acda242 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "restorableDroppedDatabaseId": "testdb,131403269876900000", + "policyName": "default", + "api-version": "2020-02-02-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/servers/restorableDroppedDatabases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json index d902e38ed53b..8f15f969795c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json @@ -12,7 +12,7 @@ "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", "name": "default", - "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", + "type": "Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies", "properties": { "retentionDays": 14, "diffBackupIntervalInHours": 24 @@ -20,4 +20,4 @@ } } } -} +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json new file mode 100644 index 000000000000..15dd079225e7 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "restorableDroppedDatabaseId": "testdb,131403269876900000", + "policyName": "default", + "api-version": "2020-02-02-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/servers/restorableDroppedDatabases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json index 6379ca16c4c9..ac5e47ad303a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json @@ -14,7 +14,7 @@ { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", "name": "default", - "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", + "type": "Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies", "properties": { "retentionDays": 14, "diffBackupIntervalInHours": 24 @@ -24,4 +24,4 @@ } } } -} +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json new file mode 100644 index 000000000000..02819bbcac07 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json @@ -0,0 +1,17926 @@ +{ + "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" + } + ], + "supportedManagedInstanceVersions": [{ + "name": "12.0", + "supportedEditions": [{ + "name": "GeneralPurpose", + "supportedFamilies": [{ + "name": "Gen4", + "sku": "GP_Gen4", + "supportedLicenseTypes": [{ + "name": "LicenseIncluded", + "status": "Available" + }, { + "name": "BasePrice", + "status": "Available" + }], + "supportedVcoresValues": [{ + "value": 8, + "status": "Available" + }, { + "value": 16, + "status": "Available" + }, { + "value": 24, + "status": "Available" + }], + "supportedStorageSizes": { + "minValue": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "maxValue": { + "limit": 35840, + "unit": "Gigabytes", + "status": "Available" + }, + "scaleSize": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "includedSize": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "status": "Available" + }, + "status": "Available" + }, { + "name": "Gen5", + "sku": "GP_Gen5", + "supportedLicenseTypes": [{ + "name": "LicenseIncluded", + "status": "Available" + }, { + "name": "BasePrice", + "status": "Available" + }], + "supportedVcoresValues": [{ + "value": 8, + "status": "Available" + }, { + "value": 16, + "status": "Available" + }, { + "value": 24, + "status": "Available" + }, { + "value": 32, + "status": "Available" + }, { + "value": 40, + "status": "Available" + }], + "supportedStorageSizes": { + "minValue": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "maxValue": { + "limit": 35840, + "unit": "Gigabytes", + "status": "Available" + }, + "scaleSize": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "includedSize": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "status": "Available" + }, + "status": "Available" + }], + "status": "Available" + }, { + "name": "BusinessCritical", + "supportedFamilies": [{ + "name": "Gen4", + "sku": "BC_Gen4", + "supportedLicenseTypes": [{ + "name": "LicenseIncluded", + "status": "Available" + }, { + "name": "BasePrice", + "status": "Available" + }], + "supportedVcoresValues": [{ + "value": 8, + "status": "Available" + }, { + "value": 16, + "status": "Available" + }, { + "value": 24, + "status": "Available" + }], + "supportedStorageSizes": { + "minValue": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "maxValue": { + "limit": 1024, + "unit": "Gigabytes", + "status": "Available" + }, + "scaleSize": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "includedSize": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "status": "Available" + }, + "status": "Available" + }, { + "name": "Gen5", + "sku": "BC_Gen5", + "supportedLicenseTypes": [{ + "name": "LicenseIncluded", + "status": "Available" + }, { + "name": "BasePrice", + "status": "Available" + }], + "supportedVcoresValues": [{ + "value": 8, + "status": "Available" + }, { + "value": 16, + "status": "Available" + }, { + "value": 24, + "status": "Available" + }, { + "value": 32, + "status": "Available" + }, { + "value": 40, + "status": "Available" + }], + "supportedStorageSizes": { + "minValue": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "maxValue": { + "limit": 4096, + "unit": "Gigabytes", + "status": "Available" + }, + "scaleSize": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "includedSize": { + "limit": 32, + "unit": "Gigabytes", + "status": "Available" + }, + "status": "Available" + }, + "status": "Available" + }], + "status": "Available" + }], + "status": "Default" + }] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json new file mode 100644 index 000000000000..0e03bb50718d --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json @@ -0,0 +1,60 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "databaseName": "testdb", + "securityAlertPolicyName": "default", + "api-version": "2017-03-01-preview", + "databaseSecurityAlertPolicyResource": { + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": ["test@microsoft.com","user@microsoft.com"], + "disabledAlerts": ["Sql_Injection","Usage_Anomaly"], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": ["test@microsoft.com","user@microsoft.com"], + "disabledAlerts": ["Sql_Injection","Usage_Anomaly"], + "retentionDays": 6, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": ["test@microsoft.com","user@microsoft.com"], + "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Disabled" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json new file mode 100644 index 000000000000..eecb95676bdd --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json @@ -0,0 +1,53 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "databaseName": "testdb", + "securityAlertPolicyName": "default", + "api-version": "2017-03-01-preview", + "databaseSecurityAlertPolicyResource": { + "properties": { + "state": "Enabled" + } + } + }, + + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/managedInstance/databases/securityAlertPolicies", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" + } + } + }, + + "201": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/managedInstance/databases/securityAlertPolicies", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json new file mode 100644 index 000000000000..83d919b5200a --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-6852", + "managedInstanceName": "securityalert-2080", + "databaseName": "testdb", + "securityAlertPolicyName": "default", + "api-version": "2017-03-01=preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/managedInstances/securityalert-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", + "location": "Japan East", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": ["test@microsoft.com","user@microsoft.com"], + "disabledAlerts": ["Usage_Anomaly"], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" + } + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json new file mode 100644 index 000000000000..ce99d6284b25 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-6852", + "managedInstanceName": "securityalert-2080", + "databaseName": "testdb", + "api-version": "2017-03-01=preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/managedInstances/securityalert-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", + "location": "Japan East", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ "test@microsoft.com", "user@microsoft.com" ], + "disabledAlerts": [ "Usage_Anomaly" ], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" + } + } + ] + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreate.json index b211c573ce60..0914e9491265 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreate.json @@ -1,27 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2020-02-01-preview", "parameters": { - "properties": { - "state": "Enabled" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Enabled" + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2020-02-01-preview", + "parameters": { + "properties": { + "state": "Enabled", + } } - } }, - "202": {} - } -} + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Enabled" + } + } + }, + "202": { + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json new file mode 100644 index 000000000000..01db47d66248 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": ["testSecurityAlert@microsoft.com"], + "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": ["testSecurityAlert@microsoft.com"], + "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], + "retentionDays": 5, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "202": { + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json new file mode 100644 index 000000000000..d04d11b02c85 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "202": { + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json index a4dd2f5b23a6..430662a4ae24 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2020-02-02-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Disabled", - "creationTime": "2020-04-03T04:41:33.937Z" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2020-02-02-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Disabled", + "creationTime": "3/11/2020 12:00:00 AM" + } + } } - } } - } -} +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json index 95abc4cd4eda..eb554889ab73 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json @@ -1,21 +1,22 @@ { "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "api-version": "2020-02-02-preview" + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "api-version": "2020-02-02-preview" }, "responses": { "200": { "body": { "value": [ { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Disabled", - "creationTime": "2020-04-03T04:41:33.937Z" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "location": "Japan East", + "properties": { + "state": "Disabled", + "creationTime": "3/11/2020 12:00:00 AM" } } ] diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreate.json index 1b2fdd656f05..828afed3abfb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreate.json @@ -1,27 +1,28 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2020-02-02-preview", "parameters": { - "properties": { - "state": "Enabled" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled" + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2020-02-02-preview", + "parameters": { + "properties": { + "state": "Enabled" + } } - } }, - "202": {} - } -} + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled" + } + } + }, + "202": { + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json new file mode 100644 index 000000000000..0ee9a5edfffe --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": ["testSecurityAlert@microsoft.com"], + "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": ["testSecurityAlert@microsoft.com"], + "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], + "retentionDays": 5, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "202": { + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json new file mode 100644 index 000000000000..48cc23daeadb --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", + "parameters": { + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [""], + "disabledAlerts": [""], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "202": { + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json index aee14c28b8ff..21d50799224e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2020-02-02-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "creationTime": "2020-04-03T04:41:33.937Z" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2020-02-02-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "creationTime": "3/11/2020 12:00:00 AM" + } + } } - } } - } -} +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsListByServer.json index cc23a11dfd93..1bc47b57cf39 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsListByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsListByServer.json @@ -13,9 +13,10 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies", "name": "Default", "type": "Microsoft.Sql/servers/securityAlertPolicies", + "location": "Japan East", "properties": { "state": "Enabled", - "creationTime": "2020-04-03T04:41:33.937Z" + "creationTime": "3/11/2020 12:00:00 AM" } } ] diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json new file mode 100644 index 000000000000..340fc22948b0 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "managedInstanceName": "sqlcrudtest-4645", + "api-version": "2018-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/sqlAgent/current", + "name": "current", + "type": "Microsoft.Sql/managedInstances/sqlAgent", + "properties": { + "state": "Enabled" + } + }, + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/sqlAgent/current", + "name": "current", + "type": "Microsoft.Sql/managedInstances/sqlAgent", + "properties": { + "state": "Disabled" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json new file mode 100644 index 000000000000..9e0c54beb14b --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "sqlcrudtest-7398", + "managedInstanceName": "sqlcrudtest-4645", + "api-version": "2018-06-01-preview", + "properties": { + "state": "Enabled" + } + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/sqlAgent/current", + "name": "current", + "type": "Microsoft.Sql/managedInstances/sqlAgent", + "properties": { + "state": "Enabled" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json new file mode 100644 index 000000000000..2a1a92cb6eaa --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json @@ -0,0 +1,30 @@ +{ + "parameters": + { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "WestUS", + "usageName": "ServerQuota", + "api-version": "2015-05-01-preview" + } + , + "responses": + { + "200": + { + "body": + { + "properties": + { + "displayName": "Regional Server Quota for West US", + "currentValue": 1.0, + "limit": 20.0, + "unit": "Count" + } + , + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", + "name": "ServerQuota", + "type": "Microsoft.Sql/locations/usages" + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json new file mode 100644 index 000000000000..c4933a612680 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json @@ -0,0 +1,44 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "WestUS", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [{ + "properties": { + "displayName": "Regional Server Quota for West US", + "currentValue": 1.0, + "limit": 20.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", + "name": "ServerQuota", + "type": "Microsoft.Sql/locations/usages" + }, { + "properties": { + "displayName": "Free Database Count per Subscription for West US", + "currentValue": 0.0, + "limit": 1.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseCount", + "name": "SubscriptionFreeDatabaseCount", + "type": "Microsoft.Sql/locations/usages" + }, { + "properties": { + "displayName": "Free to Basic Database Upgrade count-down in West US", + "currentValue": 365.0, + "limit": 365.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseDaysLeft", + "name": "SubscriptionFreeDatabaseDaysLeft", + "type": "Microsoft.Sql/locations/usages" + }] + } + } + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json new file mode 100644 index 000000000000..104a0b08edd2 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "restorableDroppedDatabaseId": "testdb,131403269876900000", + "policyName": "default", + "api-version": "2020-02-02-preview", + "parameters": { + "properties": { + "retentionDays": 14 + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/Default-SQL-SouthEastAsia/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", + "name": "default", + "type": "Microsoft.Sql/servers/restorableDroppedDatabases/backupShortTermRetentionPolicies", + "properties": { + "retentionDays": 14 + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json index 80cc04f681f9..586298b75293 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json @@ -18,7 +18,7 @@ "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", "name": "default", - "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", + "type": "Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies", "properties": { "retentionDays": 14, "diffBackupIntervalInHours": 24 @@ -27,4 +27,4 @@ }, "202": {} } -} +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json index b399288c5e9b..db82e60c81b6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json @@ -1,7 +1,7 @@ { "swagger": "2.0", "info": { - "version": "2020-02-02-preview", + "version": "2020-02-02", "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." }, @@ -16,61 +16,6 @@ "application/json" ], "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import": { - "post": { - "tags": [ - "Servers" - ], - "description": "Imports a bacpac into a new database.", - "operationId": "Servers_Import", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "parameters", - "in": "body", - "description": "The database import request parameters.", - "required": true, - "schema": { - "$ref": "#/definitions/ImportExportDatabaseDefinition" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully imported the database.", - "schema": { - "$ref": "#/definitions/ImportExportOperationResult" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." - }, - "202": { - "description": "Importing the database is in progress." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Imports to a new database.": { - "$ref": "./examples/ImportNewDatabase.json" - }, - "Imports to a new database, using private link for the SQL server and storage account.": { - "$ref": "./examples/ImportNewDatabaseWithNetworkIsolation.json" - } - } - } - }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers": { "get": { "tags": [ @@ -296,42 +241,6 @@ } } }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/servers": { - "get": { - "tags": [ - "Servers" - ], - "description": "Gets a list of all servers in the subscription.", - "operationId": "Servers_List", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully retrieved the list of servers.", - "schema": { - "$ref": "#/definitions/ServerListResult" - } - }, - "default": { - "description": "*** Error Responses: ***" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-examples": { - "List servers": { - "$ref": "./examples/ServerList.json" - } - } - } - }, "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/checkNameAvailability": { "post": { "tags": [ @@ -382,253 +291,6 @@ } }, "definitions": { - "ImportExportDatabaseDefinition": { - "description": "Contains the information necessary to perform import/export operation.", - "required": [ - "storageKeyType", - "storageKey", - "storageUri", - "administratorLogin", - "administratorLoginPassword" - ], - "type": "object", - "properties": { - "databaseName": { - "description": "Name of the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "edition": { - "description": "Edition of the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "serviceObjectiveName": { - "description": "Service level objective name of the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "maxSizeBytes": { - "description": "Max size in bytes for the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] - }, - "storageKey": { - "description": "Storage key.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "storageUri": { - "description": "Storage Uri.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "administratorLogin": { - "description": "Administrator login name.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "administratorLoginPassword": { - "description": "Administrator login password.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "authenticationType": { - "description": "Authentication type.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "networkIsolation": { - "$ref": "#/definitions/NetworkIsolationSettings", - "description": "Optional resource information to enable network isolation for request.", - "x-ms-mutability": [ - "create" - ] - } - } - }, - "NetworkIsolationSettings": { - "description": "Contains the ARM resources for which to create private endpoint connection.", - "type": "object", - "properties": { - "storageAccountResourceId": { - "description": "The resource id for the storage account used to store BACPAC file. If set, private endpoint connection will be created for the storage account. Must match storage account used for StorageUri parameter.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "sqlServerResourceId": { - "description": "The resource id for the SQL server which is the target of this request. If set, private endpoint connection will be created for the SQL server. Must match server which is target of the operation.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - } - } - }, - "ImportExportOperationResultProperties": { - "description": "Contains the operation result properties for import/export operation.", - "type": "object", - "properties": { - "requestId": { - "format": "uuid", - "description": "Request Id.", - "type": "string", - "readOnly": true - }, - "requestType": { - "description": "Request type.", - "type": "string", - "readOnly": true - }, - "queuedTime": { - "description": "Queued time.", - "type": "string", - "readOnly": true - }, - "lastModifiedTime": { - "description": "Last modified time.", - "type": "string", - "readOnly": true - }, - "blobUri": { - "description": "Blob Uri.", - "type": "string", - "readOnly": true - }, - "serverName": { - "description": "Server name.", - "type": "string", - "readOnly": true - }, - "databaseName": { - "description": "Database name.", - "type": "string", - "readOnly": true - }, - "status": { - "description": "Operation status.", - "type": "string", - "readOnly": true - }, - "errorMessage": { - "description": "Error message.", - "type": "string", - "readOnly": true - }, - "privateEndpointConnections": { - "description": "Gets the status of private endpoints associated with this request.", - "type": "array", - "items": { - "$ref": "#/definitions/PrivateEndpointConnectionRequestStatus" - }, - "readOnly": true - } - } - }, - "PrivateEndpointConnectionRequestStatus": { - "description": "Contains the private endpoint connection requests status.", - "type": "object", - "properties": { - "privateLinkServiceId": { - "description": "Resource id for which the private endpoint is created.", - "type": "string", - "readOnly": true - }, - "privateEndpointConnectionName": { - "description": "The connection name for the private endpoint.", - "type": "string", - "readOnly": true - }, - "status": { - "description": "Status of this private endpoint connection.", - "type": "string", - "readOnly": true - } - } - }, - "Resource": { - "description": "ARM resource.", - "type": "object", - "properties": { - "id": { - "description": "Resource ID.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "Resource name.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "Resource type.", - "type": "string", - "readOnly": true - } - }, - "x-ms-azure-resource": true - }, - "ProxyResource": { - "description": "ARM proxy resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": {} - }, - "ImportExportOperationResult": { - "description": "An ImportExport operation result resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyResource" - } - ], - "properties": { - "properties": { - "$ref": "#/definitions/ImportExportOperationResultProperties", - "description": "Resource properties.", - "x-ms-client-flatten": true - } - } - }, "ServerListResult": { "description": "A list of servers.", "type": "object", @@ -754,6 +416,28 @@ } } }, + "Resource": { + "description": "ARM resource.", + "type": "object", + "properties": { + "id": { + "description": "Resource ID.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Resource name.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Resource type.", + "type": "string", + "readOnly": true + } + }, + "x-ms-azure-resource": true + }, "PrivateEndpointConnectionProperties": { "description": "Properties of a private endpoint connection.", "type": "object", From 5f4320f99f273a0db9a1307bd1033334ad76b59c Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Fri, 14 Aug 2020 14:25:42 -0700 Subject: [PATCH 04/43] Update with missed change from after merge --- .../examples/PauseDatabase.json | 2 +- .../examples/ResumeDatabase.json | 2 +- .../preview/2020-02-02-preview/servers.json | 362 ++++++++++++++++-- 3 files changed, 341 insertions(+), 25 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json index 1759dd2d0a25..b36422467fd1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json @@ -10,7 +10,7 @@ "200": { "body": { "sku": { - + "name": "DataWarehouse" }, "kind": "v12.0,user,datawarehouse", "properties": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json index 20cf7dc71a28..d7e363709545 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json @@ -10,7 +10,7 @@ "200": { "body": { "sku": { - + "name": "DataWarehouse" }, "kind": "v12.0,user,datawarehouse", "properties": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json index db82e60c81b6..b399288c5e9b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json @@ -1,7 +1,7 @@ { "swagger": "2.0", "info": { - "version": "2020-02-02", + "version": "2020-02-02-preview", "title": "SqlManagementClient", "description": "The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities." }, @@ -16,6 +16,61 @@ "application/json" ], "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import": { + "post": { + "tags": [ + "Servers" + ], + "description": "Imports a bacpac into a new database.", + "operationId": "Servers_Import", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The database import request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/ImportExportDatabaseDefinition" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully imported the database.", + "schema": { + "$ref": "#/definitions/ImportExportOperationResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." + }, + "202": { + "description": "Importing the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Imports to a new database.": { + "$ref": "./examples/ImportNewDatabase.json" + }, + "Imports to a new database, using private link for the SQL server and storage account.": { + "$ref": "./examples/ImportNewDatabaseWithNetworkIsolation.json" + } + } + } + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers": { "get": { "tags": [ @@ -241,6 +296,42 @@ } } }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/servers": { + "get": { + "tags": [ + "Servers" + ], + "description": "Gets a list of all servers in the subscription.", + "operationId": "Servers_List", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved the list of servers.", + "schema": { + "$ref": "#/definitions/ServerListResult" + } + }, + "default": { + "description": "*** Error Responses: ***" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "List servers": { + "$ref": "./examples/ServerList.json" + } + } + } + }, "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/checkNameAvailability": { "post": { "tags": [ @@ -291,6 +382,253 @@ } }, "definitions": { + "ImportExportDatabaseDefinition": { + "description": "Contains the information necessary to perform import/export operation.", + "required": [ + "storageKeyType", + "storageKey", + "storageUri", + "administratorLogin", + "administratorLoginPassword" + ], + "type": "object", + "properties": { + "databaseName": { + "description": "Name of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "edition": { + "description": "Edition of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "serviceObjectiveName": { + "description": "Service level objective name of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "maxSizeBytes": { + "description": "Max size in bytes for the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageKeyType": { + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "storageKey": { + "description": "Storage key.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageUri": { + "description": "Storage Uri.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLogin": { + "description": "Administrator login name.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLoginPassword": { + "description": "Administrator login password.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "authenticationType": { + "description": "Authentication type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "networkIsolation": { + "$ref": "#/definitions/NetworkIsolationSettings", + "description": "Optional resource information to enable network isolation for request.", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "NetworkIsolationSettings": { + "description": "Contains the ARM resources for which to create private endpoint connection.", + "type": "object", + "properties": { + "storageAccountResourceId": { + "description": "The resource id for the storage account used to store BACPAC file. If set, private endpoint connection will be created for the storage account. Must match storage account used for StorageUri parameter.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "sqlServerResourceId": { + "description": "The resource id for the SQL server which is the target of this request. If set, private endpoint connection will be created for the SQL server. Must match server which is target of the operation.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "ImportExportOperationResultProperties": { + "description": "Contains the operation result properties for import/export operation.", + "type": "object", + "properties": { + "requestId": { + "format": "uuid", + "description": "Request Id.", + "type": "string", + "readOnly": true + }, + "requestType": { + "description": "Request type.", + "type": "string", + "readOnly": true + }, + "queuedTime": { + "description": "Queued time.", + "type": "string", + "readOnly": true + }, + "lastModifiedTime": { + "description": "Last modified time.", + "type": "string", + "readOnly": true + }, + "blobUri": { + "description": "Blob Uri.", + "type": "string", + "readOnly": true + }, + "serverName": { + "description": "Server name.", + "type": "string", + "readOnly": true + }, + "databaseName": { + "description": "Database name.", + "type": "string", + "readOnly": true + }, + "status": { + "description": "Operation status.", + "type": "string", + "readOnly": true + }, + "errorMessage": { + "description": "Error message.", + "type": "string", + "readOnly": true + }, + "privateEndpointConnections": { + "description": "Gets the status of private endpoints associated with this request.", + "type": "array", + "items": { + "$ref": "#/definitions/PrivateEndpointConnectionRequestStatus" + }, + "readOnly": true + } + } + }, + "PrivateEndpointConnectionRequestStatus": { + "description": "Contains the private endpoint connection requests status.", + "type": "object", + "properties": { + "privateLinkServiceId": { + "description": "Resource id for which the private endpoint is created.", + "type": "string", + "readOnly": true + }, + "privateEndpointConnectionName": { + "description": "The connection name for the private endpoint.", + "type": "string", + "readOnly": true + }, + "status": { + "description": "Status of this private endpoint connection.", + "type": "string", + "readOnly": true + } + } + }, + "Resource": { + "description": "ARM resource.", + "type": "object", + "properties": { + "id": { + "description": "Resource ID.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Resource name.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Resource type.", + "type": "string", + "readOnly": true + } + }, + "x-ms-azure-resource": true + }, + "ProxyResource": { + "description": "ARM proxy resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": {} + }, + "ImportExportOperationResult": { + "description": "An ImportExport operation result resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "$ref": "#/definitions/ImportExportOperationResultProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + } + } + }, "ServerListResult": { "description": "A list of servers.", "type": "object", @@ -416,28 +754,6 @@ } } }, - "Resource": { - "description": "ARM resource.", - "type": "object", - "properties": { - "id": { - "description": "Resource ID.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "Resource name.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "Resource type.", - "type": "string", - "readOnly": true - } - }, - "x-ms-azure-resource": true - }, "PrivateEndpointConnectionProperties": { "description": "Properties of a private endpoint connection.", "type": "object", From 6a2e3e15fa96f8a04a3446c81eead14101cb0758 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Fri, 14 Aug 2020 14:42:23 -0700 Subject: [PATCH 05/43] Run prettier --- .../preview/2020-02-02-preview/databases.json | 2 +- .../examples/AdministratorCreateOrUpdate.json | 14 +- .../examples/AdministratorDelete.json | 2 +- .../examples/AdministratorGet.json | 2 +- .../examples/AdministratorList.json | 2 +- ...ckNameAvailabilityServerAlreadyExists.json | 10 +- .../CheckNameAvailabilityServerAvailable.json | 6 +- .../CheckNameAvailabilityServerInvalid.json | 11 +- .../examples/CreateDatabaseCopyMode.json | 126 +- .../examples/CreateDatabaseDefaultMode.json | 130 +- .../examples/CreateDatabaseMin.json | 110 +- .../examples/CreateDatabasePITRMode.json | 128 +- .../examples/CreateDatabaseRecoveryMode.json | 126 +- .../CreateDatabaseRestoreLtrBackup.json | 3 +- .../examples/CreateDatabaseRestoreMode.json | 128 +- .../examples/CreateDatabaseRestoreMode2.json | 128 +- .../examples/CreateDatabaseSecondaryMode.json | 126 +- .../CreateDwDatabaseByServiceObjective.json | 2 +- ...ateHyperscaleDatabaseWithReadReplicas.json | 2 +- ...CreateVCoreDatabaseByServiceObjective.json | 8 +- .../CreateVCoreDatabaseBySkuNameCapacity.json | 2 +- ...eVCoreDatabaseBySkuTierFamilyCapacity.json | 8 +- .../examples/DatabaseSecurityAlertCreate.json | 8 +- .../DatabaseSecurityAlertCreateMax.json | 56 +- .../DatabaseSecurityAlertCreateMin.json | 20 +- .../examples/DatabaseSecurityAlertGet.json | 22 +- .../examples/DeleteDatabase.json | 24 +- .../ElasticPoolCreateOrUpdateMax.json | 2 +- .../ElasticPoolCreateOrUpdateMin.json | 2 +- .../examples/ElasticPoolDelete.json | 2 +- .../examples/ElasticPoolGet.json | 2 +- .../examples/ElasticPoolListByServer.json | 2 +- .../examples/ElasticPoolUpdateMax.json | 2 +- .../examples/ElasticPoolUpdateMin.json | 5 +- .../examples/ExportDatabase.json | 64 +- .../ExportDatabaseWithNetworkIsolation.json | 38 +- .../examples/FailoverDatabase.json | 2 +- .../examples/FirewallRuleCreate.json | 2 +- .../examples/FirewallRuleDelete.json | 2 +- .../examples/FirewallRuleGet.json | 2 +- .../examples/FirewallRuleList.json | 2 +- .../examples/FirewallRuleReplace.json | 31 +- .../examples/FirewallRuleUpdate.json | 2 +- .../examples/GetDatabase.json | 62 +- ...orableDroppedShortTermRetentionPolicy.json | 2 +- .../examples/GetShortTermRetentionPolicy.json | 2 +- .../examples/GetVCoreDatabase.json | 72 +- .../examples/ImportDatabase.json | 38 +- .../ImportDatabaseWithNetworkIsolation.json | 38 +- .../examples/ImportNewDatabase.json | 38 +- ...ImportNewDatabaseWithNetworkIsolation.json | 38 +- .../examples/ListDatabasesByElasticPool.json | 2 +- .../examples/ListDatabasesByServer.json | 112 +- ...dShortTermRetentionPoliciesByDatabase.json | 2 +- ...tShortTermRetentionPoliciesByDatabase.json | 2 +- .../examples/ListVCoreDatabasesByServer.json | 122 +- ...istVCoreInaccessibleDatabasesByServer.json | 2 +- .../LocationCapabilityListByLocation.json | 12951 ++++++++-------- ...ManagedDatabaseSecurityAlertCreateMax.json | 70 +- ...ManagedDatabaseSecurityAlertCreateMin.json | 36 +- .../ManagedDatabaseSecurityAlertGet.json | 37 +- ...edDatabaseSecurityAlertListByDatabase.json | 9 +- .../ManagedServerSecurityAlertCreate.json | 47 +- .../ManagedServerSecurityAlertCreateMax.json | 81 +- .../ManagedServerSecurityAlertCreateMin.json | 63 +- .../ManagedServerSecurityAlertGet.json | 38 +- ...agedServerSecurityAlertListByInstance.json | 22 +- .../examples/PatchDatabase.json | 82 +- .../examples/PatchVCoreDatabase.json | 86 +- .../examples/PauseDatabase.json | 2 +- .../examples/RenameDatabase.json | 24 +- .../examples/ResumeDatabase.json | 2 +- .../examples/ServerCreate.json | 2 +- .../examples/ServerCreateMax.json | 2 +- .../examples/ServerCreateMin.json | 2 +- .../examples/ServerDelete.json | 2 +- .../examples/ServerGet.json | 2 +- .../examples/ServerList.json | 2 +- .../examples/ServerListByResourceGroup.json | 2 +- .../examples/ServerSecurityAlertsCreate.json | 47 +- .../ServerSecurityAlertsCreateMax.json | 81 +- .../ServerSecurityAlertsCreateMin.json | 69 +- .../examples/ServerSecurityAlertsGet.json | 38 +- .../examples/ServerUpdate.json | 2 +- .../examples/ServerUpdateMax.json | 2 +- .../examples/ServerUpdateMin.json | 2 +- .../examples/SqlAgentConfigurationGet.json | 2 +- .../examples/SqlAgentConfigurationPut.json | 2 +- .../examples/SubscriptionUsageGet.json | 49 +- .../SubscriptionUsageListByLocation.json | 88 +- ...orableDroppedShortTermRetentionPolicy.json | 2 +- .../UpdateShortTermRetentionPolicy.json | 2 +- .../examples/UpgradeDataWarehouse.json | 2 +- .../preview/2020-02-02-preview/servers.json | 2 +- 94 files changed, 7973 insertions(+), 7881 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json index 8e8f282965a6..249b7a55b055 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json @@ -1552,4 +1552,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json index 8a1e6387cc39..d1da856f62c0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json @@ -7,12 +7,12 @@ "api-version": "2018-06-01-preview", "name": "ActiveDirectory", "parameters": { - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", - "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" - } + "properties": { + "administratorType": "ActiveDirectory", + "login": "bob@contoso.com", + "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", + "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" + } } }, "responses": { @@ -44,4 +44,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json index 924c26348a52..d3210177c4c1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json @@ -11,4 +11,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json index 4930ee826edf..aa09007aeb6e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json index 4930ee826edf..aa09007aeb6e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json @@ -21,4 +21,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json index b533ff8f08e3..720ca1e6ae28 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json @@ -10,11 +10,11 @@ "responses": { "200": { "body": { - "name":"server1", - "available":false, - "reason":"AlreadyExists", - "message":"Specified server name is already used" + "name": "server1", + "available": false, + "reason": "AlreadyExists", + "message": "Specified server name is already used" } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json index 119536535f7e..233d5552e080 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json @@ -10,9 +10,9 @@ "responses": { "200": { "body": { - "name":"server1", - "available":true + "name": "server1", + "available": true } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json index 4c4e49cff037..0f50fc3c58ae 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json @@ -10,10 +10,11 @@ "responses": { "200": { "body": { - "name":"SERVER1", - "available":false, - "reason":"Invalid", - "message":"Specified server name contains unsupported characters or is too long. Server name must be no longer than 63 characters long, contain only lower-case characters or digits, cannot contain \u0027.\u0027 or \u0027_\u0027 characters and can\u0027t start or end with \u0027-\u0027 character."} + "name": "SERVER1", + "available": false, + "reason": "Invalid", + "message": "Specified server name contains unsupported characters or is too long. Server name must be no longer than 63 characters long, contain only lower-case characters or digits, cannot contain '.' or '_' characters and can't start or end with '-' character." + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json index c888714f0480..71d59de32294 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbcopy", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbcopy", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Copy", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Copy", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", + "name": "dbcopy", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json index b8736ea03a02..ba5deae797c3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json @@ -1,70 +1,70 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Default", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824 - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Default", + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824 + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } -} \ No newline at end of file + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json index 871367c58ee5..e790ea99765b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json @@ -1,61 +1,61 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia" - } + "location": "southeastasia" + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json index cad9460c0e21..ac1df30711b7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json @@ -1,70 +1,70 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbpitr", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbpitr", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "PointInTimeRestore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "restorePointInTime": "2017-07-14T05:35:31.503Z" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "PointInTimeRestore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "restorePointInTime": "2017-07-14T05:35:31.503Z" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", + "name": "dbpitr", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", - "name": "dbpitr", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", - "name": "dbpitr", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", + "name": "dbpitr", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json index 2d02dcf5926d..a4f8cee34bc7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "restorableDroppedDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb2,131444841315030000" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "restorableDroppedDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb2,131444841315030000" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json index 100d97fb6ed8..151575765a92 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json @@ -17,7 +17,6 @@ } } }, - "responses": { "200": { "body": { @@ -67,4 +66,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json index 5be22c3fb50e..93a6d13ce5db 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json @@ -1,70 +1,70 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "sourceDatabaseDeletionDate": "2017-07-14T06:41:06.613Z" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "sourceDatabaseDeletionDate": "2017-07-14T06:41:06.613Z" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json index 0dc1bf0e377c..2a86acd6e7dc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "dbrestore", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Restore", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } -} \ No newline at end of file + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", + "name": "dbrestore", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json index b7f18f6e0ac5..e9b2a0ce6a61 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json @@ -1,69 +1,69 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Secondary", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb" - } - } + "location": "southeastasia", + "sku": { + "name": "S0", + "tier": "Standard" + }, + "properties": { + "createMode": "Secondary", + "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb" + } + } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "201": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" }, - "202": { } - } + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json index 012f36d06668..c45f339c7a6e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json @@ -79,4 +79,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json index ba48154d3c5d..3fa2ca69c47c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json @@ -76,4 +76,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json index 7dae6aee65b6..dbd6ab885cac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json @@ -39,8 +39,7 @@ "readReplicaCount": 1 }, "location": "southeastasia", - "id": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", "name": "testdb", "type": "Microsoft.Sql/servers/databases" } @@ -69,12 +68,11 @@ "readReplicaCount": 1 }, "location": "southeastasia", - "id": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", "name": "testdb", "type": "Microsoft.Sql/servers/databases" } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json index d86fb7c31820..e91f678c1dcd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json @@ -74,4 +74,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json index f418610356b5..ae43ecd57f74 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json @@ -37,8 +37,7 @@ "readReplicaCount": 1 }, "location": "southeastasia", - "id": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", "name": "testdb", "type": "Microsoft.Sql/servers/databases" } @@ -67,12 +66,11 @@ "readReplicaCount": 1 }, "location": "southeastasia", - "id": - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", "name": "testdb", "type": "Microsoft.Sql/servers/databases" } }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json index d47d7d0e8aec..d4a3ccdb9fcb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json @@ -12,7 +12,6 @@ } } }, - "responses": { "200": { "body": { @@ -20,12 +19,11 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", - "properties": { - "state": "Enabled" + "properties": { + "state": "Enabled" } } }, - "201": { "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", @@ -38,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json index d948a7bb3d34..c736b806d367 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json @@ -10,15 +10,20 @@ "properties": { "state": "Enabled", "emailAccountAdmins": "true", - "emailAddresses": [ "test@microsoft.com", "user@microsoft.com" ], - "disabledAlerts": [ "Sql_Injection", "Usage_Anomaly" ], + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Sql_Injection", + "Usage_Anomaly" + ], "retentionDays": 6, "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", "storageEndpoint": "https://mystorage.blob.core.windows.net" } } }, - "responses": { "200": { "body": { @@ -27,17 +32,22 @@ "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Sql_Injection","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Sql_Injection", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } } }, - "201": { "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", @@ -45,16 +55,22 @@ "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Disabled" + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Disabled" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json index 747b0e8ce7af..9df02f18e3fd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json @@ -12,7 +12,6 @@ } } }, - "responses": { "200": { "body": { @@ -20,18 +19,17 @@ "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" } } }, - "201": { "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", @@ -50,4 +48,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json index c75f9cf55588..583011d1beca 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json @@ -9,17 +9,17 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "location": "Japan East", - "kind": "V12", - "properties": { - "state": "Enabled", - "creationTime": "3/11/2020 12:00:00 AM" - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", + "location": "Japan East", + "kind": "V12", + "properties": { + "state": "Enabled", + "creationTime": "3/11/2020 12:00:00 AM" } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json index ed35085e9ec4..c70d7532b66e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json @@ -1,14 +1,14 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { }, - "204": { }, - "202": { } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": {}, + "204": {}, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json index b9bebd074c12..ba7e28028aac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json @@ -69,4 +69,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json index bb0e9bb14263..25f84bcd695a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json @@ -58,4 +58,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json index 198cb66f70bb..2c09de6bcd64 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json index c6054e374a6a..ed310b1d1455 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json index e72fa7cb748d..e0c9401d5e4a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json @@ -78,4 +78,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json index e2799f4a725e..50ab53f4d887 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json @@ -49,4 +49,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json index b2b9c5679c96..798ef7b5c92e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json @@ -5,8 +5,7 @@ "serverName": "sqlcrudtest-8069", "elasticPoolName": "sqlcrudtest-8102", "api-version": "2017-10-01", - "parameters": { - } + "parameters": {} }, "responses": { "200": { @@ -34,4 +33,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json index dd5c240eb87a..377a8b0ac4d9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json @@ -1,37 +1,37 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2020-02-02-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2020-02-02-preview", - "parameters": { - "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", - "storageUri": "https://test.blob.core.windows.net/test.bacpac", - "administratorLogin": "login", - "administratorLoginPassword": "password", - "authenticationType": "Sql" + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Export", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } - }, - "202": {} - } + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json index 5a6a1f994c4d..2b56f88379be 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json @@ -18,24 +18,24 @@ } } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Export", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json index 04b6a792e5a6..c527b9727123 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json @@ -11,4 +11,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json index 88b04c6ff4a0..83cedbdced63 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json index ea931a438ff2..51ab66f29b0e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json @@ -14,4 +14,4 @@ "body": "" } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json index d244c64544af..712b47f68183 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json index 3668a81c246c..f378b326a06b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json @@ -49,4 +49,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json index 02adc653e914..99c90881eebf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json @@ -1,20 +1,21 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "firewallrulecrudtest-12", + "serverName": "firewallrulecrudtest-6285", + "api-version": "2015-05-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "firewallrulecrudtest-12", - "serverName": "firewallrulecrudtest-6285", - "api-version": "2015-05-01-preview", - "parameters": { - "values": [{ - "name": "firewallrulecrudtest-5370 ", - "properties": { - "startIpAddress": "0.0.0.0", - "endIpAddress": "100.0.0.0" - } - }] + "values": [ + { + "name": "firewallrulecrudtest-5370 ", + "properties": { + "startIpAddress": "0.0.0.0", + "endIpAddress": "100.0.0.0" + } } - - }, + ] + } + }, "responses": { "200": { "body": { @@ -29,4 +30,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json index cef7a28fec3f..554600d97158 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json @@ -36,4 +36,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json index 70e9298d0244..8d643600cda9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json @@ -1,34 +1,34 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json index c35a4acda242..d23c9f3da077 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json index 8f15f969795c..dac7f22c4c61 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json @@ -20,4 +20,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json index 62124ea4726e..6c1f4b684ce9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json @@ -1,39 +1,39 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "capacity": 2 - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "capacity": 2 + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } } + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json index 2df3f9ef41a5..ec495eaa61ac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json @@ -14,24 +14,24 @@ "authenticationType": "Sql" } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json index 827dfd1e9375..b331cd042619 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json @@ -18,24 +18,24 @@ } } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json index 29c472af7ca4..bb6868a9f93c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json @@ -14,24 +14,24 @@ "authenticationType": "Sql" } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json index 8275aeec3e82..44a0afdb60eb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json @@ -18,24 +18,24 @@ } } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json index 8d7b94a8caa8..80fd7a64f5c8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json index b487148a6635..b3b18214c8f7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json @@ -1,56 +1,58 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [{ - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - }, - { - "sku": { - "name": "System0", - "tier": "System" - }, - "kind": "v12.0,system", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 32212254720, - "status": "Online", - "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", - "creationDate": "2017-06-07T04:23:42.537Z", - "currentServiceObjectiveName": "System0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", - "name": "master", - "type": "Microsoft.Sql/servers/databases" - }] - } - } - } -} \ No newline at end of file + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2017-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "sku": { + "name": "S0", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + }, + { + "sku": { + "name": "System0", + "tier": "System" + }, + "kind": "v12.0,system", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 32212254720, + "status": "Online", + "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", + "creationDate": "2017-06-07T04:23:42.537Z", + "currentServiceObjectiveName": "System0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", + "name": "master", + "type": "Microsoft.Sql/servers/databases" + } + ] + } + } + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json index 15dd079225e7..00de8bbaeb85 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json index ac5e47ad303a..ba8110eaccdb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json index 48a370ef982c..facdd2ff8af5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json @@ -1,63 +1,63 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "capacity": 2 - }, - "kind": "v12.0,user,vcore", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - }, - { - "sku": { - "name": "System0", - "tier": "System" - }, - "kind": "v12.0,system", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 32212254720, - "status": "Online", - "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", - "creationDate": "2017-06-07T04:23:42.537Z", - "currentServiceObjectiveName": "System0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", - "name": "master", - "type": "Microsoft.Sql/servers/databases" - } - ] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "api-version": "2017-10-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "sku": { + "name": "BC_Gen4", + "tier": "BusinessCritical", + "capacity": 2 + }, + "kind": "v12.0,user,vcore", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 268435456000, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_2", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600, + "readScale": "Enabled", + "readReplicaCount": 1 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + }, + { + "sku": { + "name": "System0", + "tier": "System" + }, + "kind": "v12.0,system", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 32212254720, + "status": "Online", + "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", + "creationDate": "2017-06-07T04:23:42.537Z", + "currentServiceObjectiveName": "System0", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", + "name": "master", + "type": "Microsoft.Sql/servers/databases" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json index ebd8398b4682..75db020787c6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json @@ -39,4 +39,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json index 02819bbcac07..fccc2aefb038 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json @@ -10,17917 +10,17960 @@ "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" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 0, + "unit": "DTU" }, "includedMaxSize": { - "limit": 30720, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 5, + "unit": "DTU" }, "includedMaxSize": { - "limit": 32, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 5, + "unit": "DTU" }, "includedMaxSize": { - "limit": 2048, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 10, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 20, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 50, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 100, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 200, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 400, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 800, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 1600, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 3000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 256000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 125, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 1000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 1750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 4000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 1048576, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 125, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 1000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 512000, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 1500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 2250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 3000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 3750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 4500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 7500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 9000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 11250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 15000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 22500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 22500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 45000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 45000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 1500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 2250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 3000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 3750, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 4500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 7500, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 9000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 11250, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "value": 15000, + "unit": "DTU" }, "includedMaxSize": { - "limit": 251658240, - "unit": "Megabytes", - "status": "Available" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" + "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" - } + } ], - "supportedManagedInstanceVersions": [{ - "name": "12.0", - "supportedEditions": [{ - "name": "GeneralPurpose", - "supportedFamilies": [{ - "name": "Gen4", - "sku": "GP_Gen4", - "supportedLicenseTypes": [{ - "name": "LicenseIncluded", - "status": "Available" - }, { - "name": "BasePrice", - "status": "Available" - }], - "supportedVcoresValues": [{ - "value": 8, - "status": "Available" - }, { - "value": 16, - "status": "Available" - }, { - "value": 24, - "status": "Available" - }], - "supportedStorageSizes": { - "minValue": { + "supportedManagedInstanceVersions": [ + { + "name": "12.0", + "supportedEditions": [ + { + "name": "GeneralPurpose", + "supportedFamilies": [ + { + "name": "Gen4", + "sku": "GP_Gen4", + "supportedLicenseTypes": [ + { + "name": "LicenseIncluded", + "status": "Available" + }, + { + "name": "BasePrice", + "status": "Available" + } + ], + "supportedVcoresValues": [ + { + "value": 8, + "status": "Available" + }, + { + "value": 16, + "status": "Available" + }, + { + "value": 24, + "status": "Available" + } + ], + "supportedStorageSizes": { + "minValue": { "limit": 32, "unit": "Gigabytes", "status": "Available" - }, - "maxValue": { + }, + "maxValue": { "limit": 35840, "unit": "Gigabytes", "status": "Available" - }, - "scaleSize": { + }, + "scaleSize": { "limit": 32, "unit": "Gigabytes", "status": "Available" - }, - "includedSize": { + }, + "includedSize": { "limit": 32, "unit": "Gigabytes", "status": "Available" + }, + "status": "Available" }, "status": "Available" - }, - "status": "Available" - }, { - "name": "Gen5", - "sku": "GP_Gen5", - "supportedLicenseTypes": [{ - "name": "LicenseIncluded", - "status": "Available" - }, { - "name": "BasePrice", - "status": "Available" - }], - "supportedVcoresValues": [{ - "value": 8, - "status": "Available" - }, { - "value": 16, - "status": "Available" - }, { - "value": 24, - "status": "Available" - }, { - "value": 32, - "status": "Available" - }, { - "value": 40, - "status": "Available" - }], - "supportedStorageSizes": { - "minValue": { + }, + { + "name": "Gen5", + "sku": "GP_Gen5", + "supportedLicenseTypes": [ + { + "name": "LicenseIncluded", + "status": "Available" + }, + { + "name": "BasePrice", + "status": "Available" + } + ], + "supportedVcoresValues": [ + { + "value": 8, + "status": "Available" + }, + { + "value": 16, + "status": "Available" + }, + { + "value": 24, + "status": "Available" + }, + { + "value": 32, + "status": "Available" + }, + { + "value": 40, + "status": "Available" + } + ], + "supportedStorageSizes": { + "minValue": { "limit": 32, "unit": "Gigabytes", "status": "Available" - }, - "maxValue": { + }, + "maxValue": { "limit": 35840, "unit": "Gigabytes", "status": "Available" - }, - "scaleSize": { + }, + "scaleSize": { "limit": 32, "unit": "Gigabytes", "status": "Available" - }, - "includedSize": { + }, + "includedSize": { "limit": 32, "unit": "Gigabytes", "status": "Available" + }, + "status": "Available" }, "status": "Available" - }, + } + ], "status": "Available" - }], - "status": "Available" - }, { - "name": "BusinessCritical", - "supportedFamilies": [{ - "name": "Gen4", - "sku": "BC_Gen4", - "supportedLicenseTypes": [{ - "name": "LicenseIncluded", - "status": "Available" - }, { - "name": "BasePrice", - "status": "Available" - }], - "supportedVcoresValues": [{ - "value": 8, - "status": "Available" - }, { - "value": 16, - "status": "Available" - }, { - "value": 24, - "status": "Available" - }], - "supportedStorageSizes": { - "minValue": { + }, + { + "name": "BusinessCritical", + "supportedFamilies": [ + { + "name": "Gen4", + "sku": "BC_Gen4", + "supportedLicenseTypes": [ + { + "name": "LicenseIncluded", + "status": "Available" + }, + { + "name": "BasePrice", + "status": "Available" + } + ], + "supportedVcoresValues": [ + { + "value": 8, + "status": "Available" + }, + { + "value": 16, + "status": "Available" + }, + { + "value": 24, + "status": "Available" + } + ], + "supportedStorageSizes": { + "minValue": { "limit": 32, "unit": "Gigabytes", "status": "Available" - }, - "maxValue": { + }, + "maxValue": { "limit": 1024, "unit": "Gigabytes", "status": "Available" - }, - "scaleSize": { + }, + "scaleSize": { "limit": 32, "unit": "Gigabytes", "status": "Available" - }, - "includedSize": { + }, + "includedSize": { "limit": 32, "unit": "Gigabytes", "status": "Available" + }, + "status": "Available" }, "status": "Available" - }, - "status": "Available" - }, { - "name": "Gen5", - "sku": "BC_Gen5", - "supportedLicenseTypes": [{ - "name": "LicenseIncluded", - "status": "Available" - }, { - "name": "BasePrice", - "status": "Available" - }], - "supportedVcoresValues": [{ - "value": 8, - "status": "Available" - }, { - "value": 16, - "status": "Available" - }, { - "value": 24, - "status": "Available" - }, { - "value": 32, - "status": "Available" - }, { - "value": 40, - "status": "Available" - }], - "supportedStorageSizes": { - "minValue": { + }, + { + "name": "Gen5", + "sku": "BC_Gen5", + "supportedLicenseTypes": [ + { + "name": "LicenseIncluded", + "status": "Available" + }, + { + "name": "BasePrice", + "status": "Available" + } + ], + "supportedVcoresValues": [ + { + "value": 8, + "status": "Available" + }, + { + "value": 16, + "status": "Available" + }, + { + "value": 24, + "status": "Available" + }, + { + "value": 32, + "status": "Available" + }, + { + "value": 40, + "status": "Available" + } + ], + "supportedStorageSizes": { + "minValue": { "limit": 32, "unit": "Gigabytes", "status": "Available" - }, - "maxValue": { + }, + "maxValue": { "limit": 4096, "unit": "Gigabytes", "status": "Available" - }, - "scaleSize": { + }, + "scaleSize": { "limit": 32, "unit": "Gigabytes", "status": "Available" - }, - "includedSize": { + }, + "includedSize": { "limit": 32, "unit": "Gigabytes", "status": "Available" + }, + "status": "Available" }, "status": "Available" - }, + } + ], "status": "Available" - }], - "status": "Available" - }], - "status": "Default" - }] - } + } + ], + "status": "Default" + } + ] + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json index 0e03bb50718d..fa32fce558f9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json @@ -7,18 +7,23 @@ "securityAlertPolicyName": "default", "api-version": "2017-03-01-preview", "databaseSecurityAlertPolicyResource": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Sql_Injection","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Sql_Injection", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } } }, - "responses": { "200": { "body": { @@ -27,17 +32,22 @@ "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Sql_Injection","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Sql_Injection", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } } }, - "201": { "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", @@ -45,16 +55,22 @@ "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", "kind": "V12", "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Disabled" + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 6, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net", + "useServerDefault": "Disabled" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json index eecb95676bdd..ac22edd70215 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json @@ -12,7 +12,6 @@ } } }, - "responses": { "200": { "body": { @@ -20,34 +19,33 @@ "name": "default", "type": "Microsoft.Sql/managedInstance/databases/securityAlertPolicies", "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" } } }, - "201": { "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", "name": "default", "type": "Microsoft.Sql/managedInstance/databases/securityAlertPolicies", "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" } } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json index 83d919b5200a..2a4af00cca07 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json @@ -9,22 +9,27 @@ }, "responses": { "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/managedInstances/securityalert-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", - "location": "Japan East", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": ["test@microsoft.com","user@microsoft.com"], - "disabledAlerts": ["Usage_Anomaly"], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" - } + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/managedInstances/securityalert-2080/databases/testdb", + "name": "default", + "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", + "location": "Japan East", + "kind": "V12", + "properties": { + "state": "Enabled", + "emailAccountAdmins": "true", + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Usage_Anomaly" + ], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "" } + } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json index ce99d6284b25..bd8d7b310efe 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json @@ -19,8 +19,13 @@ "properties": { "state": "Enabled", "emailAccountAdmins": "true", - "emailAddresses": [ "test@microsoft.com", "user@microsoft.com" ], - "disabledAlerts": [ "Usage_Anomaly" ], + "emailAddresses": [ + "test@microsoft.com", + "user@microsoft.com" + ], + "disabledAlerts": [ + "Usage_Anomaly" + ], "retentionDays": 0, "storageAccountAccessKey": "", "storageEndpoint": "" diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreate.json index 0914e9491265..b211c573ce60 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreate.json @@ -1,28 +1,27 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2020-02-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2020-02-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - } + "properties": { + "state": "Enabled" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Enabled" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Enabled" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json index 01db47d66248..18e7364bae5e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json @@ -1,40 +1,49 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json index d04d11b02c85..f439168f61c9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json @@ -1,36 +1,35 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [], + "disabledAlerts": [], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json index 430662a4ae24..41deb8264a25 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2020-02-02-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Disabled", - "creationTime": "3/11/2020 12:00:00 AM" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2020-02-02-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "properties": { + "state": "Disabled", + "creationTime": "3/11/2020 12:00:00 AM" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json index eb554889ab73..2d81e2398063 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json @@ -1,22 +1,22 @@ { "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "api-version": "2020-02-02-preview" + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "managedInstanceName": "securityalert-6440", + "api-version": "2020-02-02-preview" }, "responses": { "200": { "body": { "value": [ { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "location": "Japan East", - "properties": { - "state": "Disabled", - "creationTime": "3/11/2020 12:00:00 AM" + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", + "name": "Default", + "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", + "location": "Japan East", + "properties": { + "state": "Disabled", + "creationTime": "3/11/2020 12:00:00 AM" } } ] diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json index ecc2460ce7e9..8abff3098570 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json @@ -1,45 +1,45 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "sku": { - "name": "S1", - "tier": "Standard" - }, - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824 - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S1", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S1", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} + "sku": { + "name": "S1", + "tier": "Standard" + }, + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824 + } } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "S1", + "tier": "Standard" + }, + "kind": "v12.0,user", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "S1", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json index b0b211816a51..b7cadca93aa5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json @@ -1,47 +1,47 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "sku": { - "name": "BC_Gen4_4" - }, - "properties": { - "maxSizeBytes": 1073741824, - "licenseType": "LicenseIncluded" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "BC_Gen4_4", - "tier": "BusinessCritical", - "capacity": 4 - }, - "kind": "v12.0,user,vcore", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_4", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} + "sku": { + "name": "BC_Gen4_4" + }, + "properties": { + "maxSizeBytes": 1073741824, + "licenseType": "LicenseIncluded" + } } + }, + "responses": { + "200": { + "body": { + "sku": { + "name": "BC_Gen4_4", + "tier": "BusinessCritical", + "capacity": 4 + }, + "kind": "v12.0,user,vcore", + "properties": { + "collation": "SQL_Latin1_General_CP1_CI_AS", + "maxSizeBytes": 1073741824, + "status": "Online", + "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", + "creationDate": "2017-06-07T04:41:33.937Z", + "currentServiceObjectiveName": "BC_Gen4_4", + "defaultSecondaryLocation": "North Europe", + "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", + "licenseType": "LicenseIncluded", + "maxLogSizeBytes": 104857600 + }, + "location": "southeastasia", + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", + "name": "testdb", + "type": "Microsoft.Sql/servers/databases" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json index b36422467fd1..a2b0165e525b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json @@ -31,4 +31,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json index 2a5a534d8d02..963ff8794aad 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json @@ -1,15 +1,15 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/newtestdb" - } - }, - "responses": { - "200": { } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/newtestdb" } -} \ No newline at end of file + }, + "responses": { + "200": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json index d7e363709545..19265add6d6b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json @@ -31,4 +31,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json index 9d78936231cb..f57815d10ee6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json @@ -77,4 +77,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json index b5fcc8866d50..fbe464975c3a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json @@ -57,4 +57,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json index 905d494a2846..cc18a631a676 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json @@ -45,4 +45,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json index ed8ac172d95d..4227be1f5631 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json @@ -10,4 +10,4 @@ "202": {}, "204": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json index 0871f866e81a..0e1f013dc0de 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json index bbd9b7a9ba24..0ec3645828c9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json index 3ddf2af20c71..85c9caac2a56 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json @@ -70,4 +70,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreate.json index 828afed3abfb..1b2fdd656f05 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreate.json @@ -1,28 +1,27 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2020-02-02-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2020-02-02-preview", - "parameters": { - "properties": { - "state": "Enabled" - } + "properties": { + "state": "Enabled" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json index 0ee9a5edfffe..9337c95f94dc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json @@ -1,40 +1,49 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly", "Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "testSecurityAlert@microsoft.com" + ], + "disabledAlerts": [ + "Access_Anomaly", + "Usage_Anomaly" + ], + "retentionDays": 5, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": ["testSecurityAlert@microsoft.com"], - "disabledAlerts": ["Access_Anomaly","Usage_Anomaly"], - "retentionDays": 5, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json index 48cc23daeadb..956ec4096fcd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json @@ -1,37 +1,40 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2017-03-01-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } + "properties": { + "state": "Disabled", + "emailAccountAdmins": true, + "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "storageEndpoint": "https://mystorage.blob.core.windows.net" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "emailAccountAdmins": true, + "emailAddresses": [ + "" + ], + "disabledAlerts": [ + "" + ], + "retentionDays": 0, + "storageAccountAccessKey": "", + "storageEndpoint": "https://mystorage.blob.core.windows.net" } + } }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [""], - "disabledAlerts": [""], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": { - } - } -} \ No newline at end of file + "202": {} + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json index 21d50799224e..bf03f68520de 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json @@ -1,22 +1,22 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2020-02-02-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "creationTime": "3/11/2020 12:00:00 AM" - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "securityalert-4799", + "serverName": "securityalert-6440", + "securityAlertPolicyName": "Default", + "api-version": "2020-02-02-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", + "name": "Default", + "type": "Microsoft.Sql/servers/securityAlertPolicies", + "properties": { + "state": "Enabled", + "creationTime": "3/11/2020 12:00:00 AM" } + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json index f91af2bbabaa..08e1b3c01a55 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json @@ -48,4 +48,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json index e49fc127294b..0df67afe1759 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json @@ -39,4 +39,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json index f1d6971479a2..ed6885769e72 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json @@ -33,4 +33,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json index 340fc22948b0..09e702b32565 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json @@ -29,4 +29,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json index 9e0c54beb14b..207418869886 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json @@ -24,4 +24,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json index 2a1a92cb6eaa..ff8475496a91 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json @@ -1,30 +1,23 @@ { - "parameters": - { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "WestUS", - "usageName": "ServerQuota", - "api-version": "2015-05-01-preview" + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "WestUS", + "usageName": "ServerQuota", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "displayName": "Regional Server Quota for West US", + "currentValue": 1.0, + "limit": 20.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", + "name": "ServerQuota", + "type": "Microsoft.Sql/locations/usages" + } } - , - "responses": - { - "200": - { - "body": - { - "properties": - { - "displayName": "Regional Server Quota for West US", - "currentValue": 1.0, - "limit": 20.0, - "unit": "Count" - } - , - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", - "name": "ServerQuota", - "type": "Microsoft.Sql/locations/usages" - } - } - } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json index c4933a612680..92ea1b8c7259 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json @@ -1,44 +1,48 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "WestUS", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [{ - "properties": { - "displayName": "Regional Server Quota for West US", - "currentValue": 1.0, - "limit": 20.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", - "name": "ServerQuota", - "type": "Microsoft.Sql/locations/usages" - }, { - "properties": { - "displayName": "Free Database Count per Subscription for West US", - "currentValue": 0.0, - "limit": 1.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseCount", - "name": "SubscriptionFreeDatabaseCount", - "type": "Microsoft.Sql/locations/usages" - }, { - "properties": { - "displayName": "Free to Basic Database Upgrade count-down in West US", - "currentValue": 365.0, - "limit": 365.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseDaysLeft", - "name": "SubscriptionFreeDatabaseDaysLeft", - "type": "Microsoft.Sql/locations/usages" - }] - } - } + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "locationName": "WestUS", + "api-version": "2015-05-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "displayName": "Regional Server Quota for West US", + "currentValue": 1.0, + "limit": 20.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", + "name": "ServerQuota", + "type": "Microsoft.Sql/locations/usages" + }, + { + "properties": { + "displayName": "Free Database Count per Subscription for West US", + "currentValue": 0.0, + "limit": 1.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseCount", + "name": "SubscriptionFreeDatabaseCount", + "type": "Microsoft.Sql/locations/usages" + }, + { + "properties": { + "displayName": "Free to Basic Database Upgrade count-down in West US", + "currentValue": 365.0, + "limit": 365.0, + "unit": "Count" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseDaysLeft", + "name": "SubscriptionFreeDatabaseDaysLeft", + "type": "Microsoft.Sql/locations/usages" + } + ] + } } -} \ No newline at end of file + } +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json index 104a0b08edd2..47d9d26f02f7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json @@ -25,4 +25,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json index 586298b75293..1f7af7061238 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json @@ -27,4 +27,4 @@ }, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json index 499aafe92cc7..76aed8cca6eb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json @@ -10,4 +10,4 @@ "200": {}, "202": {} } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json index b399288c5e9b..82161062d003 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json @@ -1090,4 +1090,4 @@ } } } -} \ No newline at end of file +} From a961bfba4cefd3e62dbc5e12dbed6918afc4bc00 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Mon, 17 Aug 2020 15:09:26 -0700 Subject: [PATCH 06/43] Update with tweak to IE parameters to split by API --- .../preview/2020-02-02-preview/databases.json | 108 ++++++++++++------ .../preview/2020-02-02-preview/servers.json | 8 +- 2 files changed, 79 insertions(+), 37 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json index 249b7a55b055..3401c73295a7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json @@ -458,7 +458,7 @@ "description": "The database import request parameters.", "required": true, "schema": { - "$ref": "#/definitions/ImportExportDatabaseDefinition" + "$ref": "#/definitions/ImportExistingDatabaseDefinition" } }, { @@ -516,7 +516,7 @@ "description": "The database export request parameters.", "required": true, "schema": { - "$ref": "#/definitions/ImportExportDatabaseDefinition" + "$ref": "#/definitions/ExportDatabaseDefinition" } }, { @@ -1193,8 +1193,8 @@ } } }, - "ImportExportDatabaseDefinition": { - "description": "Contains the information necessary to perform import/export operation.", + "ImportExistingDatabaseDefinition": { + "description": "Contains the information necessary to perform import operation for existing database.", "required": [ "storageKeyType", "storageKey", @@ -1204,34 +1204,6 @@ ], "type": "object", "properties": { - "databaseName": { - "description": "Name of the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "edition": { - "description": "Edition of the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "serviceObjectiveName": { - "description": "Service level objective name of the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "maxSizeBytes": { - "description": "Max size in bytes for the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, "storageKeyType": { "description": "Storage key type.", "enum": [ @@ -1418,6 +1390,76 @@ } } }, + "ExportDatabaseDefinition": { + "description": "Contains the information necessary to perform export database operation.", + "required": [ + "storageKeyType", + "storageKey", + "storageUri", + "administratorLogin", + "administratorLoginPassword" + ], + "type": "object", + "properties": { + "storageKeyType": { + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "storageKey": { + "description": "Storage key.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageUri": { + "description": "Storage Uri.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLogin": { + "description": "Administrator login name.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLoginPassword": { + "description": "Administrator login password.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "authenticationType": { + "description": "Authentication type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "networkIsolation": { + "$ref": "#/definitions/NetworkIsolationSettings", + "description": "Optional resource information to enable network isolation for request.", + "x-ms-mutability": [ + "create" + ] + } + } + }, "ResourceMoveDefinition": { "description": "Contains the information necessary to perform a resource move (rename).", "required": [ @@ -1552,4 +1594,4 @@ } } } -} +} \ No newline at end of file diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json index 82161062d003..1dc764e4dc90 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json @@ -36,7 +36,7 @@ "description": "The database import request parameters.", "required": true, "schema": { - "$ref": "#/definitions/ImportExportDatabaseDefinition" + "$ref": "#/definitions/ImportNewDatabaseDefinition" } }, { @@ -382,8 +382,8 @@ } }, "definitions": { - "ImportExportDatabaseDefinition": { - "description": "Contains the information necessary to perform import/export operation.", + "ImportNewDatabaseDefinition": { + "description": "Contains the information necessary to perform import operation for new database.", "required": [ "storageKeyType", "storageKey", @@ -1090,4 +1090,4 @@ } } } -} +} \ No newline at end of file From d8c2637b81aefdf40b4fd46e297551899ec26cda Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Mon, 17 Aug 2020 15:22:12 -0700 Subject: [PATCH 07/43] Run prettier --- .../Microsoft.Sql/preview/2020-02-02-preview/databases.json | 2 +- .../Microsoft.Sql/preview/2020-02-02-preview/servers.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json index 3401c73295a7..a84afdf36e6a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json @@ -1594,4 +1594,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json index 1dc764e4dc90..25ad18f91749 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json @@ -1090,4 +1090,4 @@ } } } -} \ No newline at end of file +} From 4a1825b4a0a4e4ce7797d1ea1d6ea8a2b9b6c993 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Mon, 17 Aug 2020 15:52:16 -0700 Subject: [PATCH 08/43] Update readme.md --- specification/sql/resource-manager/readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/specification/sql/resource-manager/readme.md b/specification/sql/resource-manager/readme.md index fecbf7467db3..54846815a372 100644 --- a/specification/sql/resource-manager/readme.md +++ b/specification/sql/resource-manager/readme.md @@ -142,6 +142,8 @@ input-file: - Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json - Microsoft.Sql/preview/2020-02-02-preview/ServerAzureADOnlyAuthentications.json - Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json +- Microsoft.Sql/preview/2020-02-02-preview/servers.json +- Microsoft.Sql/preview/2020-02-02-preview/databases.json # Needed when there is more than one input file override-info: @@ -500,6 +502,8 @@ input-file: - ./Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json - ./Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json - Microsoft.Sql/preview/2020-02-02-preview/ServerAzureADOnlyAuthentications.json +- Microsoft.Sql/preview/2020-02-02-preview/servers.json +- Microsoft.Sql/preview/2020-02-02-preview/databases.json # Needed when there is more than one input file override-info: From 82015b027c3a0662115b0683a2cd892f941e1f3d Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Mon, 17 Aug 2020 16:45:35 -0700 Subject: [PATCH 09/43] Change to use ImportExport tag to prevent task failure for lint --- .../preview/2020-02-02-preview/databases.json | 1597 -- .../examples/AdministratorCreateOrUpdate.json | 47 - .../examples/AdministratorDelete.json | 14 - .../examples/AdministratorGet.json | 24 - .../examples/AdministratorList.json | 24 - ...ckNameAvailabilityServerAlreadyExists.json | 20 - .../CheckNameAvailabilityServerAvailable.json | 18 - .../CheckNameAvailabilityServerInvalid.json | 20 - .../examples/CreateDatabaseCopyMode.json | 69 - .../examples/CreateDatabaseDefaultMode.json | 70 - .../examples/CreateDatabaseMin.json | 61 - .../examples/CreateDatabasePITRMode.json | 70 - .../examples/CreateDatabaseRecoveryMode.json | 69 - .../CreateDatabaseRestoreLtrBackup.json | 69 - .../examples/CreateDatabaseRestoreMode.json | 70 - .../examples/CreateDatabaseRestoreMode2.json | 69 - .../examples/CreateDatabaseSecondaryMode.json | 69 - .../CreateDwDatabaseByServiceObjective.json | 82 - ...ateHyperscaleDatabaseWithReadReplicas.json | 79 - ...CreateVCoreDatabaseByServiceObjective.json | 78 - .../CreateVCoreDatabaseBySkuNameCapacity.json | 77 - ...eVCoreDatabaseBySkuTierFamilyCapacity.json | 76 - .../examples/DatabaseSecurityAlertCreate.json | 4 +- .../DatabaseSecurityAlertCreateMax.json | 76 - .../DatabaseSecurityAlertCreateMin.json | 51 - .../examples/DatabaseSecurityAlertGet.json | 4 +- .../DatabaseSecurityAlertListByDatabase.json | 4 +- .../examples/DeleteDatabase.json | 14 - .../ElasticPoolCreateOrUpdateMax.json | 72 - .../ElasticPoolCreateOrUpdateMin.json | 61 - .../examples/ElasticPoolDelete.json | 17 - .../examples/ElasticPoolGet.json | 36 - .../examples/ElasticPoolListByServer.json | 81 - .../examples/ElasticPoolUpdateMax.json | 52 - .../examples/ElasticPoolUpdateMin.json | 36 - .../examples/ExportDatabase.json | 64 +- .../ExportDatabaseWithNetworkIsolation.json | 38 +- .../examples/FailoverDatabase.json | 14 - .../examples/FirewallRuleCreate.json | 38 - .../examples/FirewallRuleDelete.json | 17 - .../examples/FirewallRuleGet.json | 22 - .../examples/FirewallRuleList.json | 52 - .../examples/FirewallRuleReplace.json | 33 - .../examples/FirewallRuleUpdate.json | 39 - .../examples/GetDatabase.json | 34 - ...orableDroppedShortTermRetentionPolicy.json | 22 - .../examples/GetShortTermRetentionPolicy.json | 2 +- .../examples/GetVCoreDatabase.json | 39 - .../examples/ImportDatabase.json | 38 +- .../ImportDatabaseWithNetworkIsolation.json | 38 +- .../examples/ImportNewDatabase.json | 38 +- ...ImportNewDatabaseWithNetworkIsolation.json | 38 +- .../examples/ListDatabasesByElasticPool.json | 61 - .../examples/ListDatabasesByServer.json | 58 - ...dShortTermRetentionPoliciesByDatabase.json | 26 - ...tShortTermRetentionPoliciesByDatabase.json | 2 +- .../examples/ListVCoreDatabasesByServer.json | 63 - ...istVCoreInaccessibleDatabasesByServer.json | 42 - .../LocationCapabilityListByLocation.json | 17969 ---------------- ...ManagedDatabaseSecurityAlertCreateMax.json | 76 - ...ManagedDatabaseSecurityAlertCreateMin.json | 51 - .../ManagedDatabaseSecurityAlertGet.json | 35 - ...edDatabaseSecurityAlertListByDatabase.json | 38 - .../ManagedServerSecurityAlertCreateMax.json | 49 - .../ManagedServerSecurityAlertCreateMin.json | 35 - .../ManagedServerSecurityAlertGet.json | 2 +- ...agedServerSecurityAlertListByInstance.json | 3 +- .../examples/PatchDatabase.json | 45 - .../examples/PatchVCoreDatabase.json | 47 - .../examples/PauseDatabase.json | 34 - .../examples/RenameDatabase.json | 15 - .../examples/ResumeDatabase.json | 34 - .../examples/ServerCreate.json | 80 - .../examples/ServerCreateMax.json | 60 - .../examples/ServerCreateMin.json | 48 - .../examples/ServerDelete.json | 13 - .../examples/ServerGet.json | 44 - .../examples/ServerList.json | 72 - .../examples/ServerListByResourceGroup.json | 73 - .../ServerSecurityAlertsCreateMax.json | 49 - .../ServerSecurityAlertsCreateMin.json | 40 - .../examples/ServerSecurityAlertsGet.json | 2 +- .../ServerSecurityAlertsListByServer.json | 3 +- .../examples/ServerUpdate.json | 51 - .../examples/ServerUpdateMax.json | 42 - .../examples/ServerUpdateMin.json | 36 - .../examples/SqlAgentConfigurationGet.json | 32 - .../examples/SqlAgentConfigurationPut.json | 27 - .../examples/SubscriptionUsageGet.json | 23 - .../SubscriptionUsageListByLocation.json | 48 - ...orableDroppedShortTermRetentionPolicy.json | 28 - .../UpdateShortTermRetentionPolicy.json | 2 +- .../examples/UpgradeDataWarehouse.json | 13 - .../preview/2020-02-02-preview/servers.json | 1093 - 94 files changed, 137 insertions(+), 24273 deletions(-) delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json delete mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json deleted file mode 100644 index a84afdf36e6a..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/databases.json +++ /dev/null @@ -1,1597 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "version": "2020-02-02-preview", - "title": "SqlManagementClient", - "description": "The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities." - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases": { - "get": { - "tags": [ - "Databases" - ], - "description": "Gets a list of databases.", - "operationId": "Databases_ListByServer", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully retrieved the list of databases.", - "schema": { - "$ref": "#/definitions/DatabaseListResult" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription." - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-examples": { - "Gets a list of databases.": { - "$ref": "./examples/ListVCoreDatabasesByServer.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}": { - "get": { - "tags": [ - "Databases" - ], - "description": "Gets a database.", - "operationId": "Databases_Get", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully retrieved the specified database.", - "schema": { - "$ref": "#/definitions/Database" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ResourceNotFound - The requested resource was not found." - } - }, - "x-ms-examples": { - "Gets a database.": { - "$ref": "./examples/GetVCoreDatabase.json" - } - } - }, - "put": { - "tags": [ - "Databases" - ], - "description": "Creates a new database or updates an existing database.", - "operationId": "Databases_CreateOrUpdate", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "name": "parameters", - "in": "body", - "description": "The requested database resource state.", - "required": true, - "schema": { - "$ref": "#/definitions/Database" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully updated the database.", - "schema": { - "$ref": "#/definitions/Database" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 InvalidDatabaseCreateOrUpdateRequest - The request body for the create or update database operation is invalid.\n\n * 400 InvalidResourceId - Invalid resource identifier.\n\n * 400 InvalidSourceDatabaseId - Invalid source database identifier.\n\n * 400 MismatchingResourceGroupNameWithUrl - The provided resource group name did not match the name in the Url.\n\n * 400 MismatchingServerNameWithUrl - The provided server name did not match the name in the Url.\n\n * 400 MismatchingSubscriptionWithUrl - The provided subscription did not match the subscription in the Url.\n\n * 400 MissingCollation - Collation is required.\n\n * 400 MissingMaxSizeBytes - MaxSizeBytes is required.\n\n * 400 MissingSkuName - Sku name is required.\n\n * 400 MissingSourceDatabaseId - Missing source database identifier.\n\n * 400 InvalidLicenseType - The specified license type is invalid.\n\n * 400 InvalidSkuName - Invalid SKU name.\n\n * 400 MismatchedSkuNameAndCapacity - Mismatch between SKU name and capacity.\n\n * 400 MismatchedSkuNameAndTier - Mismatch between SKU name and tier.\n\n * 400 MismatchedSkuNameAndFamily - Mismatch between SKU name and family.\n\n * 400 DatabaseNameDoesNotMatchSourceDatabaseId - The database name specified doesn’t match the database name in sourceDatabaseId.\n\n * 400 ElasticPoolNotSupportedForExternalBackupRestore - Elastic pool is not supported for external backup restore\n\n * 400 InvalidRecoverableDatabaseId - Invalid recoverable database identifier.\n\n * 400 InvalidRecoveryServicesRecoveryPointId - Invalid recovery services recovery point identifier.\n\n * 400 InvalidRestorableDroppedDatabaseDeletionDate - The restorable dropped database deletion date given is invalid\n\n * 400 InvalidRestorableDroppedDatabaseId - Invalid restorable dropped database identifier\n\n * 400 MissingRecoverableDatabaseId - Missing recoverable database identifier.\n\n * 400 MissingRecoveryServicesRecoveryPointId - Missing recovery services recovery point Id.\n\n * 400 MissingRestorableDroppedDatabaseId - Missing restorableDroppedDatabaseId\n\n * 400 MissingRestorePointInTime - Missing restore point in time\n\n * 400 MissingSourceDatabaseDeletionDate - Missing source database deletion date\n\n * 400 MissingStorageContainerSasToken - Missing storage container SAS token\n\n * 400 MissingStorageContainerUri - Missing storage container URI\n\n * 400 RestorableDroppedDatabaseIdGivenForRestoreWithSourceDatabaseId - Cannot specify restorableDroppedDatabaseId when sourceDatabaseId is already given in restore create mode\n\n * 400 InvalidCollation - Collation is not recognized by the server.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 UnableToResolveRemoteServer - The remote partner server name could not be resolved due to an invalid server name or DNS connectivity issues.\n\n * 400 ElasticPoolOverStorageUsage - Attempting to write data to a database when the storage limit of the elastic pool has been reached.\n\n * 400 RemoteDatabaseCopyPermission - User does not have sufficient permission to create a database copy on the specified server.\n\n * 400 SourceDatabaseNotFound - The source database does not exist.\n\n * 400 UpdateNotAllowedInCurrentReplicationState - The operation is disallowed on the database in its current replication state.\n\n * 400 GeoReplicaLimitReached - The per-replica replication limit was reached.\n\n * 400 ReplicationSourceAndTargetMustHaveSameName - The replication source and target databases must have the same name.\n\n * 400 ReplicationSourceAndTargetMustBeInDifferentServers - The replication source and target databases must be in different logical servers.\n\n * 400 ChangeUnsupportedOnEntity - User attempted an unsupported create/update/delete operation on a given entity.\n\n * 400 TierChangeUnsupportedDueToMemoryOptimizedObject - The database cannot update its sku because it has memory-optimized objects.\n\n * 400 SourceServerNotFound - The server part of a source database id provided in a CreateDatabaseAsCopy API call doesn't map to an existing server.\n\n * 400 InvalidDatabaseCreateMode - Invalid request to create a database.\n\n * 400 InvalidAddSecondaryPermission - User does not have sufficient permission to add secondary on the specified server.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CurrentDatabaseLogSizeExceedsMaxSize - User attempted to change the database to a sku with lower max log size than the current usage.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 InvalidSku - The user specified an invalid sku.\n\n * 400 InvalidTierSkuCombination - The specified tier does not support the specified sku.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 OfferDisabledOnSubscription - Subscription offer type is restricted from provisioning the requested resource.\n\n * 400 InvalidTargetSubregion - The target server of a non-readable secondary is not in a DR paired Azure region.\n\n * 400 PartnerServerNotCompatible - The user is attempting to copy a database from a SAWA V1 server to a Sterling server or vice versa.\n\n * 400 IncorrectReplicationLinkState - The operation expects the database to be in an expected state on the replication link.\n\n * 400 TargetElasticPoolDoesNotExist - The elastic pool does not exist on a server.\n\n * 400 CurrentDatabaseSizeExceedsMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 ElasticPoolSkuCombinationInvalid - Elastic pool and sku can be specified together only if sku is specified as 'ElasticPool'.\n\n * 400 ElasticPoolTierCombinationInvalid - The database tier is different than the elastic pool service tier.\n\n * 400 ElasticPoolNameRequired - User tried to create or update database to elastic pool service objective without specifying the name of the elastic pool.\n\n * 400 AzureKeyVaultInvalidExpirationDate - The operation could not be completed because the Azure Key Vault key expiration date is invalid.\n\n * 400 SecurityAzureKeyVaultUrlNullOrEmpty - The operation could not be completed because the Azure Key Vault Uri is null or empty.\n\n * 400 AzureKeyVaultInvalidUri - An invalid response from Azure Key Vault. Please use a valid Azure Key Vault URI.\n\n * 400 ElasticPoolInconsistentDtuGuaranteeSettings - Attempting to provide DTU min for databases in the elastic pool that exceeds requested DTUs of the elastic pool.\n\n * 400 InvalidReadScaleEdition - User attempted to enable read scale on a database type that does not support it.\n\n * 400 InvalidReadScaleUnits - User attempted to provide a read scale value that is not supported.\n\n * 400 SecurityAzureKeyVaultInvalidKeyName - The operation could not be completed because of an invalid Server Key name.\n\n * 400 ElasticPoolDatabaseCountOverLimit - Attempting to create or add database to elastic pool when the database count limit of the elastic pool has been reached.\n\n * 400 CannotChangeToOrFromDataWarehouseTier - User attempted to change the sku of a database from DataWarehouse tier to non DataWarehouse tiers or vice versa.\n\n * 400 AzureKeyVaultMalformedVaultUri - The provided Key Vault uri is not valid.\n\n * 400 ElasticPoolDecreaseStorageLimitBelowUsage - Attempting to decrease the storage limit of the elastic pool below its storage usage.\n\n * 400 UpdateNotAllowedOnPausedDatabase - User attempted to perform an update on a paused database.\n\n * 400 RequestedDatabaseSizeRequiresShrink - User attempted to ALTER DATABASE MODIFY MAXSIZE to modify the MAXSIZE for a database to a smaller size then the current size.\n\n * 400 CurrentDatabaseSizeExceedsDbMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 CannotUseTrailingWhitespacesInDatabaseName - The database name validation failed.\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 SecurityAdalPrincipalCertExpiredError - The operation could not be completed because the Azure Key Vault principal certificate has expired.\n\n * 400 SecurityInvalidAzureKeyVaultRecoveryLevel - The provided Key Vault uri is not valid.\n\n * 400 KeyMaterialNotFoundOnRemoteServer - Remote server does not have access to key material used as a TDE protector.\n\n * 400 AzureKeyVaultMismatchError - Unexpected Key Vault region found in the http response.\n\n * 400 SourceDatabaseEditionCouldNotBeUpgraded - The source database cannot have higher edition than the target database.\n\n * 400 AzureKeyVaultRsaKeyNotSupported - The provided key vault uses unsupported RSA Key Size or Key Type. The supported RSA key size is 2048 or 3072 and Key Type is RSA or RSA-HSM.\n\n * 400 TargetDatabaseEditionCouldNotBeDowngraded - The target database cannot have lower edition than the source database.\n\n * 400 UpdateNotAllowedIfGeoDrOperationInProgress - The operation is disallowed because copy or failover operation for database '{0}' on server '{1}' is currently in progress.\n\n * 400 ElasticPoolOverFileSpace - Insufficient file space in the elastic pool.\n\n * 400 SecurityAzureKeyVaultGeoChainError - Creating secondary of secondary (a process known as chaining) is not supported when enabling Transparent Data Encryption using Azure Key Vault (BYOK).\n\n * 400 InvalidLicenseType - User tried to create or update a database or elastic pool with unsupported license type.\n\n * 400 UnsupportedCapacity - User tried to create or update database with capacity which is not supported.\n\n * 400 RestoreToFreeEditionNotSupported - Restore and GeoRestore target cannot be free database.\n\n * 400 RestoreNotSupportedForFreeEdition - Restore and GeoRestore are not supported for free database.\n\n * 400 InvalidDroppedDatabase - Source database dropped does not exist on server within the supported recovery period.\n\n * 400 InvalidLiveDatabase - Source database does not exist on server within the supported recovery period. If restoring a dropped database, please specify its deletion date.\n\n * 400 InvalidVldbRecoverySlo - The Hyperscale edition recovery requires both source and target databases to use Hyperscale service level objective.\n\n * 400 InvalidVldbRestoreSlo - The Hyperscale edition Point-In-Time restore requires both source and target databases to use Hyperscale service level objective.\n\n * 400 CannotSpecifyPoolOrSlo - Specifying an elastic pool and/or changing the service level objective or edition is not supported for edition.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 JobAgentDatabaseEditionUnsupported - The specified database's service level objective is not supported for use as a job agent database.\n\n * 400 CannotUpdateToFreeDatabase - Updating a database to the free sku is not supported.\n\n * 400 InvalidBackupStorageAccountType - User passed zrs/lrs during create/update of a database but it failed either because the customer is not whitelisted or because zrs is not available in the specified region.\n\n * 400 DatabaseInvalidSkuPropertyCombination - The properties of the requested sku are inconsistent. Please check that a valid combination is specified. See https://docs.microsoft.com/en-us/rest/api/sql/capabilities/listbylocation#serviceobjectivecapability for more details.\n\n * 400 DatabaseNamedReplicaPerDatabaseLimitExceeded - User tried create a named replica that would exceed the allowed number per primary database\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 ElasticPoolInconsistentVcoreGuaranteeSettings - The number of databases and VCore min per database cannot exceed requested VCores of the elastic pool.\n\n * 400 InvalidMaxSizeTierCombination - The specified tier does not support the specified database max size.\n\n * 400 InvalidTier - The user specified an invalid tier.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 401 AzureKeyVaultKeyDisabled - The operation could not be completed on the server because the Azure Key Vault key is disabled.\n\n * 401 AzureKeyVaultNoServerIdentity - The server identity is not correctly configured.\n\n * 401 AzureKeyVaultMissingPermissions - The server is missing required permissions on the Azure Key Vault. \n\n * 401 AdalGenericError - The operation could not be completed because an Azure Active Directory error was encountered.\n\n * 401 AdalServicePrincipalNotFound - The operation could not be completed because an Azure Active Directory library Service Principal not found error was encountered.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 CannotFindObject - Cannot find the object because it does not exist or you do not have permissions\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 405 UnsupportedReplicationOperation - An unsupported replication operation was initiated on the database.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 InvalidOperationForDatabaseNotInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 InvalidOperationForDatabaseInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 RemoteDatabaseExists - The destination database name already exists on the destination server.\n\n * 409 DuplicateGeoDrRelation - The databases are already in a replication relation. This is a duplicate request.\n\n * 409 FreeDbAlreadyExists - Only one free database can exist for a subscription per region.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ConflictingSystemOperationInProgress - A system maintenance operation is in progress on the database and further operations need to wait until it is completed.\n\n * 409 SkuAssignmentInProgress - The current assignment request cannot be processed because a previous request has not completed.\n\n * 409 CurrentMemoryUsageExceedsSkuQuota - User attempted an sku update operation that cannot be completed due to the higher resource consumption.\n\n * 409 ServerDtuQuotaExceeded - Could not perform the operation because server would exceed the allowed Database Throughput Unit quota.\n\n * 409 ServerKeyNameAlreadyExists - The server key already exists on the server.\n\n * 409 ServerKeyUriAlreadyExists - The server key URI already exists on the server.\n\n * 409 UnableToAlterDatabaseInReplication - User altered edition on a database in a replication relationship.\n\n * 409 ServerKeyDoesNotExists - The server key does not exist.\n\n * 409 UpdateSloInProgress - User tried to initiate an incompatible operation while a SLO update was in progress.\n\n * 409 AzureKeyVaultKeyNameNotFound - The operation could not be completed because the Azure Key Vault Key name does not exist.\n\n * 409 AzureKeyVaultKeyInUse - The key is currently being used by the server.\n\n * 409 SimultaneousSkuChangeNotAllowed - Service objective change operations cannot run on both databases of a replication relationship at the same time.\n\n * 409 TargetElasticPoolBeingUpdated - The update of elastic pool cannot be started because there is copy operation in progress for one of the databases in this elastic pool\n\n * 409 DatabaseCopyLimitPerReplicaReached - User reached the limit of concurrent database copies.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingDatabaseOperation - There is already some operation on the database and the current operation should wait till it is done.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows\n\n * 503 AzureKeyVaultConnectionFailed - The operation could not be completed on the server because attempts to connect to Azure Key Vault have failed\n\n * 503 AzureKeyVaultGenericConnectionError - The operation could not be completed because an error was encountered when attempting to retrieve Key Vault information .\n\n * 503 DatabaseUnavailable - The operation failed because the database is unavailable.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 504 RequestTimeout - Service request exceeded the allowed timeout." - }, - "202": { - "description": "Creating or updating the database is in progress." - }, - "201": { - "description": "Successfully created the database.", - "schema": { - "$ref": "#/definitions/Database" - } - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Creates a VCore database by specifying service objective name.": { - "$ref": "./examples/CreateVCoreDatabaseByServiceObjective.json" - }, - "Creates a VCore database by specifying sku name and capacity.": { - "$ref": "./examples/CreateVCoreDatabaseBySkuNameCapacity.json" - }, - "Creates a data warehouse by specifying service objective name.": { - "$ref": "./examples/CreateDwDatabaseByServiceObjective.json" - }, - "Creates a database with minimum number of parameters.": { - "$ref": "./examples/CreateDatabaseMin.json" - }, - "Creates a database with default mode.": { - "$ref": "./examples/CreateDatabaseDefaultMode.json" - }, - "Creates a database as a copy.": { - "$ref": "./examples/CreateDatabaseCopyMode.json" - }, - "Creates a database as an on-line secondary.": { - "$ref": "./examples/CreateDatabaseSecondaryMode.json" - }, - "Creates a database from PointInTimeRestore.": { - "$ref": "./examples/CreateDatabasePITRMode.json" - }, - "Creates a database from restore with database deletion time.": { - "$ref": "./examples/CreateDatabaseRestoreMode.json" - }, - "Creates a database from restore with restorableDroppedDatabaseId.": { - "$ref": "./examples/CreateDatabaseRestoreMode2.json" - }, - "Creates a database from recoverableDatabaseId.": { - "$ref": "./examples/CreateDatabaseRecoveryMode.json" - } - } - }, - "delete": { - "tags": [ - "Databases" - ], - "description": "Deletes the database.", - "operationId": "Databases_Delete", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully deleted the database." - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources." - }, - "202": { - "description": "Deleting the database is in progress." - }, - "204": { - "description": "The specified database does not exist." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Deletes a database.": { - "$ref": "./examples/DeleteDatabase.json" - } - } - }, - "patch": { - "tags": [ - "Databases" - ], - "description": "Updates an existing database.", - "operationId": "Databases_Update", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "name": "parameters", - "in": "body", - "description": "The requested database resource state.", - "required": true, - "schema": { - "$ref": "#/definitions/DatabaseUpdate" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully updated the database.", - "schema": { - "$ref": "#/definitions/Database" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 InvalidDatabaseCreateOrUpdateRequest - The request body for the create or update database operation is invalid.\n\n * 400 InvalidResourceId - Invalid resource identifier.\n\n * 400 InvalidSourceDatabaseId - Invalid source database identifier.\n\n * 400 MismatchingResourceGroupNameWithUrl - The provided resource group name did not match the name in the Url.\n\n * 400 MismatchingServerNameWithUrl - The provided server name did not match the name in the Url.\n\n * 400 MismatchingSubscriptionWithUrl - The provided subscription did not match the subscription in the Url.\n\n * 400 MissingCollation - Collation is required.\n\n * 400 MissingMaxSizeBytes - MaxSizeBytes is required.\n\n * 400 MissingSkuName - Sku name is required.\n\n * 400 MissingSourceDatabaseId - Missing source database identifier.\n\n * 400 InvalidLicenseType - The specified license type is invalid.\n\n * 400 InvalidSkuName - Invalid SKU name.\n\n * 400 MismatchedSkuNameAndCapacity - Mismatch between SKU name and capacity.\n\n * 400 MismatchedSkuNameAndTier - Mismatch between SKU name and tier.\n\n * 400 MismatchedSkuNameAndFamily - Mismatch between SKU name and family.\n\n * 400 DatabaseNameDoesNotMatchSourceDatabaseId - The database name specified doesn’t match the database name in sourceDatabaseId.\n\n * 400 ElasticPoolNotSupportedForExternalBackupRestore - Elastic pool is not supported for external backup restore\n\n * 400 InvalidRecoverableDatabaseId - Invalid recoverable database identifier.\n\n * 400 InvalidRecoveryServicesRecoveryPointId - Invalid recovery services recovery point identifier.\n\n * 400 InvalidRestorableDroppedDatabaseDeletionDate - The restorable dropped database deletion date given is invalid\n\n * 400 InvalidRestorableDroppedDatabaseId - Invalid restorable dropped database identifier\n\n * 400 MissingRecoverableDatabaseId - Missing recoverable database identifier.\n\n * 400 MissingRecoveryServicesRecoveryPointId - Missing recovery services recovery point Id.\n\n * 400 MissingRestorableDroppedDatabaseId - Missing restorableDroppedDatabaseId\n\n * 400 MissingRestorePointInTime - Missing restore point in time\n\n * 400 MissingSourceDatabaseDeletionDate - Missing source database deletion date\n\n * 400 MissingStorageContainerSasToken - Missing storage container SAS token\n\n * 400 MissingStorageContainerUri - Missing storage container URI\n\n * 400 RestorableDroppedDatabaseIdGivenForRestoreWithSourceDatabaseId - Cannot specify restorableDroppedDatabaseId when sourceDatabaseId is already given in restore create mode\n\n * 400 InvalidCollation - Collation is not recognized by the server.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 UnableToResolveRemoteServer - The remote partner server name could not be resolved due to an invalid server name or DNS connectivity issues.\n\n * 400 ElasticPoolOverStorageUsage - Attempting to write data to a database when the storage limit of the elastic pool has been reached.\n\n * 400 RemoteDatabaseCopyPermission - User does not have sufficient permission to create a database copy on the specified server.\n\n * 400 SourceDatabaseNotFound - The source database does not exist.\n\n * 400 UpdateNotAllowedInCurrentReplicationState - The operation is disallowed on the database in its current replication state.\n\n * 400 GeoReplicaLimitReached - The per-replica replication limit was reached.\n\n * 400 ReplicationSourceAndTargetMustHaveSameName - The replication source and target databases must have the same name.\n\n * 400 ReplicationSourceAndTargetMustBeInDifferentServers - The replication source and target databases must be in different logical servers.\n\n * 400 ChangeUnsupportedOnEntity - User attempted an unsupported create/update/delete operation on a given entity.\n\n * 400 TierChangeUnsupportedDueToMemoryOptimizedObject - The database cannot update its sku because it has memory-optimized objects.\n\n * 400 SourceServerNotFound - The server part of a source database id provided in a CreateDatabaseAsCopy API call doesn't map to an existing server.\n\n * 400 InvalidDatabaseCreateMode - Invalid request to create a database.\n\n * 400 InvalidAddSecondaryPermission - User does not have sufficient permission to add secondary on the specified server.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CurrentDatabaseLogSizeExceedsMaxSize - User attempted to change the database to a sku with lower max log size than the current usage.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 InvalidSku - The user specified an invalid sku.\n\n * 400 InvalidTierSkuCombination - The specified tier does not support the specified sku.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 OfferDisabledOnSubscription - Subscription offer type is restricted from provisioning the requested resource.\n\n * 400 InvalidTargetSubregion - The target server of a non-readable secondary is not in a DR paired Azure region.\n\n * 400 PartnerServerNotCompatible - The user is attempting to copy a database from a SAWA V1 server to a Sterling server or vice versa.\n\n * 400 IncorrectReplicationLinkState - The operation expects the database to be in an expected state on the replication link.\n\n * 400 TargetElasticPoolDoesNotExist - The elastic pool does not exist on a server.\n\n * 400 CurrentDatabaseSizeExceedsMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 ElasticPoolSkuCombinationInvalid - Elastic pool and sku can be specified together only if sku is specified as 'ElasticPool'.\n\n * 400 ElasticPoolTierCombinationInvalid - The database tier is different than the elastic pool service tier.\n\n * 400 ElasticPoolNameRequired - User tried to create or update database to elastic pool service objective without specifying the name of the elastic pool.\n\n * 400 AzureKeyVaultInvalidExpirationDate - The operation could not be completed because the Azure Key Vault key expiration date is invalid.\n\n * 400 SecurityAzureKeyVaultUrlNullOrEmpty - The operation could not be completed because the Azure Key Vault Uri is null or empty.\n\n * 400 AzureKeyVaultInvalidUri - An invalid response from Azure Key Vault. Please use a valid Azure Key Vault URI.\n\n * 400 ElasticPoolInconsistentDtuGuaranteeSettings - Attempting to provide DTU min for databases in the elastic pool that exceeds requested DTUs of the elastic pool.\n\n * 400 InvalidReadScaleEdition - User attempted to enable read scale on a database type that does not support it.\n\n * 400 InvalidReadScaleUnits - User attempted to provide a read scale value that is not supported.\n\n * 400 SecurityAzureKeyVaultInvalidKeyName - The operation could not be completed because of an invalid Server Key name.\n\n * 400 ElasticPoolDatabaseCountOverLimit - Attempting to create or add database to elastic pool when the database count limit of the elastic pool has been reached.\n\n * 400 CannotChangeToOrFromDataWarehouseTier - User attempted to change the sku of a database from DataWarehouse tier to non DataWarehouse tiers or vice versa.\n\n * 400 AzureKeyVaultMalformedVaultUri - The provided Key Vault uri is not valid.\n\n * 400 ElasticPoolDecreaseStorageLimitBelowUsage - Attempting to decrease the storage limit of the elastic pool below its storage usage.\n\n * 400 UpdateNotAllowedOnPausedDatabase - User attempted to perform an update on a paused database.\n\n * 400 RequestedDatabaseSizeRequiresShrink - User attempted to ALTER DATABASE MODIFY MAXSIZE to modify the MAXSIZE for a database to a smaller size then the current size.\n\n * 400 CurrentDatabaseSizeExceedsDbMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 CannotUseTrailingWhitespacesInDatabaseName - The database name validation failed.\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 SecurityAdalPrincipalCertExpiredError - The operation could not be completed because the Azure Key Vault principal certificate has expired.\n\n * 400 SecurityInvalidAzureKeyVaultRecoveryLevel - The provided Key Vault uri is not valid.\n\n * 400 KeyMaterialNotFoundOnRemoteServer - Remote server does not have access to key material used as a TDE protector.\n\n * 400 AzureKeyVaultMismatchError - Unexpected Key Vault region found in the http response.\n\n * 400 SourceDatabaseEditionCouldNotBeUpgraded - The source database cannot have higher edition than the target database.\n\n * 400 AzureKeyVaultRsaKeyNotSupported - The provided key vault uses unsupported RSA Key Size or Key Type. The supported RSA key size is 2048 or 3072 and Key Type is RSA or RSA-HSM.\n\n * 400 TargetDatabaseEditionCouldNotBeDowngraded - The target database cannot have lower edition than the source database.\n\n * 400 UpdateNotAllowedIfGeoDrOperationInProgress - The operation is disallowed because copy or failover operation for database '{0}' on server '{1}' is currently in progress.\n\n * 400 ElasticPoolOverFileSpace - Insufficient file space in the elastic pool.\n\n * 400 SecurityAzureKeyVaultGeoChainError - Creating secondary of secondary (a process known as chaining) is not supported when enabling Transparent Data Encryption using Azure Key Vault (BYOK).\n\n * 400 InvalidLicenseType - User tried to create or update a database or elastic pool with unsupported license type.\n\n * 400 UnsupportedCapacity - User tried to create or update database with capacity which is not supported.\n\n * 400 RestoreToFreeEditionNotSupported - Restore and GeoRestore target cannot be free database.\n\n * 400 RestoreNotSupportedForFreeEdition - Restore and GeoRestore are not supported for free database.\n\n * 400 InvalidDroppedDatabase - Source database dropped does not exist on server within the supported recovery period.\n\n * 400 InvalidLiveDatabase - Source database does not exist on server within the supported recovery period. If restoring a dropped database, please specify its deletion date.\n\n * 400 InvalidVldbRecoverySlo - The Hyperscale edition recovery requires both source and target databases to use Hyperscale service level objective.\n\n * 400 InvalidVldbRestoreSlo - The Hyperscale edition Point-In-Time restore requires both source and target databases to use Hyperscale service level objective.\n\n * 400 CannotSpecifyPoolOrSlo - Specifying an elastic pool and/or changing the service level objective or edition is not supported for edition.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 JobAgentDatabaseEditionUnsupported - The specified database's service level objective is not supported for use as a job agent database.\n\n * 400 CannotUpdateToFreeDatabase - Updating a database to the free sku is not supported.\n\n * 400 InvalidBackupStorageAccountType - User passed zrs/lrs during create/update of a database but it failed either because the customer is not whitelisted or because zrs is not available in the specified region.\n\n * 400 DatabaseInvalidSkuPropertyCombination - The properties of the requested sku are inconsistent. Please check that a valid combination is specified. See https://docs.microsoft.com/en-us/rest/api/sql/capabilities/listbylocation#serviceobjectivecapability for more details.\n\n * 400 DatabaseNamedReplicaPerDatabaseLimitExceeded - User tried create a named replica that would exceed the allowed number per primary database\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 ElasticPoolInconsistentVcoreGuaranteeSettings - The number of databases and VCore min per database cannot exceed requested VCores of the elastic pool.\n\n * 400 InvalidMaxSizeTierCombination - The specified tier does not support the specified database max size.\n\n * 400 InvalidTier - The user specified an invalid tier.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 401 AzureKeyVaultKeyDisabled - The operation could not be completed on the server because the Azure Key Vault key is disabled.\n\n * 401 AzureKeyVaultNoServerIdentity - The server identity is not correctly configured.\n\n * 401 AzureKeyVaultMissingPermissions - The server is missing required permissions on the Azure Key Vault. \n\n * 401 AdalGenericError - The operation could not be completed because an Azure Active Directory error was encountered.\n\n * 401 AdalServicePrincipalNotFound - The operation could not be completed because an Azure Active Directory library Service Principal not found error was encountered.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 CannotFindObject - Cannot find the object because it does not exist or you do not have permissions\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 405 UnsupportedReplicationOperation - An unsupported replication operation was initiated on the database.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 InvalidOperationForDatabaseNotInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 InvalidOperationForDatabaseInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 RemoteDatabaseExists - The destination database name already exists on the destination server.\n\n * 409 DuplicateGeoDrRelation - The databases are already in a replication relation. This is a duplicate request.\n\n * 409 FreeDbAlreadyExists - Only one free database can exist for a subscription per region.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ConflictingSystemOperationInProgress - A system maintenance operation is in progress on the database and further operations need to wait until it is completed.\n\n * 409 SkuAssignmentInProgress - The current assignment request cannot be processed because a previous request has not completed.\n\n * 409 CurrentMemoryUsageExceedsSkuQuota - User attempted an sku update operation that cannot be completed due to the higher resource consumption.\n\n * 409 ServerDtuQuotaExceeded - Could not perform the operation because server would exceed the allowed Database Throughput Unit quota.\n\n * 409 ServerKeyNameAlreadyExists - The server key already exists on the server.\n\n * 409 ServerKeyUriAlreadyExists - The server key URI already exists on the server.\n\n * 409 UnableToAlterDatabaseInReplication - User altered edition on a database in a replication relationship.\n\n * 409 ServerKeyDoesNotExists - The server key does not exist.\n\n * 409 UpdateSloInProgress - User tried to initiate an incompatible operation while a SLO update was in progress.\n\n * 409 AzureKeyVaultKeyNameNotFound - The operation could not be completed because the Azure Key Vault Key name does not exist.\n\n * 409 AzureKeyVaultKeyInUse - The key is currently being used by the server.\n\n * 409 SimultaneousSkuChangeNotAllowed - Service objective change operations cannot run on both databases of a replication relationship at the same time.\n\n * 409 TargetElasticPoolBeingUpdated - The update of elastic pool cannot be started because there is copy operation in progress for one of the databases in this elastic pool\n\n * 409 DatabaseCopyLimitPerReplicaReached - User reached the limit of concurrent database copies.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingDatabaseOperation - There is already some operation on the database and the current operation should wait till it is done.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows\n\n * 503 AzureKeyVaultConnectionFailed - The operation could not be completed on the server because attempts to connect to Azure Key Vault have failed\n\n * 503 AzureKeyVaultGenericConnectionError - The operation could not be completed because an error was encountered when attempting to retrieve Key Vault information .\n\n * 503 DatabaseUnavailable - The operation failed because the database is unavailable.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 504 RequestTimeout - Service request exceeded the allowed timeout." - }, - "202": { - "description": "Updating the database is in progress." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Updates a database.": { - "$ref": "./examples/PatchDatabase.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases": { - "get": { - "tags": [ - "Databases" - ], - "description": "Gets a list of databases in an elastic pool.", - "operationId": "Databases_ListByElasticPool", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "elasticPoolName", - "in": "path", - "description": "The name of the elastic pool.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully retrieved a list of databases in an elastic pool.", - "schema": { - "$ref": "#/definitions/DatabaseListResult" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 CannotFindObject - Cannot find the object because it does not exist or you do not have permissions\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 504 RequestTimeout - Service request exceeded the allowed timeout." - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-examples": { - "Gets a list of databases in an elastic pool.": { - "$ref": "./examples/ListDatabasesByElasticPool.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/pause": { - "post": { - "tags": [ - "Databases" - ], - "description": "Pauses a database.", - "operationId": "Databases_Pause", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "description": "The name of the database to be paused.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully paused the database.", - "schema": { - "$ref": "#/definitions/Database" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 CannotDeactivateWhenDeactivatingInProgress - Deactivation workflow failed because there is a deactivate workflow already running.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 404 SourceDatabaseNotFound - The source database does not exist.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows" - }, - "202": { - "description": "Pausing the database is in progress." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Pauses a database.": { - "$ref": "./examples/PauseDatabase.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/resume": { - "post": { - "tags": [ - "Databases" - ], - "description": "Resumes a database.", - "operationId": "Databases_Resume", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "description": "The name of the database to be resumed.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully resumed the database.", - "schema": { - "$ref": "#/definitions/Database" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 404 SourceDatabaseNotFound - The source database does not exist.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows" - }, - "202": { - "description": "Resuming the database is in progress." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Resumes a database.": { - "$ref": "./examples/ResumeDatabase.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/import": { - "post": { - "tags": [ - "Databases" - ], - "description": "Imports a bacpac into a new database.", - "operationId": "Databases_Import", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "name": "parameters", - "in": "body", - "description": "The database import request parameters.", - "required": true, - "schema": { - "$ref": "#/definitions/ImportExistingDatabaseDefinition" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully imported the database.", - "schema": { - "$ref": "#/definitions/ImportExportOperationResult" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." - }, - "202": { - "description": "Importing the database is in progress." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Imports to an existing empty database.": { - "$ref": "./examples/ImportDatabase.json" - }, - "Imports to an existing empty database, using private link to communicate with SQL server and storage account.": { - "$ref": "./examples/ImportDatabaseWithNetworkIsolation.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/export": { - "post": { - "tags": [ - "Databases" - ], - "description": "Exports a database.", - "operationId": "Databases_Export", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/DatabaseNameParameter" - }, - { - "name": "parameters", - "in": "body", - "description": "The database export request parameters.", - "required": true, - "schema": { - "$ref": "#/definitions/ExportDatabaseDefinition" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully exported the database.", - "schema": { - "$ref": "#/definitions/ImportExportOperationResult" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." - }, - "202": { - "description": "Exporting the database is in progress." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Exports a database.": { - "$ref": "./examples/ExportDatabase.json" - }, - "Exports a database, using private link to communicate with SQL server and storage account.": { - "$ref": "./examples/ExportDatabaseWithNetworkIsolation.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/inaccessibleDatabases": { - "get": { - "tags": [ - "Databases" - ], - "description": "Gets a list of inaccessible databases in a logical server", - "operationId": "Databases_ListInaccessibleByServer", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully retrieved the list of inaccessible databases in a logical server", - "schema": { - "$ref": "#/definitions/DatabaseListResult" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription." - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-examples": { - "Gets a list of inaccessible databases in a logical server": { - "$ref": "./examples/ListVCoreInaccessibleDatabasesByServer.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/failover": { - "post": { - "tags": [ - "Databases" - ], - "description": "Failovers a database.", - "operationId": "Databases_Failover", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "description": "The name of the database to failover.", - "required": true, - "type": "string" - }, - { - "name": "replicaType", - "in": "query", - "description": "The type of replica to be failed over.", - "required": false, - "type": "string", - "enum": [ - "Primary", - "ReadableSecondary" - ], - "x-ms-enum": { - "name": "ReplicaType", - "modelAsString": true - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully completed database failover." - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 ManagementServiceFeatureDisabled - User attempted to use a feature which is disabled.\n\n * 400 DatabaseFailoverThrottled - There was a recent failover on the database or pool if database belongs in an elastic pool.\n\n * 400 DatabaseFailoverNotSupportedOnSKU - This type of customer initiated failover is not supported on the given SKU.\n\n * 409 ManagementServiceDatabaseBusy - Database '{0}' is busy with another operation. Please try your operation later.\n\n * 409 DatabaseNotInStateToFailover - The database is currently in a state such that failover cannot be issued." - }, - "202": { - "description": "Database failover is in progress." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Failover an database": { - "$ref": "./examples/FailoverDatabase.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/upgradeDataWarehouse": { - "post": { - "tags": [ - "Databases" - ], - "description": "Upgrades a data warehouse.", - "operationId": "Databases_UpgradeDataWarehouse", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "description": "The name of the database to be upgraded.", - "required": true, - "type": "string" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully upgraded the data warehouse." - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 InvalidCollation - Collation is not recognized by the server.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 UnableToResolveRemoteServer - The remote partner server name could not be resolved due to an invalid server name or DNS connectivity issues.\n\n * 400 ElasticPoolOverStorageUsage - Attempting to write data to a database when the storage limit of the elastic pool has been reached.\n\n * 400 RemoteDatabaseCopyPermission - User does not have sufficient permission to create a database copy on the specified server.\n\n * 400 SourceDatabaseNotFound - The source database does not exist.\n\n * 400 UpdateNotAllowedInCurrentReplicationState - The operation is disallowed on the database in its current replication state.\n\n * 400 GeoReplicaLimitReached - The per-replica replication limit was reached.\n\n * 400 ReplicationSourceAndTargetMustHaveSameName - The replication source and target databases must have the same name.\n\n * 400 ReplicationSourceAndTargetMustBeInDifferentServers - The replication source and target databases must be in different logical servers.\n\n * 400 ChangeUnsupportedOnEntity - User attempted an unsupported create/update/delete operation on a given entity.\n\n * 400 TierChangeUnsupportedDueToMemoryOptimizedObject - The database cannot update its sku because it has memory-optimized objects.\n\n * 400 SourceServerNotFound - The server part of a source database id provided in a CreateDatabaseAsCopy API call doesn't map to an existing server.\n\n * 400 InvalidDatabaseCreateMode - Invalid request to create a database.\n\n * 400 InvalidAddSecondaryPermission - User does not have sufficient permission to add secondary on the specified server.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CurrentDatabaseLogSizeExceedsMaxSize - User attempted to change the database to a sku with lower max log size than the current usage.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 InvalidSku - The user specified an invalid sku.\n\n * 400 InvalidTierSkuCombination - The specified tier does not support the specified sku.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 OfferDisabledOnSubscription - Subscription offer type is restricted from provisioning the requested resource.\n\n * 400 InvalidTargetSubregion - The target server of a non-readable secondary is not in a DR paired Azure region.\n\n * 400 PartnerServerNotCompatible - The user is attempting to copy a database from a SAWA V1 server to a Sterling server or vice versa.\n\n * 400 IncorrectReplicationLinkState - The operation expects the database to be in an expected state on the replication link.\n\n * 400 TargetElasticPoolDoesNotExist - The elastic pool does not exist on a server.\n\n * 400 CurrentDatabaseSizeExceedsMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 ElasticPoolSkuCombinationInvalid - Elastic pool and sku can be specified together only if sku is specified as 'ElasticPool'.\n\n * 400 ElasticPoolTierCombinationInvalid - The database tier is different than the elastic pool service tier.\n\n * 400 ElasticPoolNameRequired - User tried to create or update database to elastic pool service objective without specifying the name of the elastic pool.\n\n * 400 AzureKeyVaultInvalidExpirationDate - The operation could not be completed because the Azure Key Vault key expiration date is invalid.\n\n * 400 SecurityAzureKeyVaultUrlNullOrEmpty - The operation could not be completed because the Azure Key Vault Uri is null or empty.\n\n * 400 AzureKeyVaultInvalidUri - An invalid response from Azure Key Vault. Please use a valid Azure Key Vault URI.\n\n * 400 ElasticPoolInconsistentDtuGuaranteeSettings - Attempting to provide DTU min for databases in the elastic pool that exceeds requested DTUs of the elastic pool.\n\n * 400 InvalidReadScaleEdition - User attempted to enable read scale on a database type that does not support it.\n\n * 400 InvalidReadScaleUnits - User attempted to provide a read scale value that is not supported.\n\n * 400 SecurityAzureKeyVaultInvalidKeyName - The operation could not be completed because of an invalid Server Key name.\n\n * 400 ElasticPoolDatabaseCountOverLimit - Attempting to create or add database to elastic pool when the database count limit of the elastic pool has been reached.\n\n * 400 CannotChangeToOrFromDataWarehouseTier - User attempted to change the sku of a database from DataWarehouse tier to non DataWarehouse tiers or vice versa.\n\n * 400 AzureKeyVaultMalformedVaultUri - The provided Key Vault uri is not valid.\n\n * 400 ElasticPoolDecreaseStorageLimitBelowUsage - Attempting to decrease the storage limit of the elastic pool below its storage usage.\n\n * 400 UpdateNotAllowedOnPausedDatabase - User attempted to perform an update on a paused database.\n\n * 400 RequestedDatabaseSizeRequiresShrink - User attempted to ALTER DATABASE MODIFY MAXSIZE to modify the MAXSIZE for a database to a smaller size then the current size.\n\n * 400 CurrentDatabaseSizeExceedsDbMaxSize - User attempted to reduce the max size for a database to a size smaller than the current usage.\n\n * 400 CannotUseTrailingWhitespacesInDatabaseName - The database name validation failed.\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 SecurityAdalPrincipalCertExpiredError - The operation could not be completed because the Azure Key Vault principal certificate has expired.\n\n * 400 SecurityInvalidAzureKeyVaultRecoveryLevel - The provided Key Vault uri is not valid.\n\n * 400 KeyMaterialNotFoundOnRemoteServer - Remote server does not have access to key material used as a TDE protector.\n\n * 400 AzureKeyVaultMismatchError - Unexpected Key Vault region found in the http response.\n\n * 400 SourceDatabaseEditionCouldNotBeUpgraded - The source database cannot have higher edition than the target database.\n\n * 400 AzureKeyVaultRsaKeyNotSupported - The provided key vault uses unsupported RSA Key Size or Key Type. The supported RSA key size is 2048 or 3072 and Key Type is RSA or RSA-HSM.\n\n * 400 TargetDatabaseEditionCouldNotBeDowngraded - The target database cannot have lower edition than the source database.\n\n * 400 UpdateNotAllowedIfGeoDrOperationInProgress - The operation is disallowed because copy or failover operation for database '{0}' on server '{1}' is currently in progress.\n\n * 400 ElasticPoolOverFileSpace - Insufficient file space in the elastic pool.\n\n * 400 SecurityAzureKeyVaultGeoChainError - Creating secondary of secondary (a process known as chaining) is not supported when enabling Transparent Data Encryption using Azure Key Vault (BYOK).\n\n * 400 InvalidLicenseType - User tried to create or update a database or elastic pool with unsupported license type.\n\n * 400 UnsupportedCapacity - User tried to create or update database with capacity which is not supported.\n\n * 400 RestoreToFreeEditionNotSupported - Restore and GeoRestore target cannot be free database.\n\n * 400 RestoreNotSupportedForFreeEdition - Restore and GeoRestore are not supported for free database.\n\n * 400 InvalidDroppedDatabase - Source database dropped does not exist on server within the supported recovery period.\n\n * 400 InvalidLiveDatabase - Source database does not exist on server within the supported recovery period. If restoring a dropped database, please specify its deletion date.\n\n * 400 InvalidVldbRecoverySlo - The Hyperscale edition recovery requires both source and target databases to use Hyperscale service level objective.\n\n * 400 InvalidVldbRestoreSlo - The Hyperscale edition Point-In-Time restore requires both source and target databases to use Hyperscale service level objective.\n\n * 400 CannotSpecifyPoolOrSlo - Specifying an elastic pool and/or changing the service level objective or edition is not supported for edition.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 400 JobAgentDatabaseEditionUnsupported - The specified database's service level objective is not supported for use as a job agent database.\n\n * 400 CannotUpdateToFreeDatabase - Updating a database to the free sku is not supported.\n\n * 400 InvalidBackupStorageAccountType - User passed zrs/lrs during create/update of a database but it failed either because the customer is not whitelisted or because zrs is not available in the specified region.\n\n * 400 DatabaseInvalidSkuPropertyCombination - The properties of the requested sku are inconsistent. Please check that a valid combination is specified. See https://docs.microsoft.com/en-us/rest/api/sql/capabilities/listbylocation#serviceobjectivecapability for more details.\n\n * 400 DatabaseNamedReplicaPerDatabaseLimitExceeded - User tried create a named replica that would exceed the allowed number per primary database\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 ElasticPoolInconsistentVcoreGuaranteeSettings - The number of databases and VCore min per database cannot exceed requested VCores of the elastic pool.\n\n * 400 InvalidMaxSizeTierCombination - The specified tier does not support the specified database max size.\n\n * 400 InvalidTier - The user specified an invalid tier.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 400 UpgradeOnlyAllowedOnDataWarehouseInstances - User attempted to upgrade non-datawarehouse instance.\n\n * 401 AzureKeyVaultKeyDisabled - The operation could not be completed on the server because the Azure Key Vault key is disabled.\n\n * 401 AzureKeyVaultNoServerIdentity - The server identity is not correctly configured.\n\n * 401 AzureKeyVaultMissingPermissions - The server is missing required permissions on the Azure Key Vault. \n\n * 401 AdalGenericError - The operation could not be completed because an Azure Active Directory error was encountered.\n\n * 401 AdalServicePrincipalNotFound - The operation could not be completed because an Azure Active Directory library Service Principal not found error was encountered.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 404 CannotFindObject - Cannot find the object because it does not exist or you do not have permissions\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 405 UnsupportedReplicationOperation - An unsupported replication operation was initiated on the database.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 InvalidOperationForDatabaseNotInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 InvalidOperationForDatabaseInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship.\n\n * 409 RemoteDatabaseExists - The destination database name already exists on the destination server.\n\n * 409 DuplicateGeoDrRelation - The databases are already in a replication relation. This is a duplicate request.\n\n * 409 FreeDbAlreadyExists - Only one free database can exist for a subscription per region.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ConflictingSystemOperationInProgress - A system maintenance operation is in progress on the database and further operations need to wait until it is completed.\n\n * 409 SkuAssignmentInProgress - The current assignment request cannot be processed because a previous request has not completed.\n\n * 409 CurrentMemoryUsageExceedsSkuQuota - User attempted an sku update operation that cannot be completed due to the higher resource consumption.\n\n * 409 ServerDtuQuotaExceeded - Could not perform the operation because server would exceed the allowed Database Throughput Unit quota.\n\n * 409 ServerKeyNameAlreadyExists - The server key already exists on the server.\n\n * 409 ServerKeyUriAlreadyExists - The server key URI already exists on the server.\n\n * 409 UnableToAlterDatabaseInReplication - User altered edition on a database in a replication relationship.\n\n * 409 ServerKeyDoesNotExists - The server key does not exist.\n\n * 409 UpdateSloInProgress - User tried to initiate an incompatible operation while a SLO update was in progress.\n\n * 409 AzureKeyVaultKeyNameNotFound - The operation could not be completed because the Azure Key Vault Key name does not exist.\n\n * 409 AzureKeyVaultKeyInUse - The key is currently being used by the server.\n\n * 409 SimultaneousSkuChangeNotAllowed - Service objective change operations cannot run on both databases of a replication relationship at the same time.\n\n * 409 TargetElasticPoolBeingUpdated - The update of elastic pool cannot be started because there is copy operation in progress for one of the databases in this elastic pool\n\n * 409 DatabaseCopyLimitPerReplicaReached - User reached the limit of concurrent database copies.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingDatabaseOperation - There is already some operation on the database and the current operation should wait till it is done.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 500 ActivateOrDeactivateWorkflowThrottling - Activation or deactivation workflow failed because there are too many concurrent workflows\n\n * 503 AzureKeyVaultConnectionFailed - The operation could not be completed on the server because attempts to connect to Azure Key Vault have failed\n\n * 503 AzureKeyVaultGenericConnectionError - The operation could not be completed because an error was encountered when attempting to retrieve Key Vault information .\n\n * 503 DatabaseUnavailable - The operation failed because the database is unavailable.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 504 RequestTimeout - Service request exceeded the allowed timeout." - }, - "202": { - "description": "Upgrading the data warehouse is in progress." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Upgrades a data warehouse.": { - "$ref": "./examples/UpgradeDataWarehouse.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/move": { - "post": { - "tags": [ - "Databases" - ], - "description": "Renames a database.", - "operationId": "Databases_Rename", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "databaseName", - "in": "path", - "description": "The name of the database to rename.", - "required": true, - "type": "string" - }, - { - "name": "parameters", - "in": "body", - "description": "The resource move definition for renaming this database.", - "required": true, - "schema": { - "$ref": "#/definitions/ResourceMoveDefinition" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully renamed the database." - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 InvalidResourceMoveRequest - The resource move request is invalid.\n\n * 400 InvalidMoveTargetResourceId - The target resource identifier in move request is invalid.\n\n * 400 MismatchingSubscriptionWithUrl - The provided subscription did not match the subscription in the Url.\n\n * 400 MismatchingResourceGroupNameWithUrl - The provided resource group name did not match the name in the Url.\n\n * 400 MismatchingServerNameWithUrl - The provided server name did not match the name in the Url.\n\n * 400 InvalidIdentifier - The identifier contains NULL or an invalid unicode character.\n\n * 400 DatabaseNameInUse - Database already exists. Choose a different database name.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 CannotMoveOrDropSyncMetadataDatabase - Cannot drop database used as sync metadata database.\n\n * 400 UnsupportedServiceName - The specified name is an invalid name because it contains one or more unsupported unicode characters.\n\n * 400 CannotUseReservedDatabaseName - Cannot use reserved database name in this operation.\n\n * 400 CannotMoveOrDropJobAccountDatabase - Cannot drop database associated with job account.\n\n * 404 SourceDatabaseNotFound - The source database does not exist.\n\n * 409 InvalidOperationForDatabaseInReplicationRelationship - A replication seeding operation was performed on a database that is already in a replication relationship." - } - }, - "x-ms-examples": { - "Renames a database.": { - "$ref": "./examples/RenameDatabase.json" - } - } - } - } - }, - "definitions": { - "DatabaseListResult": { - "description": "A list of databases.", - "type": "object", - "properties": { - "value": { - "description": "Array of results.", - "type": "array", - "items": { - "$ref": "#/definitions/Database" - }, - "readOnly": true - }, - "nextLink": { - "description": "Link to retrieve next page of results.", - "type": "string", - "readOnly": true - } - } - }, - "Sku": { - "description": "An ARM Resource SKU.", - "required": [ - "name" - ], - "type": "object", - "properties": { - "name": { - "description": "The name of the SKU, typically, a letter + Number code, e.g. P3.", - "type": "string" - }, - "tier": { - "description": "The tier or edition of the particular SKU, e.g. Basic, Premium.", - "type": "string" - }, - "size": { - "description": "Size of the particular SKU", - "type": "string" - }, - "family": { - "description": "If the service has different generations of hardware, for the same SKU, then that can be captured here.", - "type": "string" - }, - "capacity": { - "format": "int32", - "description": "Capacity of the particular SKU.", - "type": "integer" - } - } - }, - "DatabaseProperties": { - "description": "The database's properties.", - "type": "object", - "properties": { - "createMode": { - "description": "Specifies the mode of database creation.\r\n\r\nDefault: regular database creation.\r\n\r\nCopy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database.\r\n\r\nSecondary: creates a database as a secondary replica of an existing database. sourceDatabaseId must be specified as the resource ID of the existing primary database.\r\n\r\nPointInTimeRestore: Creates a database by restoring a point in time backup of an existing database. sourceDatabaseId must be specified as the resource ID of the existing database, and restorePointInTime must be specified.\r\n\r\nRecovery: Creates a database by restoring a geo-replicated backup. sourceDatabaseId must be specified as the recoverable database resource ID to restore.\r\n\r\nRestore: Creates a database by restoring a backup of a deleted database. sourceDatabaseId must be specified. If sourceDatabaseId is the database's original resource ID, then sourceDatabaseDeletionDate must be specified. Otherwise sourceDatabaseId must be the restorable dropped database resource ID and sourceDatabaseDeletionDate is ignored. restorePointInTime may also be specified to restore from an earlier point in time.\r\n\r\nRestoreLongTermRetentionBackup: Creates a database by restoring from a long term retention vault. recoveryServicesRecoveryPointResourceId must be specified as the recovery point resource ID.\r\n\r\nCopy, Secondary, and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition.", - "enum": [ - "Default", - "Copy", - "Secondary", - "PointInTimeRestore", - "Restore", - "Recovery", - "RestoreExternalBackup", - "RestoreExternalBackupSecondary", - "RestoreLongTermRetentionBackup", - "OnlineSecondary" - ], - "type": "string", - "x-ms-enum": { - "name": "CreateMode", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] - }, - "collation": { - "description": "The collation of the database.", - "type": "string", - "x-ms-mutability": [ - "read", - "create" - ] - }, - "maxSizeBytes": { - "format": "int64", - "description": "The max size of the database expressed in bytes.", - "type": "integer" - }, - "sampleName": { - "description": "The name of the sample schema to apply when creating this database.", - "enum": [ - "AdventureWorksLT", - "WideWorldImportersStd", - "WideWorldImportersFull" - ], - "type": "string", - "x-ms-enum": { - "name": "SampleName", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] - }, - "elasticPoolId": { - "description": "The resource identifier of the elastic pool containing this database.", - "type": "string" - }, - "sourceDatabaseId": { - "description": "The resource identifier of the source database associated with create operation of this database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "status": { - "description": "The status of the database.", - "enum": [ - "Online", - "Restoring", - "RecoveryPending", - "Recovering", - "Suspect", - "Offline", - "Standby", - "Shutdown", - "EmergencyMode", - "AutoClosed", - "Copying", - "Creating", - "Inaccessible", - "OfflineSecondary", - "Pausing", - "Paused", - "Resuming", - "Scaling", - "OfflineChangingDwPerformanceTiers", - "OnlineChangingDwPerformanceTiers", - "Disabled" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "DatabaseStatus", - "modelAsString": true - } - }, - "databaseId": { - "format": "uuid", - "description": "The ID of the database.", - "type": "string", - "readOnly": true - }, - "creationDate": { - "format": "date-time", - "description": "The creation date of the database (ISO8601 format).", - "type": "string", - "readOnly": true - }, - "currentServiceObjectiveName": { - "description": "The current service level objective name of the database.", - "type": "string", - "readOnly": true - }, - "requestedServiceObjectiveName": { - "description": "The requested service level objective name of the database.", - "type": "string", - "readOnly": true - }, - "defaultSecondaryLocation": { - "description": "The default secondary region for this database.", - "type": "string", - "readOnly": true - }, - "failoverGroupId": { - "description": "Failover Group resource identifier that this database belongs to.", - "type": "string", - "readOnly": true - }, - "restorePointInTime": { - "format": "date-time", - "description": "Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "sourceDatabaseDeletionDate": { - "format": "date-time", - "description": "Specifies the time that the database was deleted.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "recoveryServicesRecoveryPointId": { - "description": "The resource identifier of the recovery point associated with create operation of this database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "longTermRetentionBackupResourceId": { - "description": "The resource identifier of the long term retention backup associated with create operation of this database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "recoverableDatabaseId": { - "description": "The resource identifier of the recoverable database associated with create operation of this database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "restorableDroppedDatabaseId": { - "description": "The resource identifier of the restorable dropped database associated with create operation of this database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "catalogCollation": { - "description": "Collation of the metadata catalog.", - "enum": [ - "DATABASE_DEFAULT", - "SQL_Latin1_General_CP1_CI_AS" - ], - "type": "string", - "x-ms-enum": { - "name": "CatalogCollationType", - "modelAsString": true - }, - "x-ms-mutability": [ - "read", - "create" - ] - }, - "zoneRedundant": { - "description": "Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones.", - "type": "boolean" - }, - "licenseType": { - "description": "The license type to apply for this database. `LicenseIncluded` if you need a license, or `BasePrice` if you have a license and are eligible for the Azure Hybrid Benefit.", - "enum": [ - "LicenseIncluded", - "BasePrice" - ], - "type": "string", - "x-ms-enum": { - "name": "DatabaseLicenseType", - "modelAsString": true - } - }, - "maxLogSizeBytes": { - "format": "int64", - "description": "The max log size for this database.", - "type": "integer", - "readOnly": true - }, - "earliestRestoreDate": { - "format": "date-time", - "description": "This records the earliest start date and time that restore is available for this database (ISO8601 format).", - "type": "string", - "readOnly": true - }, - "readScale": { - "description": "The state of read-only routing. If enabled, connections that have application intent set to readonly in their connection string may be routed to a readonly secondary replica in the same region.", - "enum": [ - "Enabled", - "Disabled" - ], - "type": "string", - "x-ms-enum": { - "name": "DatabaseReadScale", - "modelAsString": true - }, - "x-ms-mutability": [ - "read", - "update" - ] - }, - "readReplicaCount": { - "format": "int32", - "description": "The number of readonly secondary replicas associated with the database.", - "type": "integer" - }, - "currentSku": { - "$ref": "#/definitions/Sku", - "description": "The name and tier of the SKU.", - "readOnly": true - }, - "autoPauseDelay": { - "format": "int32", - "description": "Time in minutes after which database is automatically paused. A value of -1 means that automatic pause is disabled", - "type": "integer" - }, - "storageAccountType": { - "description": "The storage account type used to store backups for this database. Currently the only supported option is GRS (GeoRedundantStorage).", - "enum": [ - "GRS", - "LRS", - "ZRS" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageAccountType", - "modelAsString": true - } - }, - "minCapacity": { - "format": "double", - "description": "Minimal capacity that database will always have allocated, if not paused", - "type": "number" - }, - "pausedDate": { - "format": "date-time", - "description": "The date when database was paused by user configuration or action(ISO8601 format). Null if the database is ready.", - "type": "string", - "readOnly": true - }, - "resumedDate": { - "format": "date-time", - "description": "The date when database was resumed by user action or database login (ISO8601 format). Null if the database is paused.", - "type": "string", - "readOnly": true - } - } - }, - "Resource": { - "description": "ARM resource.", - "type": "object", - "properties": { - "id": { - "description": "Resource ID.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "Resource name.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "Resource type.", - "type": "string", - "readOnly": true - } - }, - "x-ms-azure-resource": true - }, - "TrackedResource": { - "description": "ARM tracked top level resource.", - "required": [ - "location" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "location": { - "description": "Resource location.", - "type": "string", - "x-ms-mutability": [ - "read", - "create" - ] - }, - "tags": { - "description": "Resource tags.", - "type": "object", - "additionalProperties": { - "type": "string" - } - } - } - }, - "Database": { - "description": "A database resource.", - "required": [ - "location" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/TrackedResource" - } - ], - "properties": { - "sku": { - "$ref": "#/definitions/Sku", - "description": "The database SKU.\r\n\r\nThe list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the `Capabilities_ListByLocation` REST API or one of the following commands:\r\n\r\n```azurecli\r\naz sql db list-editions -l -o table\r\n````\r\n\r\n```powershell\r\nGet-AzSqlServerServiceObjective -Location \r\n````\r\n" - }, - "kind": { - "description": "Kind of database. This is metadata used for the Azure portal experience.", - "type": "string", - "readOnly": true - }, - "managedBy": { - "description": "Resource that manages the database.", - "type": "string", - "readOnly": true - }, - "properties": { - "$ref": "#/definitions/DatabaseProperties", - "description": "Resource properties.", - "x-ms-client-flatten": true - } - } - }, - "DatabaseUpdate": { - "description": "A database resource.", - "type": "object", - "properties": { - "sku": { - "$ref": "#/definitions/Sku", - "description": "The name and tier of the SKU." - }, - "properties": { - "$ref": "#/definitions/DatabaseProperties", - "description": "Resource properties.", - "x-ms-client-flatten": true - }, - "tags": { - "description": "Resource tags.", - "type": "object", - "additionalProperties": { - "type": "string" - } - } - } - }, - "ImportExistingDatabaseDefinition": { - "description": "Contains the information necessary to perform import operation for existing database.", - "required": [ - "storageKeyType", - "storageKey", - "storageUri", - "administratorLogin", - "administratorLoginPassword" - ], - "type": "object", - "properties": { - "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] - }, - "storageKey": { - "description": "Storage key.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "storageUri": { - "description": "Storage Uri.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "administratorLogin": { - "description": "Administrator login name.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "administratorLoginPassword": { - "description": "Administrator login password.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "authenticationType": { - "description": "Authentication type.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "networkIsolation": { - "$ref": "#/definitions/NetworkIsolationSettings", - "description": "Optional resource information to enable network isolation for request.", - "x-ms-mutability": [ - "create" - ] - } - } - }, - "NetworkIsolationSettings": { - "description": "Contains the ARM resources for which to create private endpoint connection.", - "type": "object", - "properties": { - "storageAccountResourceId": { - "description": "The resource id for the storage account used to store BACPAC file. If set, private endpoint connection will be created for the storage account. Must match storage account used for StorageUri parameter.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "sqlServerResourceId": { - "description": "The resource id for the SQL server which is the target of this request. If set, private endpoint connection will be created for the SQL server. Must match server which is target of the operation.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - } - } - }, - "ImportExportOperationResultProperties": { - "description": "Contains the operation result properties for import/export operation.", - "type": "object", - "properties": { - "requestId": { - "format": "uuid", - "description": "Request Id.", - "type": "string", - "readOnly": true - }, - "requestType": { - "description": "Request type.", - "type": "string", - "readOnly": true - }, - "queuedTime": { - "description": "Queued time.", - "type": "string", - "readOnly": true - }, - "lastModifiedTime": { - "description": "Last modified time.", - "type": "string", - "readOnly": true - }, - "blobUri": { - "description": "Blob Uri.", - "type": "string", - "readOnly": true - }, - "serverName": { - "description": "Server name.", - "type": "string", - "readOnly": true - }, - "databaseName": { - "description": "Database name.", - "type": "string", - "readOnly": true - }, - "status": { - "description": "Operation status.", - "type": "string", - "readOnly": true - }, - "errorMessage": { - "description": "Error message.", - "type": "string", - "readOnly": true - }, - "privateEndpointConnections": { - "description": "Gets the status of private endpoints associated with this request.", - "type": "array", - "items": { - "$ref": "#/definitions/PrivateEndpointConnectionRequestStatus" - }, - "readOnly": true - } - } - }, - "PrivateEndpointConnectionRequestStatus": { - "description": "Contains the private endpoint connection requests status.", - "type": "object", - "properties": { - "privateLinkServiceId": { - "description": "Resource id for which the private endpoint is created.", - "type": "string", - "readOnly": true - }, - "privateEndpointConnectionName": { - "description": "The connection name for the private endpoint.", - "type": "string", - "readOnly": true - }, - "status": { - "description": "Status of this private endpoint connection.", - "type": "string", - "readOnly": true - } - } - }, - "ProxyResource": { - "description": "ARM proxy resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": {} - }, - "ImportExportOperationResult": { - "description": "An ImportExport operation result resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyResource" - } - ], - "properties": { - "properties": { - "$ref": "#/definitions/ImportExportOperationResultProperties", - "description": "Resource properties.", - "x-ms-client-flatten": true - } - } - }, - "ExportDatabaseDefinition": { - "description": "Contains the information necessary to perform export database operation.", - "required": [ - "storageKeyType", - "storageKey", - "storageUri", - "administratorLogin", - "administratorLoginPassword" - ], - "type": "object", - "properties": { - "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] - }, - "storageKey": { - "description": "Storage key.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "storageUri": { - "description": "Storage Uri.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "administratorLogin": { - "description": "Administrator login name.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "administratorLoginPassword": { - "description": "Administrator login password.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "authenticationType": { - "description": "Authentication type.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "networkIsolation": { - "$ref": "#/definitions/NetworkIsolationSettings", - "description": "Optional resource information to enable network isolation for request.", - "x-ms-mutability": [ - "create" - ] - } - } - }, - "ResourceMoveDefinition": { - "description": "Contains the information necessary to perform a resource move (rename).", - "required": [ - "id" - ], - "type": "object", - "properties": { - "id": { - "description": "The target ID for the resource", - "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" - }, - "ManagedInstanceNameParameter": { - "name": "managedInstanceName", - "in": "path", - "description": "The name of the managed instance.", - "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" - }, - "BlobAuditingPolicyNameParameter": { - "name": "blobAuditingPolicyName", - "in": "path", - "description": "The name of the blob auditing policy.", - "required": true, - "type": "string", - "enum": [ - "default" - ], - "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" - }, - "VirtualClusterNameParameter": { - "name": "virtualClusterName", - "in": "path", - "description": "The name of the virtual cluster.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "WorkspaceNameParameter": { - "name": "workspaceName", - "in": "path", - "description": "The name of the workspace.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "SqlPoolNameParameter": { - "name": "sqlPoolName", - "in": "path", - "description": "The name of the sql pool.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "SqlDatabaseNameParameter": { - "name": "sqlDatabaseName", - "in": "path", - "description": "The name of the sql database.", - "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" - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json deleted file mode 100644 index d1da856f62c0..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorCreateOrUpdate.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-4799", - "serverName": "sqlcrudtest-6440", - "administratorName": "ActiveDirectory", - "api-version": "2018-06-01-preview", - "name": "ActiveDirectory", - "parameters": { - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", - "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/ActiveDirectory", - "name": "ActiveDirectory", - "type": "Microsoft.Sql/servers/administrators", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", - "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/ActiveDirectory", - "name": "ActiveDirectory", - "type": "Microsoft.Sql/servers/administrators", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", - "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json deleted file mode 100644 index d3210177c4c1..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorDelete.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-4799", - "serverName": "sqlcrudtest-6440", - "administratorName": "ActiveDirectory", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json deleted file mode 100644 index aa09007aeb6e..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorGet.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-4799", - "serverName": "sqlcrudtest-6440", - "administratorName": "ActiveDirectory", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/ActiveDirectory", - "name": "ActiveDirectory", - "type": "Microsoft.Sql/servers/administrators", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", - "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json deleted file mode 100644 index aa09007aeb6e..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/AdministratorList.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-4799", - "serverName": "sqlcrudtest-6440", - "administratorName": "ActiveDirectory", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/ActiveDirectory", - "name": "ActiveDirectory", - "type": "Microsoft.Sql/servers/administrators", - "properties": { - "administratorType": "ActiveDirectory", - "login": "bob@contoso.com", - "sid": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c", - "tenantId": "c6b82b90-a647-49cb-8a62-0d2d3cb7ac7c" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json deleted file mode 100644 index 720ca1e6ae28..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAlreadyExists.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "api-version": "2015-05-01-preview", - "parameters": { - "name": "server1", - "type": "Microsoft.Sql/servers" - } - }, - "responses": { - "200": { - "body": { - "name": "server1", - "available": false, - "reason": "AlreadyExists", - "message": "Specified server name is already used" - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json deleted file mode 100644 index 233d5552e080..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerAvailable.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "api-version": "2015-05-01-preview", - "parameters": { - "name": "server1", - "type": "Microsoft.Sql/servers" - } - }, - "responses": { - "200": { - "body": { - "name": "server1", - "available": true - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json deleted file mode 100644 index 0f50fc3c58ae..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CheckNameAvailabilityServerInvalid.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "api-version": "2015-05-01-preview", - "parameters": { - "name": "SERVER1", - "type": "Microsoft.Sql/servers" - } - }, - "responses": { - "200": { - "body": { - "name": "SERVER1", - "available": false, - "reason": "Invalid", - "message": "Specified server name contains unsupported characters or is too long. Server name must be no longer than 63 characters long, contain only lower-case characters or digits, cannot contain '.' or '_' characters and can't start or end with '-' character." - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json deleted file mode 100644 index 71d59de32294..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseCopyMode.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbcopy", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Copy", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbcopy", - "name": "dbcopy", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json deleted file mode 100644 index ba5deae797c3..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseDefaultMode.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Default", - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824 - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json deleted file mode 100644 index e790ea99765b..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseMin.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia" - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json deleted file mode 100644 index ac1df30711b7..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabasePITRMode.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbpitr", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "PointInTimeRestore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "restorePointInTime": "2017-07-14T05:35:31.503Z" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", - "name": "dbpitr", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbpitr", - "name": "dbpitr", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json deleted file mode 100644 index a4f8cee34bc7..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRecoveryMode.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "restorableDroppedDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb2,131444841315030000" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json deleted file mode 100644 index 151575765a92..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreLtrBackup.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "testResourceGroup", - "serverName": "testServer", - "databaseName": "testDatabase", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "RestoreLongTermRetentionBackup", - "longTermRetentionBackupResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionServers/testServer/databases/testDatabase/longTermRetentionBackups/00000000-1111-2222-3333-444444444444;131637960820000000" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testDatabase", - "name": "testDatabase", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testDatabase", - "name": "testDatabase", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json deleted file mode 100644 index 93a6d13ce5db..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "sourceDatabaseDeletionDate": "2017-07-14T06:41:06.613Z" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json deleted file mode 100644 index 2a86acd6e7dc..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseRestoreMode2.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "dbrestore", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Restore", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/dbrestore", - "name": "dbrestore", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json deleted file mode 100644 index e9b2a0ce6a61..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDatabaseSecondaryMode.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "S0", - "tier": "Standard" - }, - "properties": { - "createMode": "Secondary", - "sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json deleted file mode 100644 index c45f339c7a6e..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateDwDatabaseByServiceObjective.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdw", - "api-version": "2017-03-01-preview", - "parameters": { - "location": "westus", - "sku": { - "name": "DW1000c" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "DataWarehouse", - "tier": "DataWarehouse", - "capacity": 9000 - }, - "kind": "v12.0,user,datawarehouse,gen2", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 263882790666240, - "status": "Online", - "databaseId": "188784c9-d602-4684-86cf-e67b6f03551a", - "creationDate": "2019-04-24T06:46:14.99Z", - "currentServiceObjectiveName": "DW1000c", - "requestedServiceObjectiveName": "DW1000c", - "defaultSecondaryLocation": "eastus", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "readScale": "Disabled", - "readReplicaCount": 0, - "currentSku": { - "name": "DataWarehouse", - "tier": "DataWarehouse", - "capacity": 9000 - } - }, - "location": "westus", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdw", - "name": "testdw", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "DataWarehouse", - "tier": "DataWarehouse", - "capacity": 9000 - }, - "kind": "v12.0,user,datawarehouse,gen2", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 263882790666240, - "status": "Online", - "databaseId": "188784c9-d602-4684-86cf-e67b6f03551a", - "creationDate": "2019-04-24T06:46:14.99Z", - "currentServiceObjectiveName": "DW1000c", - "requestedServiceObjectiveName": "DW1000c", - "defaultSecondaryLocation": "eastus", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "readScale": "Disabled", - "readReplicaCount": 0, - "currentSku": { - "name": "DataWarehouse", - "tier": "DataWarehouse", - "capacity": 9000 - } - }, - "location": "westus", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdw", - "name": "testdw", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json deleted file mode 100644 index 3fa2ca69c47c..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateHyperscaleDatabaseWithReadReplicas.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-10-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "HS_Gen4", - "tier": "Hyperscale", - "capacity": 1 - }, - "properties": { - "readReplicaCount": 3 - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "HS_Gen4", - "tier": "Hyperscale", - "family": "Gen4", - "capacity": 1 - }, - "kind": "v12.0,user,vcore,hyperscale", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": -1, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "HS_Gen4_1", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "readScale": "Enabled", - "readReplicaCount": 3 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "HS_Gen4", - "tier": "Hyperscale", - "family": "Gen4", - "capacity": 1 - }, - "kind": "v12.0,user,vcore,hyperscale", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": -1, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "HS_Gen4_1", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "readScale": "Enabled", - "readReplicaCount": 3 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json deleted file mode 100644 index dbd6ab885cac..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseByServiceObjective.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-10-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "BC", - "family": "Gen4", - "capacity": 2 - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "family": "Gen4", - "capacity": 2 - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "family": "Gen4", - "capacity": 2 - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json deleted file mode 100644 index e91f678c1dcd..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuNameCapacity.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-10-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "BC_Gen4", - "capacity": 2 - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "family": "Gen4", - "capacity": 2 - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "family": "Gen4", - "capacity": 2 - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json deleted file mode 100644 index ae43ecd57f74..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/CreateVCoreDatabaseBySkuTierFamilyCapacity.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-10-01-preview", - "parameters": { - "location": "southeastasia", - "sku": { - "name": "BC_Gen4_2" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "family": "Gen4", - "capacity": 2 - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "201": { - "body": { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "family": "Gen4", - "capacity": 2 - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json index d4a3ccdb9fcb..256ce2945593 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreate.json @@ -6,7 +6,7 @@ "databaseName": "testdb", "securityAlertPolicyName": "default", "api-version": "2020-02-02-preview", - "databaseSecurityAlertPolicyResource": { + "parameters": { "properties": { "state": "Enabled" } @@ -18,7 +18,6 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "kind": "V12", "properties": { "state": "Enabled" } @@ -29,7 +28,6 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "kind": "V12", "properties": { "state": "Enabled" } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json deleted file mode 100644 index c736b806d367..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMax.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "databaseName": "testdb", - "securityAlertPolicyName": "default", - "api-version": "2018-06-01-preview", - "databaseSecurityAlertPolicyResource": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [ - "test@microsoft.com", - "user@microsoft.com" - ], - "disabledAlerts": [ - "Sql_Injection", - "Usage_Anomaly" - ], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [ - "test@microsoft.com", - "user@microsoft.com" - ], - "disabledAlerts": [ - "Sql_Injection", - "Usage_Anomaly" - ], - "retentionDays": 6, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [ - "test@microsoft.com", - "user@microsoft.com" - ], - "disabledAlerts": [ - "Access_Anomaly", - "Usage_Anomaly" - ], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Disabled" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json deleted file mode 100644 index 9df02f18e3fd..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertCreateMin.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "databaseName": "testdb", - "securityAlertPolicyName": "default", - "api-version": "2018-06-01-preview", - "databaseSecurityAlertPolicyResource": { - "properties": { - "state": "Enabled" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json index 583011d1beca..39d70f7603e3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertGet.json @@ -13,11 +13,9 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "location": "Japan East", - "kind": "V12", "properties": { "state": "Enabled", - "creationTime": "3/11/2020 12:00:00 AM" + "creationTime": "2020-04-03T04:41:33.937Z" } } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertListByDatabase.json index 21d13464cd07..254adf741f33 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertListByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DatabaseSecurityAlertListByDatabase.json @@ -14,11 +14,9 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb", "name": "default", "type": "Microsoft.Sql/servers/databases/securityAlertPolicies", - "location": "Japan East", - "kind": "V12", "properties": { "state": "Enabled", - "creationTime": "3/11/2020 12:00:00 AM" + "creationTime": "2020-04-03T04:41:33.937Z" } } ] diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json deleted file mode 100644 index c70d7532b66e..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/DeleteDatabase.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": {}, - "204": {}, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json deleted file mode 100644 index ba7e28028aac..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMax.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-2369", - "serverName": "sqlcrudtest-8069", - "elasticPoolName": "sqlcrudtest-8102", - "api-version": "2017-10-01", - "parameters": { - "location": "Japan East", - "sku": { - "name": "GP_Gen4_2", - "tier": "GeneralPurpose", - "capacity": 2 - }, - "properties": { - "perDatabaseSettings": { - "minCapacity": 0.25, - "maxCapacity": 2.0 - } - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", - "name": "sqlcrudtest-8102", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "GP_Gen4_2", - "tier": "GeneralPurpose", - "capacity": 2 - }, - "properties": { - "creationDate": "2017-02-10T01:25:25.033Z", - "state": "Ready", - "maxSizeBytes": 5242880000, - "perDatabaseSettings": { - "minCapacity": 0.25, - "maxCapacity": 2.0 - } - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", - "name": "sqlcrudtest-8102", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "GP_Gen4_2", - "tier": "GeneralPurpose", - "capacity": 2 - }, - "properties": { - "creationDate": "2017-02-10T01:25:25.033Z", - "state": "Ready", - "maxSizeBytes": 5242880000, - "perDatabaseSettings": { - "minCapacity": 0.25, - "maxCapacity": 2.0 - } - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json deleted file mode 100644 index 25f84bcd695a..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolCreateOrUpdateMin.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-2369", - "serverName": "sqlcrudtest-8069", - "elasticPoolName": "sqlcrudtest-8102", - "api-version": "2017-10-01", - "parameters": { - "location": "Japan East" - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", - "name": "sqlcrudtest-8102", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "StandardPool", - "tier": "Standard", - "capacity": 100 - }, - "properties": { - "creationDate": "2017-02-10T01:25:25.033Z", - "state": "Ready", - "maxSizeBytes": 102400, - "perDatabaseSettings": { - "minCapacity": 0, - "maxCapacity": 100 - } - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", - "name": "sqlcrudtest-8102", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "StandardPool", - "tier": "Standard", - "capacity": 100 - }, - "properties": { - "creationDate": "2017-02-10T01:25:25.033Z", - "state": "Ready", - "maxSizeBytes": 102400, - "perDatabaseSettings": { - "minCapacity": 0, - "maxCapacity": 100 - } - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json deleted file mode 100644 index 2c09de6bcd64..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolDelete.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-3129", - "serverName": "sqlcrudtest-228", - "elasticPoolName": "sqlcrudtest-3851", - "api-version": "2017-10-01" - }, - "responses": { - "200": { - "body": "" - }, - "204": { - "body": "" - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json deleted file mode 100644 index ed310b1d1455..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolGet.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-2369", - "serverName": "sqlcrudtest-8069", - "elasticPoolName": "sqlcrudtest-8102", - "api-version": "2017-10-01" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", - "name": "sqlcrudtest-8102", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "GP_Gen4_2", - "tier": "GeneralPurpose", - "capacity": 2 - }, - "properties": { - "creationDate": "2017-10-10T01:25:25.033Z", - "state": "Ready", - "maxSizeBytes": 5242880000, - "perDatabaseSettings": { - "minCapacity": 0.25, - "maxCapacity": 1.0 - }, - "zoneRedundant": true, - "licenseType": "LicenseIncluded" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json deleted file mode 100644 index e0c9401d5e4a..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolListByServer.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-2369", - "serverName": "sqlcrudtest-8069", - "api-version": "2017-10-01" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729", - "name": "sqlcrudtest-2729", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "GP_Gen4_2", - "tier": "GeneralPurpose", - "capacity": 2 - }, - "properties": { - "creationDate": "2017-02-10T01:27:21.32Z", - "state": "Ready", - "maxSizeBytes": 5242880000, - "perDatabaseSettings": { - "minCapacity": 0.25, - "maxCapacity": 1.0 - }, - "zoneRedundant": true, - "licenseType": "LicenseIncluded" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191", - "name": "sqlcrudtest-3191", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "BasicPool", - "tier": "Basic", - "capacity": 50 - }, - "properties": { - "creationDate": "2017-02-10T01:26:26.45Z", - "state": "Ready", - "maxSizeBytes": 5242880000, - "perDatabaseSettings": { - "minCapacity": 0, - "maxCapacity": 5 - } - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", - "name": "sqlcrudtest-8102", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "BasicPool", - "tier": "Basic", - "capacity": 50 - }, - "properties": { - "creationDate": "2017-02-10T01:25:25.033Z", - "state": "Ready", - "maxSizeBytes": 5242880000, - "perDatabaseSettings": { - "minCapacity": 0, - "maxCapacity": 5 - } - } - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json deleted file mode 100644 index 50ab53f4d887..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMax.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-2369", - "serverName": "sqlcrudtest-8069", - "elasticPoolName": "sqlcrudtest-8102", - "api-version": "2017-10-01", - "parameters": { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "capacity": 2 - }, - "properties": { - "perDatabaseSettings": { - "minCapacity": 0.25, - "maxCapacity": 1.0 - }, - "zoneRedundant": true, - "licenseType": "LicenseIncluded" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", - "name": "sqlcrudtest-8102", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "capacity": 2 - }, - "properties": { - "creationDate": "2017-02-10T01:27:21.32Z", - "state": "Ready", - "maxSizeBytes": 5242880000, - "perDatabaseSettings": { - "minCapacity": 0.25, - "maxCapacity": 1.0 - }, - "zoneRedundant": true, - "licenseType": "LicenseIncluded" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json deleted file mode 100644 index 798ef7b5c92e..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ElasticPoolUpdateMin.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-2369", - "serverName": "sqlcrudtest-8069", - "elasticPoolName": "sqlcrudtest-8102", - "api-version": "2017-10-01", - "parameters": {} - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102", - "name": "sqlcrudtest-8102", - "type": "Microsoft.Sql/servers/elasticPools", - "location": "Japan East", - "kind": null, - "sku": { - "name": "BasicPool", - "tier": "Basic", - "capacity": 50 - }, - "properties": { - "creationDate": "2017-02-10T01:25:25.033Z", - "state": "Ready", - "maxSizeBytes": 5242880000, - "perDatabaseSettings": { - "minCapacity": 0, - "maxCapacity": 5 - } - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json index 377a8b0ac4d9..dd5c240eb87a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json @@ -1,37 +1,37 @@ { - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2020-02-02-preview", "parameters": { - "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", - "storageUri": "https://test.blob.core.windows.net/test.bacpac", - "administratorLogin": "login", - "administratorLoginPassword": "password", - "authenticationType": "Sql" - } - }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Export", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2020-02-02-preview", + "parameters": { + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql" } }, - "202": {} - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json index 2b56f88379be..5a6a1f994c4d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json @@ -18,24 +18,24 @@ } } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Export", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } - }, - "202": {} - } + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json deleted file mode 100644 index c527b9727123..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FailoverDatabase.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "group1", - "serverName": "testServer", - "databaseName": "testDatabase", - "replicaType": "Primary", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": {}, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json deleted file mode 100644 index 83cedbdced63..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleCreate.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "firewallrulecrudtest-12", - "serverName": "firewallrulecrudtest-6285", - "firewallRuleName": "firewallrulecrudtest-5370", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "startIpAddress": "0.0.0.3", - "endIpAddress": "0.0.0.3" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370", - "name": "firewallrulecrudtest-5370", - "type": "Microsoft.Sql/servers/firewallRules", - "properties": { - "startIpAddress": "0.0.0.3", - "endIpAddress": "0.0.0.3" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370", - "name": "firewallrulecrudtest-5370", - "properties": { - "startIpAddress": "0.0.0.3", - "endIpAddress": "0.0.0.3" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json deleted file mode 100644 index 51ab66f29b0e..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleDelete.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "firewallrulecrudtest-9886", - "serverName": "firewallrulecrudtest-2368", - "firewallRuleName": "firewallrulecrudtest-7011", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": "" - }, - "204": { - "body": "" - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json deleted file mode 100644 index 712b47f68183..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleGet.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "firewallrulecrudtest-12", - "serverName": "firewallrulecrudtest-6285", - "firewallRuleName": "firewallrulecrudtest-2304", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-2304", - "name": "firewallrulecrudtest-2304", - "type": "Microsoft.Sql/servers/firewallRules", - "properties": { - "startIpAddress": "0.0.0.0", - "endIpAddress": "0.0.0.0" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json deleted file mode 100644 index f378b326a06b..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleList.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "firewallrulecrudtest-12", - "serverName": "firewallrulecrudtest-6285", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-2304", - "name": "firewallrulecrudtest-2304", - "type": "Microsoft.Sql/servers/firewallRules", - "properties": { - "startIpAddress": "0.0.0.0", - "endIpAddress": "0.0.0.0" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927", - "name": "firewallrulecrudtest-3927", - "type": "Microsoft.Sql/servers/firewallRules", - "properties": { - "startIpAddress": "0.0.0.1", - "endIpAddress": "0.0.0.1" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370", - "name": "firewallrulecrudtest-5370", - "type": "Microsoft.Sql/servers/firewallRules", - "properties": { - "startIpAddress": "0.0.0.3", - "endIpAddress": "0.0.0.3" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5767", - "name": "firewallrulecrudtest-5767", - "type": "Microsoft.Sql/servers/firewallRules", - "properties": { - "startIpAddress": "0.0.0.2", - "endIpAddress": "0.0.0.2" - } - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json deleted file mode 100644 index 99c90881eebf..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleReplace.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "firewallrulecrudtest-12", - "serverName": "firewallrulecrudtest-6285", - "api-version": "2015-05-01-preview", - "parameters": { - "values": [ - { - "name": "firewallrulecrudtest-5370 ", - "properties": { - "startIpAddress": "0.0.0.0", - "endIpAddress": "100.0.0.0" - } - } - ] - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370", - "name": "firewallrulecrudtest-5370", - "type": "Microsoft.Sql/servers/firewallRules", - "properties": { - "startIpAddress": "0.0.0.3", - "endIpAddress": "0.0.0.3" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json deleted file mode 100644 index 554600d97158..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/FirewallRuleUpdate.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "firewallrulecrudtest-12", - "serverName": "firewallrulecrudtest-6285", - "firewallRuleName": "firewallrulecrudtest-3927", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "startIpAddress": "0.0.0.1", - "endIpAddress": "0.0.0.1" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927", - "name": "firewallrulecrudtest-3927", - "type": "Microsoft.Sql/servers/firewallRules", - "properties": { - "startIpAddress": "0.0.0.1", - "endIpAddress": "0.0.0.1" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927", - "name": "firewallrulecrudtest-3927", - "type": "Microsoft.Sql/servers/firewallRules", - "properties": { - "startIpAddress": "0.0.0.1", - "endIpAddress": "0.0.0.1" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json deleted file mode 100644 index 8d643600cda9..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetDatabase.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json deleted file mode 100644 index d23c9f3da077..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetRestorableDroppedShortTermRetentionPolicy.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "restorableDroppedDatabaseId": "testdb,131403269876900000", - "policyName": "default", - "api-version": "2020-02-02-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/servers/restorableDroppedDatabases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json index dac7f22c4c61..d902e38ed53b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetShortTermRetentionPolicy.json @@ -12,7 +12,7 @@ "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", "name": "default", - "type": "Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies", + "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", "properties": { "retentionDays": 14, "diffBackupIntervalInHours": 24 diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json deleted file mode 100644 index 6c1f4b684ce9..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/GetVCoreDatabase.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "capacity": 2 - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json index ec495eaa61ac..2df3f9ef41a5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json @@ -14,24 +14,24 @@ "authenticationType": "Sql" } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } - }, - "202": {} - } + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json index b331cd042619..827dfd1e9375 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json @@ -18,24 +18,24 @@ } } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } - }, - "202": {} - } + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json index bb6868a9f93c..29c472af7ca4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json @@ -14,24 +14,24 @@ "authenticationType": "Sql" } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } - }, - "202": {} - } + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json index 44a0afdb60eb..8275aeec3e82 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json @@ -18,24 +18,24 @@ } } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } - }, - "202": {} - } + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json deleted file mode 100644 index 80fd7a64f5c8..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByElasticPool.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "elasticPoolName": "pool1", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "sku": { - "name": "ElasticPool", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "elasticPoolId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/elasticPools/Pool1", - "status": "Online", - "databaseId": "bfe0735f-bc87-447f-b2c2-481f4b100614", - "creationDate": "2017-07-12T22:08:39.163Z", - "currentServiceObjectiveName": "ElasticPool", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/DB001", - "name": "DB001", - "type": "Microsoft.Sql/servers/databases" - }, - { - "sku": { - "name": "ElasticPool", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "elasticPoolId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/elasticPools/Pool1", - "status": "Online", - "databaseId": "82246152-3177-4357-b81c-a16d87ce3593", - "creationDate": "2017-07-12T22:10:10.773Z", - "currentServiceObjectiveName": "ElasticPool", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/DB002", - "name": "DB002", - "type": "Microsoft.Sql/servers/databases" - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json deleted file mode 100644 index b3b18214c8f7..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListDatabasesByServer.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "sku": { - "name": "S0", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - }, - { - "sku": { - "name": "System0", - "tier": "System" - }, - "kind": "v12.0,system", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 32212254720, - "status": "Online", - "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", - "creationDate": "2017-06-07T04:23:42.537Z", - "currentServiceObjectiveName": "System0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", - "name": "master", - "type": "Microsoft.Sql/servers/databases" - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json deleted file mode 100644 index 00de8bbaeb85..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListRestorableDroppedShortTermRetentionPoliciesByDatabase.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "restorableDroppedDatabaseId": "testdb,131403269876900000", - "policyName": "default", - "api-version": "2020-02-02-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/servers/restorableDroppedDatabases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json index ba8110eaccdb..6379ca16c4c9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListShortTermRetentionPoliciesByDatabase.json @@ -14,7 +14,7 @@ { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", "name": "default", - "type": "Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies", + "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", "properties": { "retentionDays": 14, "diffBackupIntervalInHours": 24 diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json deleted file mode 100644 index facdd2ff8af5..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreDatabasesByServer.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "api-version": "2017-10-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "capacity": 2 - }, - "kind": "v12.0,user,vcore", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - }, - { - "sku": { - "name": "System0", - "tier": "System" - }, - "kind": "v12.0,system", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 32212254720, - "status": "Online", - "databaseId": "e6be351f-2cc9-4604-9e52-b0b28b2710b0", - "creationDate": "2017-06-07T04:23:42.537Z", - "currentServiceObjectiveName": "System0", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/master", - "name": "master", - "type": "Microsoft.Sql/servers/databases" - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json deleted file mode 100644 index 75db020787c6..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ListVCoreInaccessibleDatabasesByServer.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "api-version": "2019-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "sku": { - "name": "BC_Gen4", - "tier": "BusinessCritical", - "capacity": 2 - }, - "kind": "v12.0,user,vcore", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 268435456000, - "status": "Inaccessible", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_2", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600, - "readScale": "Enabled", - "readReplicaCount": 1 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json deleted file mode 100644 index fccc2aefb038..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/LocationCapabilityListByLocation.json +++ /dev/null @@ -1,17969 +0,0 @@ -{ - "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" - } - ], - "supportedManagedInstanceVersions": [ - { - "name": "12.0", - "supportedEditions": [ - { - "name": "GeneralPurpose", - "supportedFamilies": [ - { - "name": "Gen4", - "sku": "GP_Gen4", - "supportedLicenseTypes": [ - { - "name": "LicenseIncluded", - "status": "Available" - }, - { - "name": "BasePrice", - "status": "Available" - } - ], - "supportedVcoresValues": [ - { - "value": 8, - "status": "Available" - }, - { - "value": 16, - "status": "Available" - }, - { - "value": 24, - "status": "Available" - } - ], - "supportedStorageSizes": { - "minValue": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "maxValue": { - "limit": 35840, - "unit": "Gigabytes", - "status": "Available" - }, - "scaleSize": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "includedSize": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "status": "Available" - }, - "status": "Available" - }, - { - "name": "Gen5", - "sku": "GP_Gen5", - "supportedLicenseTypes": [ - { - "name": "LicenseIncluded", - "status": "Available" - }, - { - "name": "BasePrice", - "status": "Available" - } - ], - "supportedVcoresValues": [ - { - "value": 8, - "status": "Available" - }, - { - "value": 16, - "status": "Available" - }, - { - "value": 24, - "status": "Available" - }, - { - "value": 32, - "status": "Available" - }, - { - "value": 40, - "status": "Available" - } - ], - "supportedStorageSizes": { - "minValue": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "maxValue": { - "limit": 35840, - "unit": "Gigabytes", - "status": "Available" - }, - "scaleSize": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "includedSize": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "status": "Available" - }, - "status": "Available" - } - ], - "status": "Available" - }, - { - "name": "BusinessCritical", - "supportedFamilies": [ - { - "name": "Gen4", - "sku": "BC_Gen4", - "supportedLicenseTypes": [ - { - "name": "LicenseIncluded", - "status": "Available" - }, - { - "name": "BasePrice", - "status": "Available" - } - ], - "supportedVcoresValues": [ - { - "value": 8, - "status": "Available" - }, - { - "value": 16, - "status": "Available" - }, - { - "value": 24, - "status": "Available" - } - ], - "supportedStorageSizes": { - "minValue": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "maxValue": { - "limit": 1024, - "unit": "Gigabytes", - "status": "Available" - }, - "scaleSize": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "includedSize": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "status": "Available" - }, - "status": "Available" - }, - { - "name": "Gen5", - "sku": "BC_Gen5", - "supportedLicenseTypes": [ - { - "name": "LicenseIncluded", - "status": "Available" - }, - { - "name": "BasePrice", - "status": "Available" - } - ], - "supportedVcoresValues": [ - { - "value": 8, - "status": "Available" - }, - { - "value": 16, - "status": "Available" - }, - { - "value": 24, - "status": "Available" - }, - { - "value": 32, - "status": "Available" - }, - { - "value": 40, - "status": "Available" - } - ], - "supportedStorageSizes": { - "minValue": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "maxValue": { - "limit": 4096, - "unit": "Gigabytes", - "status": "Available" - }, - "scaleSize": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "includedSize": { - "limit": 32, - "unit": "Gigabytes", - "status": "Available" - }, - "status": "Available" - }, - "status": "Available" - } - ], - "status": "Available" - } - ], - "status": "Default" - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json deleted file mode 100644 index fa32fce558f9..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "databaseName": "testdb", - "securityAlertPolicyName": "default", - "api-version": "2017-03-01-preview", - "databaseSecurityAlertPolicyResource": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [ - "test@microsoft.com", - "user@microsoft.com" - ], - "disabledAlerts": [ - "Sql_Injection", - "Usage_Anomaly" - ], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [ - "test@microsoft.com", - "user@microsoft.com" - ], - "disabledAlerts": [ - "Sql_Injection", - "Usage_Anomaly" - ], - "retentionDays": 6, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [ - "test@microsoft.com", - "user@microsoft.com" - ], - "disabledAlerts": [ - "Access_Anomaly", - "Usage_Anomaly" - ], - "retentionDays": 6, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net", - "useServerDefault": "Disabled" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json deleted file mode 100644 index ac22edd70215..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "databaseName": "testdb", - "securityAlertPolicyName": "default", - "api-version": "2017-03-01-preview", - "databaseSecurityAlertPolicyResource": { - "properties": { - "state": "Enabled" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/managedInstance/databases/securityAlertPolicies", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/managedInstance/databases/securityAlertPolicies", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json deleted file mode 100644 index 2a4af00cca07..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertGet.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-6852", - "managedInstanceName": "securityalert-2080", - "databaseName": "testdb", - "securityAlertPolicyName": "default", - "api-version": "2017-03-01=preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/managedInstances/securityalert-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", - "location": "Japan East", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [ - "test@microsoft.com", - "user@microsoft.com" - ], - "disabledAlerts": [ - "Usage_Anomaly" - ], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json deleted file mode 100644 index bd8d7b310efe..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-6852", - "managedInstanceName": "securityalert-2080", - "databaseName": "testdb", - "api-version": "2017-03-01=preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/managedInstances/securityalert-2080/databases/testdb", - "name": "default", - "type": "Microsoft.Sql/managedInstances/databases/securityAlertPolicies", - "location": "Japan East", - "kind": "V12", - "properties": { - "state": "Enabled", - "emailAccountAdmins": "true", - "emailAddresses": [ - "test@microsoft.com", - "user@microsoft.com" - ], - "disabledAlerts": [ - "Usage_Anomaly" - ], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "" - } - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json deleted file mode 100644 index 18e7364bae5e..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMax.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [ - "testSecurityAlert@microsoft.com" - ], - "disabledAlerts": [ - "Access_Anomaly", - "Usage_Anomaly" - ], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [ - "testSecurityAlert@microsoft.com" - ], - "disabledAlerts": [ - "Access_Anomaly", - "Usage_Anomaly" - ], - "retentionDays": 5, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json deleted file mode 100644 index f439168f61c9..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertCreateMin.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "managedInstanceName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", - "name": "Default", - "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [], - "disabledAlerts": [], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json index 41deb8264a25..a4dd2f5b23a6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertGet.json @@ -14,7 +14,7 @@ "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", "properties": { "state": "Disabled", - "creationTime": "3/11/2020 12:00:00 AM" + "creationTime": "2020-04-03T04:41:33.937Z" } } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json index 2d81e2398063..95abc4cd4eda 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ManagedServerSecurityAlertListByInstance.json @@ -13,10 +13,9 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/managedInstances/securityalert-6440", "name": "Default", "type": "Microsoft.Sql/managedInstances/securityAlertPolicies", - "location": "Japan East", "properties": { "state": "Disabled", - "creationTime": "3/11/2020 12:00:00 AM" + "creationTime": "2020-04-03T04:41:33.937Z" } } ] diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json deleted file mode 100644 index 8abff3098570..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchDatabase.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "sku": { - "name": "S1", - "tier": "Standard" - }, - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824 - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "S1", - "tier": "Standard" - }, - "kind": "v12.0,user", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "S1", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json deleted file mode 100644 index b7cadca93aa5..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PatchVCoreDatabase.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "sku": { - "name": "BC_Gen4_4" - }, - "properties": { - "maxSizeBytes": 1073741824, - "licenseType": "LicenseIncluded" - } - } - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "BC_Gen4_4", - "tier": "BusinessCritical", - "capacity": 4 - }, - "kind": "v12.0,user,vcore", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 1073741824, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-06-07T04:41:33.937Z", - "currentServiceObjectiveName": "BC_Gen4_4", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS", - "licenseType": "LicenseIncluded", - "maxLogSizeBytes": 104857600 - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb", - "name": "testdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json deleted file mode 100644 index a2b0165e525b..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/PauseDatabase.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdwdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "DataWarehouse" - }, - "kind": "v12.0,user,datawarehouse", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 10995116277760, - "status": "Paused", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-07-13T02:04:26.187Z", - "currentServiceObjectiveName": "D1", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdwdb", - "name": "testdwdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json deleted file mode 100644 index 963ff8794aad..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/RenameDatabase.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2017-03-01-preview", - "parameters": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/newtestdb" - } - }, - "responses": { - "200": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json deleted file mode 100644 index 19265add6d6b..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ResumeDatabase.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdwdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": { - "body": { - "sku": { - "name": "DataWarehouse" - }, - "kind": "v12.0,user,datawarehouse", - "properties": { - "collation": "SQL_Latin1_General_CP1_CI_AS", - "maxSizeBytes": 10995116277760, - "status": "Online", - "databaseId": "6c764297-577b-470f-9af4-96d3d41e2ba3", - "creationDate": "2017-07-13T02:04:26.187Z", - "currentServiceObjectiveName": "D1", - "defaultSecondaryLocation": "North Europe", - "catalogCollation": "SQL_Latin1_General_CP1_CI_AS" - }, - "location": "southeastasia", - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdwdb", - "name": "testdwdb", - "type": "Microsoft.Sql/servers/databases" - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json deleted file mode 100644 index f57815d10ee6..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "api-version": "2019-06-01-preview", - "parameters": { - "properties": { - "administratorLogin": "dummylogin", - "administratorLoginPassword": "Un53cuRE!" - }, - "location": "Japan East" - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready", - "privateEndpointConnections": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", - "properties": { - "provisioningState": "Ready", - "privateEndpoint": { - "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" - }, - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-approved", - "actionsRequired": "None" - } - } - } - ] - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready", - "privateEndpointConnections": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", - "properties": { - "provisioningState": "Ready", - "privateEndpoint": { - "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" - }, - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-approved", - "actionsRequired": "None" - } - } - } - ] - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json deleted file mode 100644 index fbe464975c3a..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMax.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "api-version": "2015-05-01-preview", - "parameters": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "Japan East", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "administratorLoginPassword": "Un53cuRE!", - "version": "12.0", - "state": "Ready" - } - } - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready" - } - } - }, - "201": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json deleted file mode 100644 index cc18a631a676..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerCreateMin.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "administratorLogin": "dummylogin", - "administratorLoginPassword": "Un53cuRE!" - }, - "location": "Japan East" - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready" - } - } - }, - "201": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json deleted file mode 100644 index 4227be1f5631..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerDelete.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-6661", - "api-version": "2019-06-01-preview" - }, - "responses": { - "200": {}, - "202": {}, - "204": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json deleted file mode 100644 index 0e1f013dc0de..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerGet.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "api-version": "2019-06-01-preview" - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready", - "privateEndpointConnections": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", - "properties": { - "provisioningState": "Ready", - "privateEndpoint": { - "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" - }, - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-approved", - "actionsRequired": "None" - } - } - } - ] - } - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json deleted file mode 100644 index 0ec3645828c9..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerList.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "api-version": "2019-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready", - "privateEndpointConnections": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", - "properties": { - "provisioningState": "Ready", - "privateEndpoint": { - "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" - }, - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-approved", - "actionsRequired": "None" - } - } - } - ] - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661", - "name": "sqlcrudtest-6661", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-6661.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready", - "privateEndpointConnections": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", - "properties": { - "provisioningState": "Ready", - "privateEndpoint": { - "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" - }, - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-approved", - "actionsRequired": "None" - } - } - } - ] - } - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json deleted file mode 100644 index 85c9caac2a56..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerListByResourceGroup.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "api-version": "2019-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready", - "privateEndpointConnections": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", - "properties": { - "provisioningState": "Ready", - "privateEndpoint": { - "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" - }, - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-approved", - "actionsRequired": "None" - } - } - } - ] - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661", - "name": "sqlcrudtest-6661", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-6661.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready", - "privateEndpointConnections": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", - "properties": { - "provisioningState": "Ready", - "privateEndpoint": { - "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" - }, - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-approved", - "actionsRequired": "None" - } - } - } - ] - } - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json deleted file mode 100644 index 9337c95f94dc..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMax.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [ - "testSecurityAlert@microsoft.com" - ], - "disabledAlerts": [ - "Access_Anomaly", - "Usage_Anomaly" - ], - "retentionDays": 5, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [ - "testSecurityAlert@microsoft.com" - ], - "disabledAlerts": [ - "Access_Anomaly", - "Usage_Anomaly" - ], - "retentionDays": 5, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json deleted file mode 100644 index 956ec4096fcd..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsCreateMin.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "securityalert-4799", - "serverName": "securityalert-6440", - "securityAlertPolicyName": "Default", - "api-version": "2017-03-01-preview", - "parameters": { - "properties": { - "state": "Disabled", - "emailAccountAdmins": true, - "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies/default", - "name": "Default", - "type": "Microsoft.Sql/servers/securityAlertPolicies", - "properties": { - "state": "Enabled", - "emailAccountAdmins": true, - "emailAddresses": [ - "" - ], - "disabledAlerts": [ - "" - ], - "retentionDays": 0, - "storageAccountAccessKey": "", - "storageEndpoint": "https://mystorage.blob.core.windows.net" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json index bf03f68520de..aee14c28b8ff 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsGet.json @@ -14,7 +14,7 @@ "type": "Microsoft.Sql/servers/securityAlertPolicies", "properties": { "state": "Enabled", - "creationTime": "3/11/2020 12:00:00 AM" + "creationTime": "2020-04-03T04:41:33.937Z" } } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsListByServer.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsListByServer.json index 1bc47b57cf39..cc23a11dfd93 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsListByServer.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerSecurityAlertsListByServer.json @@ -13,10 +13,9 @@ "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.Sql/servers/securityalert-6440/securityAlertPolicies", "name": "Default", "type": "Microsoft.Sql/servers/securityAlertPolicies", - "location": "Japan East", "properties": { "state": "Enabled", - "creationTime": "3/11/2020 12:00:00 AM" + "creationTime": "2020-04-03T04:41:33.937Z" } } ] diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json deleted file mode 100644 index 08e1b3c01a55..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdate.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "api-version": "2019-06-01-preview", - "parameters": { - "properties": { - "administratorLogin": "dummylogin", - "administratorLoginPassword": "Un53cuRE!" - } - } - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready", - "privateEndpointConnections": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444", - "properties": { - "provisioningState": "Ready", - "privateEndpoint": { - "id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name" - }, - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-approved", - "actionsRequired": "None" - } - } - } - ] - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json deleted file mode 100644 index 0df67afe1759..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMax.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "api-version": "2015-05-01-preview", - "parameters": { - "tags": { - "tagKey1": "TagValue1" - }, - "location": "Japan East", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "administratorLoginPassword": "Un53cuRE!", - "version": "12.0", - "state": "Ready" - } - } - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json deleted file mode 100644 index ed6885769e72..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ServerUpdateMin.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "serverName": "sqlcrudtest-4645", - "api-version": "2015-05-01-preview", - "parameters": { - "properties": { - "administratorLogin": "dummylogin", - "administratorLoginPassword": "Un53cuRE!" - }, - "location": "Japan East" - } - }, - "responses": { - "200": { - "body": { - "tags": { - "tagKey1": "TagValue1" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645", - "name": "sqlcrudtest-4645", - "type": "Microsoft.Sql/servers", - "location": "japaneast", - "kind": "v12.0", - "properties": { - "fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net", - "administratorLogin": "dummylogin", - "version": "12.0", - "state": "Ready" - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json deleted file mode 100644 index 09e702b32565..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationGet.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "managedInstanceName": "sqlcrudtest-4645", - "api-version": "2018-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/sqlAgent/current", - "name": "current", - "type": "Microsoft.Sql/managedInstances/sqlAgent", - "properties": { - "state": "Enabled" - } - }, - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/sqlAgent/current", - "name": "current", - "type": "Microsoft.Sql/managedInstances/sqlAgent", - "properties": { - "state": "Disabled" - } - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json deleted file mode 100644 index 207418869886..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SqlAgentConfigurationPut.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "sqlcrudtest-7398", - "managedInstanceName": "sqlcrudtest-4645", - "api-version": "2018-06-01-preview", - "properties": { - "state": "Enabled" - } - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/sqlAgent/current", - "name": "current", - "type": "Microsoft.Sql/managedInstances/sqlAgent", - "properties": { - "state": "Enabled" - } - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json deleted file mode 100644 index ff8475496a91..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageGet.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "WestUS", - "usageName": "ServerQuota", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "properties": { - "displayName": "Regional Server Quota for West US", - "currentValue": 1.0, - "limit": 20.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", - "name": "ServerQuota", - "type": "Microsoft.Sql/locations/usages" - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json deleted file mode 100644 index 92ea1b8c7259..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/SubscriptionUsageListByLocation.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "locationName": "WestUS", - "api-version": "2015-05-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "properties": { - "displayName": "Regional Server Quota for West US", - "currentValue": 1.0, - "limit": 20.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/ServerQuota", - "name": "ServerQuota", - "type": "Microsoft.Sql/locations/usages" - }, - { - "properties": { - "displayName": "Free Database Count per Subscription for West US", - "currentValue": 0.0, - "limit": 1.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseCount", - "name": "SubscriptionFreeDatabaseCount", - "type": "Microsoft.Sql/locations/usages" - }, - { - "properties": { - "displayName": "Free to Basic Database Upgrade count-down in West US", - "currentValue": 365.0, - "limit": 365.0, - "unit": "Count" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/locations/Onebox/usages/SubscriptionFreeDatabaseDaysLeft", - "name": "SubscriptionFreeDatabaseDaysLeft", - "type": "Microsoft.Sql/locations/usages" - } - ] - } - } - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json deleted file mode 100644 index 47d9d26f02f7..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateRestorableDroppedShortTermRetentionPolicy.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "restorableDroppedDatabaseId": "testdb,131403269876900000", - "policyName": "default", - "api-version": "2020-02-02-preview", - "parameters": { - "properties": { - "retentionDays": 14 - } - } - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/Default-SQL-SouthEastAsia/servers/testsvr/restorableDroppedDatabases/testdb,131403269876900000/backupShortTermRetentionPolicies/default", - "name": "default", - "type": "Microsoft.Sql/servers/restorableDroppedDatabases/backupShortTermRetentionPolicies", - "properties": { - "retentionDays": 14 - } - } - }, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json index 1f7af7061238..80cc04f681f9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpdateShortTermRetentionPolicy.json @@ -18,7 +18,7 @@ "body": { "id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testsvr/databases/testdb/backupShortTermRetentionPolicies/default", "name": "default", - "type": "Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies", + "type": "Microsoft.Sql/locations/servers/databases/backupShortTermRetentionPolicies", "properties": { "retentionDays": 14, "diffBackupIntervalInHours": 24 diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json deleted file mode 100644 index 76aed8cca6eb..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/UpgradeDataWarehouse.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdwdb", - "api-version": "2017-03-01-preview" - }, - "responses": { - "200": {}, - "202": {} - } -} diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json deleted file mode 100644 index 25ad18f91749..000000000000 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/servers.json +++ /dev/null @@ -1,1093 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "version": "2020-02-02-preview", - "title": "SqlManagementClient", - "description": "The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities." - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import": { - "post": { - "tags": [ - "Servers" - ], - "description": "Imports a bacpac into a new database.", - "operationId": "Servers_Import", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "parameters", - "in": "body", - "description": "The database import request parameters.", - "required": true, - "schema": { - "$ref": "#/definitions/ImportNewDatabaseDefinition" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully imported the database.", - "schema": { - "$ref": "#/definitions/ImportExportOperationResult" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." - }, - "202": { - "description": "Importing the database is in progress." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Imports to a new database.": { - "$ref": "./examples/ImportNewDatabase.json" - }, - "Imports to a new database, using private link for the SQL server and storage account.": { - "$ref": "./examples/ImportNewDatabaseWithNetworkIsolation.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers": { - "get": { - "tags": [ - "Servers" - ], - "description": "Gets a list of servers in a resource groups.", - "operationId": "Servers_ListByResourceGroup", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully retrieved the list of servers.", - "schema": { - "$ref": "#/definitions/ServerListResult" - } - }, - "default": { - "description": "*** Error Responses: ***" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-examples": { - "List servers by resource group": { - "$ref": "./examples/ServerListByResourceGroup.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}": { - "get": { - "tags": [ - "Servers" - ], - "description": "Gets a server.", - "operationId": "Servers_Get", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully retrieved the specified server.", - "schema": { - "$ref": "#/definitions/Server" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 404 ResourceNotFound - The requested resource was not found." - } - }, - "x-ms-examples": { - "Get server": { - "$ref": "./examples/ServerGet.json" - } - } - }, - "put": { - "tags": [ - "Servers" - ], - "description": "Creates or updates a server.", - "operationId": "Servers_CreateOrUpdate", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "parameters", - "in": "body", - "description": "The requested server resource state.", - "required": true, - "schema": { - "$ref": "#/definitions/Server" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully updated the server.", - "schema": { - "$ref": "#/definitions/Server" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 PECsNotExistingToDenyPublicNetworkAccess - Unable to set Deny Public Network Access to Yes since there is no private endpoint enabled to access the server. Please set up private endpoints and retry the operation (https://docs.microsoft.com/azure/sql-database/sql-database-private-endpoint-overview#how-to-set-up-private-link-for-azure-sql-database).\n\n * 400 NameAlreadyExists - The provided name already exists.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 InvalidLoginName - The provided login name is invalid.\n\n * 400 InvalidUsername - Supplied user name contains invalid characters.\n\n * 400 PasswordTooShort - The provided password is too short\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 PasswordTooLong - The provided password is too long.\n\n * 400 PasswordNotComplex - The provided password is not complex enough.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidParameterValue - An invalid value was given to a parameter.\n\n * 400 InvalidLocation - An invalid location was specified.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 400 InvalidIdentifier - The identifier contains NULL or an invalid unicode character.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 RegionDoesNotAllowProvisioning - The selected location is not accepting new Windows Azure SQL Database servers. This may change at a later time.\n\n * 400 InvalidMinimalTlsVersion - Invalid minimal TLS version.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 UpsertLogicalServerRequestAlreadyInProgress - An ongoing logical server request is already in progress, please try your request again later.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingServerOperation - An operation is currently in progress for the server.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ServerQuotaExceeded - Server cannot be added to a subscription because it will exceed quota.\n\n * 409 ServerAlreadyExists - Duplicate server name.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 ConflictingSubscriptionOperation - An operation is currently in progress for the subscription.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources." - }, - "202": { - "description": "Accepted" - }, - "201": { - "description": "Successfully created the server.", - "schema": { - "$ref": "#/definitions/Server" - } - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Create server": { - "$ref": "./examples/ServerCreate.json" - } - } - }, - "delete": { - "tags": [ - "Servers" - ], - "description": "Deletes a server.", - "operationId": "Servers_Delete", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully deleted the server." - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 ConflictingServerOperation - An operation is currently in progress for the server.\n\n * 409 DropLogicalServerAlreadyInProgress - Server is already being dropped.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources." - }, - "202": { - "description": "Accepted" - }, - "204": { - "description": "The specified server does not exist." - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Delete server": { - "$ref": "./examples/ServerDelete.json" - } - } - }, - "patch": { - "tags": [ - "Servers" - ], - "description": "Updates a server.", - "operationId": "Servers_Update", - "parameters": [ - { - "$ref": "#/parameters/ResourceGroupParameter" - }, - { - "$ref": "#/parameters/ServerNameParameter" - }, - { - "name": "parameters", - "in": "body", - "description": "The requested server resource state.", - "required": true, - "schema": { - "$ref": "#/definitions/ServerUpdate" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully updated the server.", - "schema": { - "$ref": "#/definitions/Server" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 PECsNotExistingToDenyPublicNetworkAccess - Unable to set Deny Public Network Access to Yes since there is no private endpoint enabled to access the server. Please set up private endpoints and retry the operation (https://docs.microsoft.com/azure/sql-database/sql-database-private-endpoint-overview#how-to-set-up-private-link-for-azure-sql-database).\n\n * 400 NameAlreadyExists - The provided name already exists.\n\n * 400 ProvisioningDisabled - Displays error message from resources operation authorizer as is, without changes\n\n * 400 InvalidLoginName - The provided login name is invalid.\n\n * 400 InvalidUsername - Supplied user name contains invalid characters.\n\n * 400 PasswordTooShort - The provided password is too short\n\n * 400 RegionDoesNotSupportVersion - A user attempted to create a server of a specified version in a location where that server version isn't supported.\n\n * 400 PasswordTooLong - The provided password is too long.\n\n * 400 PasswordNotComplex - The provided password is not complex enough.\n\n * 400 SubscriptionNotFound - The requested subscription was not found.\n\n * 400 InvalidParameterValue - An invalid value was given to a parameter.\n\n * 400 InvalidLocation - An invalid location was specified.\n\n * 400 InvalidServerName - Invalid server name specified.\n\n * 400 InvalidIdentifier - The identifier contains NULL or an invalid unicode character.\n\n * 400 TokenTooLong - The provided token is too long.\n\n * 400 ServerNotFound - The requested server was not found.\n\n * 400 RegionDoesNotAllowProvisioning - The selected location is not accepting new Windows Azure SQL Database servers. This may change at a later time.\n\n * 400 InvalidMinimalTlsVersion - Invalid minimal TLS version.\n\n * 404 SubscriptionDoesNotHaveServer - The requested server was not found\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 OperationIdNotFound - The operation with Id does not exist.\n\n * 409 OperationCancelled - The operation has been cancelled by user.\n\n * 409 OperationInterrupted - The operation on the resource could not be completed because it was interrupted by another operation on the same resource.\n\n * 409 UpsertLogicalServerRequestAlreadyInProgress - An ongoing logical server request is already in progress, please try your request again later.\n\n * 409 ServerDisabled - Server is disabled.\n\n * 409 ConflictingServerOperation - An operation is currently in progress for the server.\n\n * 409 SubscriptionDisabled - Subscription is disabled.\n\n * 409 ServerQuotaExceeded - Server cannot be added to a subscription because it will exceed quota.\n\n * 409 ServerAlreadyExists - Duplicate server name.\n\n * 429 SubscriptionTooManyCreateUpdateRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 SubscriptionTooManyRequests - Requests beyond max requests that can be processed by available resources.\n\n * 429 ConflictingSubscriptionOperation - An operation is currently in progress for the subscription.\n\n * 500 OperationTimedOut - The operation timed out and automatically rolled back. Please retry the operation.\n\n * 503 TooManyRequests - Requests beyond max requests that can be processed by available resources." - }, - "202": { - "description": "Accepted" - } - }, - "x-ms-long-running-operation": true, - "x-ms-examples": { - "Update a server": { - "$ref": "./examples/ServerUpdate.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/servers": { - "get": { - "tags": [ - "Servers" - ], - "description": "Gets a list of all servers in the subscription.", - "operationId": "Servers_List", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully retrieved the list of servers.", - "schema": { - "$ref": "#/definitions/ServerListResult" - } - }, - "default": { - "description": "*** Error Responses: ***" - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - }, - "x-ms-examples": { - "List servers": { - "$ref": "./examples/ServerList.json" - } - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Sql/checkNameAvailability": { - "post": { - "tags": [ - "Servers" - ], - "description": "Determines whether a resource can be created with the specified name.", - "operationId": "Servers_CheckNameAvailability", - "parameters": [ - { - "name": "parameters", - "in": "body", - "description": "The name availability request parameters.", - "required": true, - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityRequest" - } - }, - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Successfully completed the availability check.", - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityResponse" - } - }, - "default": { - "description": "*** Error Responses: ***\n\n * 400 InvalidNameAvailabilityRequest - The check name availability request is invalid.\n\n * 400 UnknownNameType - Unknown resource type specified for a subscription level name availability check." - } - }, - "x-ms-examples": { - "Check for a server name that already exists": { - "$ref": "./examples/CheckNameAvailabilityServerAlreadyExists.json" - }, - "Check for a server name that is available": { - "$ref": "./examples/CheckNameAvailabilityServerAvailable.json" - }, - "Check for a server name that is invalid": { - "$ref": "./examples/CheckNameAvailabilityServerInvalid.json" - } - } - } - } - }, - "definitions": { - "ImportNewDatabaseDefinition": { - "description": "Contains the information necessary to perform import operation for new database.", - "required": [ - "storageKeyType", - "storageKey", - "storageUri", - "administratorLogin", - "administratorLoginPassword" - ], - "type": "object", - "properties": { - "databaseName": { - "description": "Name of the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "edition": { - "description": "Edition of the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "serviceObjectiveName": { - "description": "Service level objective name of the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "maxSizeBytes": { - "description": "Max size in bytes for the import database.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] - }, - "storageKey": { - "description": "Storage key.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "storageUri": { - "description": "Storage Uri.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "administratorLogin": { - "description": "Administrator login name.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "administratorLoginPassword": { - "description": "Administrator login password.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "authenticationType": { - "description": "Authentication type.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "networkIsolation": { - "$ref": "#/definitions/NetworkIsolationSettings", - "description": "Optional resource information to enable network isolation for request.", - "x-ms-mutability": [ - "create" - ] - } - } - }, - "NetworkIsolationSettings": { - "description": "Contains the ARM resources for which to create private endpoint connection.", - "type": "object", - "properties": { - "storageAccountResourceId": { - "description": "The resource id for the storage account used to store BACPAC file. If set, private endpoint connection will be created for the storage account. Must match storage account used for StorageUri parameter.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - }, - "sqlServerResourceId": { - "description": "The resource id for the SQL server which is the target of this request. If set, private endpoint connection will be created for the SQL server. Must match server which is target of the operation.", - "type": "string", - "x-ms-mutability": [ - "create" - ] - } - } - }, - "ImportExportOperationResultProperties": { - "description": "Contains the operation result properties for import/export operation.", - "type": "object", - "properties": { - "requestId": { - "format": "uuid", - "description": "Request Id.", - "type": "string", - "readOnly": true - }, - "requestType": { - "description": "Request type.", - "type": "string", - "readOnly": true - }, - "queuedTime": { - "description": "Queued time.", - "type": "string", - "readOnly": true - }, - "lastModifiedTime": { - "description": "Last modified time.", - "type": "string", - "readOnly": true - }, - "blobUri": { - "description": "Blob Uri.", - "type": "string", - "readOnly": true - }, - "serverName": { - "description": "Server name.", - "type": "string", - "readOnly": true - }, - "databaseName": { - "description": "Database name.", - "type": "string", - "readOnly": true - }, - "status": { - "description": "Operation status.", - "type": "string", - "readOnly": true - }, - "errorMessage": { - "description": "Error message.", - "type": "string", - "readOnly": true - }, - "privateEndpointConnections": { - "description": "Gets the status of private endpoints associated with this request.", - "type": "array", - "items": { - "$ref": "#/definitions/PrivateEndpointConnectionRequestStatus" - }, - "readOnly": true - } - } - }, - "PrivateEndpointConnectionRequestStatus": { - "description": "Contains the private endpoint connection requests status.", - "type": "object", - "properties": { - "privateLinkServiceId": { - "description": "Resource id for which the private endpoint is created.", - "type": "string", - "readOnly": true - }, - "privateEndpointConnectionName": { - "description": "The connection name for the private endpoint.", - "type": "string", - "readOnly": true - }, - "status": { - "description": "Status of this private endpoint connection.", - "type": "string", - "readOnly": true - } - } - }, - "Resource": { - "description": "ARM resource.", - "type": "object", - "properties": { - "id": { - "description": "Resource ID.", - "type": "string", - "readOnly": true - }, - "name": { - "description": "Resource name.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "Resource type.", - "type": "string", - "readOnly": true - } - }, - "x-ms-azure-resource": true - }, - "ProxyResource": { - "description": "ARM proxy resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": {} - }, - "ImportExportOperationResult": { - "description": "An ImportExport operation result resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyResource" - } - ], - "properties": { - "properties": { - "$ref": "#/definitions/ImportExportOperationResultProperties", - "description": "Resource properties.", - "x-ms-client-flatten": true - } - } - }, - "ServerListResult": { - "description": "A list of servers.", - "type": "object", - "properties": { - "value": { - "description": "Array of results.", - "type": "array", - "items": { - "$ref": "#/definitions/Server" - }, - "readOnly": true - }, - "nextLink": { - "description": "Link to retrieve next page of results.", - "type": "string", - "readOnly": true - } - } - }, - "ResourceIdentity": { - "description": "Azure Active Directory identity configuration for a resource.", - "type": "object", - "properties": { - "principalId": { - "format": "uuid", - "description": "The Azure Active Directory principal id.", - "type": "string", - "readOnly": true - }, - "type": { - "description": "The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.", - "enum": [ - "None", - "SystemAssigned" - ], - "type": "string", - "x-ms-enum": { - "name": "IdentityTypeWithNone", - "modelAsString": true - } - }, - "tenantId": { - "format": "uuid", - "description": "The Azure Active Directory tenant id.", - "type": "string", - "readOnly": true - } - } - }, - "ServerProperties": { - "description": "The properties of a server.", - "type": "object", - "properties": { - "administratorLogin": { - "description": "Administrator username for the server. Once created it cannot be changed.", - "type": "string", - "x-ms-mutability": [ - "read", - "create" - ] - }, - "administratorLoginPassword": { - "description": "The administrator login password (required for server creation).", - "type": "string", - "x-ms-mutability": [ - "create", - "update" - ] - }, - "version": { - "description": "The version of the server.", - "type": "string" - }, - "state": { - "description": "The state of the server.", - "type": "string", - "readOnly": true - }, - "fullyQualifiedDomainName": { - "description": "The fully qualified domain name of the server.", - "type": "string", - "readOnly": true - }, - "privateEndpointConnections": { - "description": "List of private endpoint connections on a server", - "type": "array", - "items": { - "$ref": "#/definitions/ServerPrivateEndpointConnection" - }, - "readOnly": true - }, - "minimalTlsVersion": { - "description": "Minimal TLS version. Allowed values: '1.0', '1.1', '1.2'", - "type": "string" - }, - "publicNetworkAccess": { - "description": "Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'", - "enum": [ - "Enabled", - "Disabled" - ], - "type": "string", - "x-ms-enum": { - "name": "ServerPublicNetworkAccess", - "modelAsString": true - } - } - } - }, - "ServerPrivateEndpointConnection": { - "description": "A private endpoint connection under a server", - "type": "object", - "properties": { - "id": { - "description": "Resource ID.", - "type": "string", - "readOnly": true - }, - "properties": { - "$ref": "#/definitions/PrivateEndpointConnectionProperties", - "description": "Private endpoint connection properties", - "readOnly": true - } - } - }, - "PrivateEndpointConnectionProperties": { - "description": "Properties of a private endpoint connection.", - "type": "object", - "properties": { - "privateEndpoint": { - "$ref": "#/definitions/PrivateEndpointProperty", - "description": "Private endpoint which the connection belongs to." - }, - "privateLinkServiceConnectionState": { - "$ref": "#/definitions/PrivateLinkServiceConnectionStateProperty", - "description": "Connection state of the private endpoint connection." - }, - "provisioningState": { - "description": "State of the private endpoint connection.", - "enum": [ - "Approving", - "Ready", - "Dropping", - "Failed", - "Rejecting" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "PrivateEndpointProvisioningState", - "modelAsString": true - } - } - } - }, - "PrivateEndpointProperty": { - "type": "object", - "properties": { - "id": { - "description": "Resource id of the private endpoint.", - "type": "string" - } - }, - "x-ms-azure-resource": true - }, - "PrivateLinkServiceConnectionStateProperty": { - "required": [ - "status", - "description" - ], - "type": "object", - "properties": { - "status": { - "description": "The private link service connection status.", - "enum": [ - "Approved", - "Pending", - "Rejected", - "Disconnected" - ], - "type": "string", - "x-ms-enum": { - "name": "PrivateLinkServiceConnectionStateStatus", - "modelAsString": true - } - }, - "description": { - "description": "The private link service connection description.", - "type": "string" - }, - "actionsRequired": { - "description": "The actions required for private link service connection.", - "enum": [ - "None" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "PrivateLinkServiceConnectionStateActionsRequire", - "modelAsString": true - } - } - } - }, - "TrackedResource": { - "description": "ARM tracked top level resource.", - "required": [ - "location" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Resource" - } - ], - "properties": { - "location": { - "description": "Resource location.", - "type": "string", - "x-ms-mutability": [ - "read", - "create" - ] - }, - "tags": { - "description": "Resource tags.", - "type": "object", - "additionalProperties": { - "type": "string" - } - } - } - }, - "Server": { - "description": "An Azure SQL Database server.", - "required": [ - "location" - ], - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/TrackedResource" - } - ], - "properties": { - "identity": { - "$ref": "#/definitions/ResourceIdentity", - "description": "The Azure Active Directory identity of the server.", - "x-ms-mutability": [ - "read", - "create" - ] - }, - "kind": { - "description": "Kind of sql server. This is metadata used for the Azure portal experience.", - "type": "string", - "readOnly": true - }, - "properties": { - "$ref": "#/definitions/ServerProperties", - "description": "Resource properties.", - "x-ms-client-flatten": true - } - } - }, - "ServerUpdate": { - "description": "An update request for an Azure SQL Database server.", - "type": "object", - "properties": { - "properties": { - "$ref": "#/definitions/ServerProperties", - "description": "Resource properties.", - "x-ms-client-flatten": true - }, - "tags": { - "description": "Resource tags.", - "type": "object", - "additionalProperties": { - "type": "string" - } - } - } - }, - "CheckNameAvailabilityRequest": { - "description": "A request to check whether the specified name for a resource is available.", - "required": [ - "name", - "type" - ], - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "type": { - "enum": [ - "Microsoft.Sql/servers" - ], - "type": "string", - "x-ms-enum": { - "name": "CheckNameAvailabilityResourceType", - "modelAsString": false - } - } - } - }, - "CheckNameAvailabilityResponse": { - "description": "The result of a name availability check.", - "type": "object", - "properties": { - "name": { - "description": "The name whose availability was checked.", - "type": "string", - "readOnly": true - }, - "available": { - "description": "True if the name is available, otherwise false.", - "type": "boolean", - "readOnly": true - }, - "reason": { - "description": "The reason code explaining why the name is unavailable. Will be undefined if the name is available.", - "enum": [ - "Invalid", - "AlreadyExists" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "CheckNameAvailabilityReason", - "modelAsString": false - } - }, - "message": { - "description": "A message explaining why the name is unavailable. Will be undefined if the name is available.", - "type": "string", - "readOnly": true - } - } - } - }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "The subscription ID that identifies an Azure subscription.", - "required": true, - "type": "string", - "x-ms-parameter-location": "client" - }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "The API version to use for the request.", - "required": true, - "type": "string", - "x-ms-parameter-location": "client" - }, - "ResourceGroupParameter": { - "name": "resourceGroupName", - "in": "path", - "description": "The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "ServerNameParameter": { - "name": "serverName", - "in": "path", - "description": "The name of the server.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "ManagedInstanceNameParameter": { - "name": "managedInstanceName", - "in": "path", - "description": "The name of the managed instance.", - "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" - }, - "BlobAuditingPolicyNameParameter": { - "name": "blobAuditingPolicyName", - "in": "path", - "description": "The name of the blob auditing policy.", - "required": true, - "type": "string", - "enum": [ - "default" - ], - "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" - }, - "VirtualClusterNameParameter": { - "name": "virtualClusterName", - "in": "path", - "description": "The name of the virtual cluster.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "WorkspaceNameParameter": { - "name": "workspaceName", - "in": "path", - "description": "The name of the workspace.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "SqlPoolNameParameter": { - "name": "sqlPoolName", - "in": "path", - "description": "The name of the sql pool.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "SqlDatabaseNameParameter": { - "name": "sqlDatabaseName", - "in": "path", - "description": "The name of the sql database.", - "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" - } - } - } -} From 3b953b882786d78765971df896cb991a31616e86 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Mon, 17 Aug 2020 16:46:52 -0700 Subject: [PATCH 10/43] Run prettier --- .../examples/ExportDatabase.json | 64 +++++++++---------- .../ExportDatabaseWithNetworkIsolation.json | 38 +++++------ .../examples/ImportDatabase.json | 38 +++++------ .../ImportDatabaseWithNetworkIsolation.json | 38 +++++------ .../examples/ImportNewDatabase.json | 38 +++++------ ...ImportNewDatabaseWithNetworkIsolation.json | 38 +++++------ 6 files changed, 127 insertions(+), 127 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json index dd5c240eb87a..377a8b0ac4d9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json @@ -1,37 +1,37 @@ { + "parameters": { + "subscriptionId": "00000000-1111-2222-3333-444444444444", + "resourceGroupName": "Default-SQL-SouthEastAsia", + "serverName": "testsvr", + "databaseName": "testdb", + "api-version": "2020-02-02-preview", "parameters": { - "subscriptionId": "00000000-1111-2222-3333-444444444444", - "resourceGroupName": "Default-SQL-SouthEastAsia", - "serverName": "testsvr", - "databaseName": "testdb", - "api-version": "2020-02-02-preview", - "parameters": { - "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", - "storageUri": "https://test.blob.core.windows.net/test.bacpac", - "administratorLogin": "login", - "administratorLoginPassword": "password", - "authenticationType": "Sql" + "storageKeyType": "StorageAccessKey", + "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageUri": "https://test.blob.core.windows.net/test.bacpac", + "administratorLogin": "login", + "administratorLoginPassword": "password", + "authenticationType": "Sql" + } + }, + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" + }, + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Export", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } - }, - "202": {} - } + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json index 5a6a1f994c4d..2b56f88379be 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json @@ -18,24 +18,24 @@ } } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Export", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Export", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json index 2df3f9ef41a5..ec495eaa61ac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json @@ -14,24 +14,24 @@ "authenticationType": "Sql" } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json index 827dfd1e9375..b331cd042619 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json @@ -18,24 +18,24 @@ } } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json index 29c472af7ca4..bb6868a9f93c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json @@ -14,24 +14,24 @@ "authenticationType": "Sql" } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json index 8275aeec3e82..44a0afdb60eb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json @@ -18,24 +18,24 @@ } } }, - "responses": { - "200": { - "body": { - "properties": { - "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "requestType": "Import", - "queuedTime": "2/2/2020 8:33:27 PM", - "lastModifiedTime": "2/2/2020 8:34:47 PM", - "blobUri": "https://test.blob.core.windows.net/test.bacpac", - "serverName": "testsvr.database.windows.net", - "databaseName": "testdb", - "status": "Completed" - }, - "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", - "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", - "type": "Microsoft.Sql/servers/databases/importExportOperationResults" - } + "responses": { + "200": { + "body": { + "properties": { + "requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "requestType": "Import", + "queuedTime": "2/2/2020 8:33:27 PM", + "lastModifiedTime": "2/2/2020 8:34:47 PM", + "blobUri": "https://test.blob.core.windows.net/test.bacpac", + "serverName": "testsvr.database.windows.net", + "databaseName": "testdb", + "status": "Completed" }, - "202": {} - } + "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4", + "name": "9d9a794a-5cec-4f23-af70-d29511b522a4", + "type": "Microsoft.Sql/servers/databases/importExportOperationResults" + } + }, + "202": {} + } } From f80ddf3f89c50e6e3eb8cf80192aaa3e6560056c Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Mon, 17 Aug 2020 16:48:27 -0700 Subject: [PATCH 11/43] Add importexport.json --- .../2020-02-02-preview/importexport.json | 700 ++++++++++++++++++ 1 file changed, 700 insertions(+) create mode 100644 specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json new file mode 100644 index 000000000000..91ba8d01a759 --- /dev/null +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -0,0 +1,700 @@ +{ + "swagger": "2.0", + "info": { + "version": "2020-02-02-preview", + "title": "SqlManagementClient", + "description": "The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities." + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/import": { + "post": { + "tags": [ + "ImportExport" + ], + "description": "Imports a bacpac into a new database.", + "operationId": "ImportExport_Import", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The database import request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/ImportExistingDatabaseDefinition" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully imported the database.", + "schema": { + "$ref": "#/definitions/ImportExportOperationResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." + }, + "202": { + "description": "Importing the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Imports to an existing empty database.": { + "$ref": "./examples/ImportDatabase.json" + }, + "Imports to an existing empty database, using private link to communicate with SQL server and storage account.": { + "$ref": "./examples/ImportDatabaseWithNetworkIsolation.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import": { + "post": { + "tags": [ + "ImportExport" + ], + "description": "Imports a bacpac into a new database.", + "operationId": "Servers_Import", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The database import request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/ImportNewDatabaseDefinition" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully imported the database.", + "schema": { + "$ref": "#/definitions/ImportExportOperationResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." + }, + "202": { + "description": "Importing the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Imports to a new database.": { + "$ref": "./examples/ImportNewDatabase.json" + }, + "Imports to a new database, using private link for the SQL server and storage account.": { + "$ref": "./examples/ImportNewDatabaseWithNetworkIsolation.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/export": { + "post": { + "tags": [ + "ImportExport" + ], + "description": "Exports a database.", + "operationId": "Databases_Export", + "parameters": [ + { + "$ref": "#/parameters/ResourceGroupParameter" + }, + { + "$ref": "#/parameters/ServerNameParameter" + }, + { + "$ref": "#/parameters/DatabaseNameParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The database export request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/ExportDatabaseDefinition" + } + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Successfully exported the database.", + "schema": { + "$ref": "#/definitions/ImportExportOperationResult" + } + }, + "default": { + "description": "*** Error Responses: ***\n\n * 400 MissingImportExportInputParameters - Missing ImportExport input parameters.\n\n * 400 PolybaseImportAuthenticationTypeNotSupported - Authentication type parameter is not support for PolybaseImport operation.\n\n * 400 FeatureDisabledOnSelectedEdition - User attempted to use a feature which is disabled on current database edition.\n\n * 400 InvalidOperationType - Provide a valid operation type.\n\n * 404 ResourceNotFound - Invalid request specifying a non-existent resource.\n\n * 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.\n\n * 404 ImportExportOperationIdNotFound - The operation Id for import or export cannot be found.\n\n * 404 ServerNotInSubscription - Specified server does not exist on the specified subscription.\n\n * 409 ImportExportOperationInProgress - There is an import or export operation in progress on the database." + }, + "202": { + "description": "Exporting the database is in progress." + } + }, + "x-ms-long-running-operation": true, + "x-ms-examples": { + "Exports a database.": { + "$ref": "./examples/ExportDatabase.json" + }, + "Exports a database, using private link to communicate with SQL server and storage account.": { + "$ref": "./examples/ExportDatabaseWithNetworkIsolation.json" + } + } + } + } + }, + "definitions": { + "ImportExistingDatabaseDefinition": { + "description": "Contains the information necessary to perform import operation for existing database.", + "required": [ + "storageKeyType", + "storageKey", + "storageUri", + "administratorLogin", + "administratorLoginPassword" + ], + "type": "object", + "properties": { + "storageKeyType": { + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "storageKey": { + "description": "Storage key.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageUri": { + "description": "Storage Uri.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLogin": { + "description": "Administrator login name.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLoginPassword": { + "description": "Administrator login password.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "authenticationType": { + "description": "Authentication type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "networkIsolation": { + "$ref": "#/definitions/NetworkIsolationSettings", + "description": "Optional resource information to enable network isolation for request.", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "NetworkIsolationSettings": { + "description": "Contains the ARM resources for which to create private endpoint connection.", + "type": "object", + "properties": { + "storageAccountResourceId": { + "description": "The resource id for the storage account used to store BACPAC file. If set, private endpoint connection will be created for the storage account. Must match storage account used for StorageUri parameter.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "sqlServerResourceId": { + "description": "The resource id for the SQL server which is the target of this request. If set, private endpoint connection will be created for the SQL server. Must match server which is target of the operation.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "ImportExportOperationResultProperties": { + "description": "Contains the operation result properties for import/export operation.", + "type": "object", + "properties": { + "requestId": { + "format": "uuid", + "description": "Request Id.", + "type": "string", + "readOnly": true + }, + "requestType": { + "description": "Request type.", + "type": "string", + "readOnly": true + }, + "queuedTime": { + "description": "Queued time.", + "type": "string", + "readOnly": true + }, + "lastModifiedTime": { + "description": "Last modified time.", + "type": "string", + "readOnly": true + }, + "blobUri": { + "description": "Blob Uri.", + "type": "string", + "readOnly": true + }, + "serverName": { + "description": "Server name.", + "type": "string", + "readOnly": true + }, + "databaseName": { + "description": "Database name.", + "type": "string", + "readOnly": true + }, + "status": { + "description": "Operation status.", + "type": "string", + "readOnly": true + }, + "errorMessage": { + "description": "Error message.", + "type": "string", + "readOnly": true + }, + "privateEndpointConnections": { + "description": "Gets the status of private endpoints associated with this request.", + "type": "array", + "items": { + "$ref": "#/definitions/PrivateEndpointConnectionRequestStatus" + }, + "readOnly": true + } + } + }, + "PrivateEndpointConnectionRequestStatus": { + "description": "Contains the private endpoint connection requests status.", + "type": "object", + "properties": { + "privateLinkServiceId": { + "description": "Resource id for which the private endpoint is created.", + "type": "string", + "readOnly": true + }, + "privateEndpointConnectionName": { + "description": "The connection name for the private endpoint.", + "type": "string", + "readOnly": true + }, + "status": { + "description": "Status of this private endpoint connection.", + "type": "string", + "readOnly": true + } + } + }, + "Resource": { + "description": "ARM resource.", + "type": "object", + "properties": { + "id": { + "description": "Resource ID.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Resource name.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Resource type.", + "type": "string", + "readOnly": true + } + }, + "x-ms-azure-resource": true + }, + "ProxyResource": { + "description": "ARM proxy resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "properties": {} + }, + "ImportExportOperationResult": { + "description": "An ImportExport operation result resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ProxyResource" + } + ], + "properties": { + "properties": { + "$ref": "#/definitions/ImportExportOperationResultProperties", + "description": "Resource properties.", + "x-ms-client-flatten": true + } + } + }, + "ImportNewDatabaseDefinition": { + "description": "Contains the information necessary to perform import operation for new database.", + "required": [ + "storageKeyType", + "storageKey", + "storageUri", + "administratorLogin", + "administratorLoginPassword" + ], + "type": "object", + "properties": { + "databaseName": { + "description": "Name of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "edition": { + "description": "Edition of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "serviceObjectiveName": { + "description": "Service level objective name of the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "maxSizeBytes": { + "description": "Max size in bytes for the import database.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageKeyType": { + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "storageKey": { + "description": "Storage key.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageUri": { + "description": "Storage Uri.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLogin": { + "description": "Administrator login name.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLoginPassword": { + "description": "Administrator login password.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "authenticationType": { + "description": "Authentication type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "networkIsolation": { + "$ref": "#/definitions/NetworkIsolationSettings", + "description": "Optional resource information to enable network isolation for request.", + "x-ms-mutability": [ + "create" + ] + } + } + }, + "ExportDatabaseDefinition": { + "description": "Contains the information necessary to perform export database operation.", + "required": [ + "storageKeyType", + "storageKey", + "storageUri", + "administratorLogin", + "administratorLoginPassword" + ], + "type": "object", + "properties": { + "storageKeyType": { + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] + }, + "storageKey": { + "description": "Storage key.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "storageUri": { + "description": "Storage Uri.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLogin": { + "description": "Administrator login name.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "administratorLoginPassword": { + "description": "Administrator login password.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "authenticationType": { + "description": "Authentication type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] + }, + "networkIsolation": { + "$ref": "#/definitions/NetworkIsolationSettings", + "description": "Optional resource information to enable network isolation for request.", + "x-ms-mutability": [ + "create" + ] + } + } + } + }, + "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" + }, + "ManagedInstanceNameParameter": { + "name": "managedInstanceName", + "in": "path", + "description": "The name of the managed instance.", + "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" + }, + "BlobAuditingPolicyNameParameter": { + "name": "blobAuditingPolicyName", + "in": "path", + "description": "The name of the blob auditing policy.", + "required": true, + "type": "string", + "enum": [ + "default" + ], + "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" + }, + "VirtualClusterNameParameter": { + "name": "virtualClusterName", + "in": "path", + "description": "The name of the virtual cluster.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "WorkspaceNameParameter": { + "name": "workspaceName", + "in": "path", + "description": "The name of the workspace.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "SqlPoolNameParameter": { + "name": "sqlPoolName", + "in": "path", + "description": "The name of the sql pool.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "SqlDatabaseNameParameter": { + "name": "sqlDatabaseName", + "in": "path", + "description": "The name of the sql database.", + "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" + } + } + } +} From 72c9e1f9f9b87bbab12f1ed7619089c4f5236142 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Mon, 17 Aug 2020 17:36:50 -0700 Subject: [PATCH 12/43] Update readme.md for importexport.json --- specification/sql/resource-manager/readme.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/specification/sql/resource-manager/readme.md b/specification/sql/resource-manager/readme.md index 54846815a372..8e4f70692485 100644 --- a/specification/sql/resource-manager/readme.md +++ b/specification/sql/resource-manager/readme.md @@ -142,8 +142,7 @@ input-file: - Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json - Microsoft.Sql/preview/2020-02-02-preview/ServerAzureADOnlyAuthentications.json - Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json -- Microsoft.Sql/preview/2020-02-02-preview/servers.json -- Microsoft.Sql/preview/2020-02-02-preview/databases.json +- Microsoft.Sql/preview/2020-02-02-preview/importexport.json # Needed when there is more than one input file override-info: @@ -502,8 +501,7 @@ input-file: - ./Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json - ./Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json - Microsoft.Sql/preview/2020-02-02-preview/ServerAzureADOnlyAuthentications.json -- Microsoft.Sql/preview/2020-02-02-preview/servers.json -- Microsoft.Sql/preview/2020-02-02-preview/databases.json +- Microsoft.Sql/preview/2020-02-02-preview/importexport.json # Needed when there is more than one input file override-info: From cc536f2e9f8738fb2d781a6a92337148a32460a6 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 11:42:11 -0700 Subject: [PATCH 13/43] Fix ApiVersion description --- .../Microsoft.Sql/preview/2020-02-02-preview/importexport.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index 91ba8d01a759..9f9d7adf0d47 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -589,7 +589,7 @@ "ApiVersionParameter": { "name": "api-version", "in": "query", - "description": "The API version to use for the request.", + "description": "The API version to use for this operation.", "required": true, "type": "string", "x-ms-parameter-location": "client" From 924995996f1bdd34339d92bba1769fe456819645 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 13:41:50 -0700 Subject: [PATCH 14/43] Update CODEOWNERS for sql --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index b66b28e04d8e..6ea572dcb9f5 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -65,7 +65,7 @@ /specification/service-map/ @daveirwin1 /specification/servicebus/ @sazeesha @v-ajnava /specification/servicefabric/ @juhacket @samedder -/specification/sql/ @jaredmoo @jamestao +/specification/sql/ @jamestao @bcham /specification/storage/ @blueww @jasonyang-msft @xiaonlimsft @kasobol-msft /specification/storageimportexport/ @leoz-ms /specification/storagesync/ @ankushbindlish2 From 9d3de8a4c99e7ac12a7f79c291f4d77de0160921 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 15:19:11 -0700 Subject: [PATCH 15/43] Manually update API version parameter --- .../preview/2020-02-02-preview/importexport.json | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index 9f9d7adf0d47..1fad8623a631 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -46,7 +46,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -101,7 +101,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -159,7 +159,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -586,14 +586,6 @@ "type": "string", "x-ms-parameter-location": "client" }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "description": "The API version to use for this operation.", - "required": true, - "type": "string", - "x-ms-parameter-location": "client" - }, "ResourceGroupParameter": { "name": "resourceGroupName", "in": "path", From 82c551c4f8a2f3bc0d28025f035da7572c1d3ee6 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 15:38:53 -0700 Subject: [PATCH 16/43] Update 2014 importexport to use the new api version parameter description --- .../Microsoft.Sql/stable/2014-04-01/importExport.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json index 35f55f49b321..b910709acf25 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json @@ -25,7 +25,7 @@ "description": "Imports a bacpac into a new database. ", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" @@ -83,7 +83,7 @@ "description": "Creates an import operation that imports a bacpac into an existing database. The existing database must be empty.", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" @@ -162,7 +162,7 @@ "description": "Exports a database to a bacpac.", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" From 88e3408ddfbb57754796c43a2c4bbb81fdbc20a6 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 16:00:49 -0700 Subject: [PATCH 17/43] Make operation name consistent between 2014 and 2020 --- .../Microsoft.Sql/preview/2020-02-02-preview/importexport.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index 1fad8623a631..7c96e4ec1da7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -80,7 +80,7 @@ "ImportExport" ], "description": "Imports a bacpac into a new database.", - "operationId": "Servers_Import", + "operationId": "Databases_Import", "parameters": [ { "$ref": "#/parameters/ResourceGroupParameter" From 909c606b351b01350119abbf6bc315ad607baaaf Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 16:12:00 -0700 Subject: [PATCH 18/43] Make descriptions consistent in the 2014 version --- .../Microsoft.Sql/stable/2014-04-01/importExport.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json index b910709acf25..d0080e871647 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json @@ -22,7 +22,7 @@ "ImportExport" ], "operationId": "Databases_Import", - "description": "Imports a bacpac into a new database. ", + "description": "Imports a bacpac into a new database.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" @@ -159,7 +159,7 @@ "ImportExport" ], "operationId": "Databases_Export", - "description": "Exports a database to a bacpac.", + "description": "Exports a database.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" From d8873943106c9d22f11fcb62333c104e82043edf Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 20:52:12 -0700 Subject: [PATCH 19/43] Move more common parameters to reference; make some parameter descriptions consistent --- .../2020-02-02-preview/importexport.json | 28 ++++--------------- .../stable/2014-04-01/importExport.json | 20 ++++++------- 2 files changed, 16 insertions(+), 32 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index 7c96e4ec1da7..4791480d1151 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -25,7 +25,7 @@ "operationId": "ImportExport_Import", "parameters": [ { - "$ref": "#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -43,7 +43,7 @@ } }, { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" @@ -83,7 +83,7 @@ "operationId": "Databases_Import", "parameters": [ { - "$ref": "#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -98,7 +98,7 @@ } }, { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" @@ -138,7 +138,7 @@ "operationId": "Databases_Export", "parameters": [ { - "$ref": "#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -156,7 +156,7 @@ } }, { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" @@ -578,22 +578,6 @@ } }, "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "The subscription ID that identifies an Azure subscription.", - "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", diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json index d0080e871647..40bed837b9e0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json @@ -28,10 +28,10 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -43,7 +43,7 @@ "schema": { "$ref": "#/definitions/ImportRequest" }, - "description": "The required parameters for importing a Bacpac into a database." + "description": "The database import request parameters." } ], "responses": { @@ -86,10 +86,10 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -122,7 +122,7 @@ "schema": { "$ref": "#/definitions/ImportExtensionRequest" }, - "description": "The required parameters for importing a Bacpac into a database." + "description": "The database import request parameters." } ], "responses": { @@ -165,10 +165,10 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -178,7 +178,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the database to be exported." + "description": "The name of the database." }, { "name": "parameters", @@ -187,7 +187,7 @@ "schema": { "$ref": "#/definitions/ExportRequest" }, - "description": "The required parameters for exporting a database." + "description": "The database export request parameters." } ], "responses": { From 7ff4cf9abcf46a630b9fccb63c284b8038924a1e Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 22:12:51 -0700 Subject: [PATCH 20/43] Fix copy-paste error --- .../preview/2020-02-02-preview/importexport.json | 12 ++++++------ .../stable/2014-04-01/importExport.json | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index 4791480d1151..b9055bdd84f4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -25,7 +25,7 @@ "operationId": "ImportExport_Import", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -43,7 +43,7 @@ } }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" @@ -83,7 +83,7 @@ "operationId": "Databases_Import", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -98,7 +98,7 @@ } }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" @@ -138,7 +138,7 @@ "operationId": "Databases_Export", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -156,7 +156,7 @@ } }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json index 40bed837b9e0..aedd0c61115c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json @@ -28,10 +28,10 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -86,10 +86,10 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -165,10 +165,10 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" From 3f4d08aa819f0c1cf84521d1c222ffa8117173f7 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 22:26:07 -0700 Subject: [PATCH 21/43] Fix resource group parameter reference --- .../Microsoft.Sql/stable/2014-04-01/importExport.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json index aedd0c61115c..bf5f2a0a61a6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json @@ -31,7 +31,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -89,7 +89,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -168,7 +168,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ServerNameParameter" From ed905c7d2c4b5698405c30e7935da1f6efcf43ca Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 22:33:31 -0700 Subject: [PATCH 22/43] try to add back 2014 parameters --- .../stable/2014-04-01/importExport.json | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json index bf5f2a0a61a6..1403e81fee87 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json @@ -28,10 +28,10 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -86,10 +86,10 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -165,10 +165,10 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -497,6 +497,22 @@ } }, "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "description": "The subscription ID that identifies an Azure subscription.", + "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", From a2121d0877438661a92c9ca3ef71765a008c498a Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Tue, 18 Aug 2020 22:48:46 -0700 Subject: [PATCH 23/43] Remove 2014 from composite v3 --- specification/sql/resource-manager/readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/specification/sql/resource-manager/readme.md b/specification/sql/resource-manager/readme.md index 8e4f70692485..0dddbe4462c0 100644 --- a/specification/sql/resource-manager/readme.md +++ b/specification/sql/resource-manager/readme.md @@ -71,7 +71,6 @@ input-file: - Microsoft.Sql/stable/2014-04-01/dataMasking.json - Microsoft.Sql/stable/2014-04-01/firewallRules.json - Microsoft.Sql/stable/2014-04-01/geoBackupPolicies.json -- Microsoft.Sql/stable/2014-04-01/importExport.json - Microsoft.Sql/stable/2014-04-01/metrics.json - Microsoft.Sql/stable/2014-04-01/recommendedElasticPoolsDecoupled.json - Microsoft.Sql/stable/2014-04-01/replicationLinks.json From 3a14f88a1dd714979596a536eb6f38438c1bd00b Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 11:16:51 -0700 Subject: [PATCH 24/43] checkout 2014 version after removing from composite --- .../stable/2014-04-01/importExport.json | 46 ++++++------------- 1 file changed, 15 insertions(+), 31 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json index 1403e81fee87..35f55f49b321 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/importExport.json @@ -22,16 +22,16 @@ "ImportExport" ], "operationId": "Databases_Import", - "description": "Imports a bacpac into a new database.", + "description": "Imports a bacpac into a new database. ", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -43,7 +43,7 @@ "schema": { "$ref": "#/definitions/ImportRequest" }, - "description": "The database import request parameters." + "description": "The required parameters for importing a Bacpac into a database." } ], "responses": { @@ -83,13 +83,13 @@ "description": "Creates an import operation that imports a bacpac into an existing database. The existing database must be empty.", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -122,7 +122,7 @@ "schema": { "$ref": "#/definitions/ImportExtensionRequest" }, - "description": "The database import request parameters." + "description": "The required parameters for importing a Bacpac into a database." } ], "responses": { @@ -159,16 +159,16 @@ "ImportExport" ], "operationId": "Databases_Export", - "description": "Exports a database.", + "description": "Exports a database to a bacpac.", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -178,7 +178,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the database." + "description": "The name of the database to be exported." }, { "name": "parameters", @@ -187,7 +187,7 @@ "schema": { "$ref": "#/definitions/ExportRequest" }, - "description": "The database export request parameters." + "description": "The required parameters for exporting a database." } ], "responses": { @@ -497,22 +497,6 @@ } }, "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "description": "The subscription ID that identifies an Azure subscription.", - "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", From 8ccf968ebfa0ebe0c31ceb3d436cc45b59695e37 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 11:52:07 -0700 Subject: [PATCH 25/43] Change to use different common reference for ApiVersion --- .../preview/2020-02-02-preview/importexport.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index b9055bdd84f4..b9e3b6172611 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -46,7 +46,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -101,7 +101,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -159,7 +159,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { From af88971cd6fb1526932ea015fd8d529e409b62f1 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 12:08:32 -0700 Subject: [PATCH 26/43] Make ApiVersionParameter consistent across all of 2020 --- .../DatabaseSecurityAlertPolicies.json | 6 +++--- .../ManagedServerSecurityAlertPolicies.json | 6 +++--- .../ServerSecurityAlertPolicies.json | 6 +++--- .../preview/2020-02-02-preview/importexport.json | 6 +++--- .../2020-02-02-preview/managedInstances.json | 14 +++++++------- .../preview/2020-02-02-preview/operations.json | 2 +- .../shortTermRetentionPolicies.json | 8 ++++---- 7 files changed, 24 insertions(+), 24 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json index 92c1c89ddeb4..aeeb3d697c29 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -186,7 +186,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json index 0742d7b8e48c..4c66ecf94905 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json index b43ba41edaca..26d7302cfe02 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index b9e3b6172611..b9055bdd84f4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -46,7 +46,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -101,7 +101,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -159,7 +159,7 @@ "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json index 2eb45c066050..a259b8186e29 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json @@ -31,7 +31,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json" } ], "responses": { @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -169,7 +169,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -219,7 +219,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -269,7 +269,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -305,7 +305,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json index 14c45bbfb444..7099302de5a5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json @@ -25,7 +25,7 @@ "operationId": "Operations_List", "parameters": [ { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json index 1acb5f22460f..230d7774d2e5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { From 41c2ae2ed4a89029815f7b2018aab568c6909fe0 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 12:52:10 -0700 Subject: [PATCH 27/43] Fix copy paste error --- .../preview/2020-02-02-preview/managedInstances.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json index a259b8186e29..886faef4d58d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json @@ -31,7 +31,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { From cc51227b2ab2694d5c1f394a42e54775056bb132 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 13:21:08 -0700 Subject: [PATCH 28/43] Make importexport consistent with other 2020 APIs for SubscriptionId, ResourceGroup parameters --- .../preview/2020-02-02-preview/importexport.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index b9055bdd84f4..9f492cfcff1b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -25,7 +25,7 @@ "operationId": "ImportExport_Import", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -43,7 +43,7 @@ } }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" @@ -83,7 +83,7 @@ "operationId": "Databases_Import", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -98,7 +98,7 @@ } }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" @@ -138,7 +138,7 @@ "operationId": "Databases_Export", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -156,7 +156,7 @@ } }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" From 99be0da3ae4c15743c62a774f8f0c1469a3fdf72 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 13:34:10 -0700 Subject: [PATCH 29/43] Fix UniqueXmsEnumName violation --- .../2020-02-02-preview/importexport.json | 57 ++++++------------- 1 file changed, 18 insertions(+), 39 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index 9f492cfcff1b..2a760205f3d3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -201,19 +201,7 @@ "type": "object", "properties": { "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] + "$ref": "#/parameters/StorageKeyTypeParameter" }, "storageKey": { "description": "Storage key.", @@ -448,19 +436,7 @@ ] }, "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] + "$ref": "#/parameters/StorageKeyTypeParameter" }, "storageKey": { "description": "Storage key.", @@ -518,19 +494,7 @@ "type": "object", "properties": { "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] + "$ref": "#/parameters/StorageKeyTypeParameter" }, "storageKey": { "description": "Storage key.", @@ -660,6 +624,21 @@ "required": true, "type": "string", "x-ms-parameter-location": "method" + }, + "StorageKeyTypeParameter": { + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] } }, "securityDefinitions": { From e25befdc3439b8032352679f0475247a101633a1 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 13:46:45 -0700 Subject: [PATCH 30/43] StorageKeyTypeParameter --- .../Microsoft.Sql/preview/2020-02-02-preview/importexport.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index 2a760205f3d3..ba3b6974f303 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -626,11 +626,14 @@ "x-ms-parameter-location": "method" }, "StorageKeyTypeParameter": { + "in": "body", + "name": "storageKeyType", "description": "Storage key type.", "enum": [ "SharedAccessKey", "StorageAccessKey" ], + "required": true, "type": "string", "x-ms-enum": { "name": "StorageKeyType", From 4e5f35eaf6a7fd1cad41fc4fa1124afbc7bda0c6 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 13:50:49 -0700 Subject: [PATCH 31/43] Backtrack to cc51227b2 --- .../2020-02-02-preview/importexport.json | 60 ++++++++++++------- 1 file changed, 39 insertions(+), 21 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index ba3b6974f303..9f492cfcff1b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -201,7 +201,19 @@ "type": "object", "properties": { "storageKeyType": { - "$ref": "#/parameters/StorageKeyTypeParameter" + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] }, "storageKey": { "description": "Storage key.", @@ -436,7 +448,19 @@ ] }, "storageKeyType": { - "$ref": "#/parameters/StorageKeyTypeParameter" + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] }, "storageKey": { "description": "Storage key.", @@ -494,7 +518,19 @@ "type": "object", "properties": { "storageKeyType": { - "$ref": "#/parameters/StorageKeyTypeParameter" + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] }, "storageKey": { "description": "Storage key.", @@ -624,24 +660,6 @@ "required": true, "type": "string", "x-ms-parameter-location": "method" - }, - "StorageKeyTypeParameter": { - "in": "body", - "name": "storageKeyType", - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "required": true, - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] } }, "securityDefinitions": { From e831d26d1a870959fe43ba262df46eae7d20498b Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 14:58:10 -0700 Subject: [PATCH 32/43] Try to move StorageKeyType to common definition ref --- .../2020-02-02-preview/importexport.json | 57 ++++++------------- 1 file changed, 18 insertions(+), 39 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index 9f492cfcff1b..e2e968ca980a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -201,19 +201,7 @@ "type": "object", "properties": { "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] + "$ref": "#/definitions/StorageKeyTypeEnum" }, "storageKey": { "description": "Storage key.", @@ -448,19 +436,7 @@ ] }, "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] + "$ref": "#/definitions/StorageKeyTypeEnum" }, "storageKey": { "description": "Storage key.", @@ -518,19 +494,7 @@ "type": "object", "properties": { "storageKeyType": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] + "$ref": "#/definitions/StorageKeyTypeEnum" }, "storageKey": { "description": "Storage key.", @@ -575,6 +539,21 @@ ] } } + }, + "StorageKeyTypeEnum": { + "description": "Storage key type.", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, + "x-ms-mutability": [ + "create" + ] } }, "parameters": { From 5f057f5103cbd576d90cd14286a450f8d2188cad Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 15:08:03 -0700 Subject: [PATCH 33/43] StorageKeType2Haha don't check in --- .../Microsoft.Sql/preview/2020-02-02-preview/importexport.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index e2e968ca980a..ef7e799741fc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -548,7 +548,7 @@ ], "type": "string", "x-ms-enum": { - "name": "StorageKeyType", + "name": "StorageKeyType2Haha", "modelAsString": true }, "x-ms-mutability": [ From 9d969f0017f14b5a368851cfb0083f34a976a7f4 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 15:26:00 -0700 Subject: [PATCH 34/43] Try to just make storage key type a string --- .../2020-02-02-preview/importexport.json | 33 +++++++++---------- 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index ef7e799741fc..c26e45638c7e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -201,7 +201,11 @@ "type": "object", "properties": { "storageKeyType": { - "$ref": "#/definitions/StorageKeyTypeEnum" + "description": "Storage key type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] }, "storageKey": { "description": "Storage key.", @@ -436,7 +440,11 @@ ] }, "storageKeyType": { - "$ref": "#/definitions/StorageKeyTypeEnum" + "description": "Storage key type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] }, "storageKey": { "description": "Storage key.", @@ -494,7 +502,11 @@ "type": "object", "properties": { "storageKeyType": { - "$ref": "#/definitions/StorageKeyTypeEnum" + "description": "Storage key type.", + "type": "string", + "x-ms-mutability": [ + "create" + ] }, "storageKey": { "description": "Storage key.", @@ -539,21 +551,6 @@ ] } } - }, - "StorageKeyTypeEnum": { - "description": "Storage key type.", - "enum": [ - "SharedAccessKey", - "StorageAccessKey" - ], - "type": "string", - "x-ms-enum": { - "name": "StorageKeyType2Haha", - "modelAsString": true - }, - "x-ms-mutability": [ - "create" - ] } }, "parameters": { From 12582285e60a5f9a2aa5a65dd65bc19004e2253e Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 21:10:35 -0700 Subject: [PATCH 35/43] Attempt to resolve ApiVersionParameter issue again - this time revert everything back except importexport.json, and update to use the reference in the types.json under sql common --- .../DatabaseSecurityAlertPolicies.json | 6 ++-- .../ManagedServerSecurityAlertPolicies.json | 6 ++-- .../2020-02-02-preview/importexport.json | 6 ++-- .../2020-02-02-preview/managedDatabases.json | 32 +++++++++---------- .../2020-02-02-preview/managedInstances.json | 14 ++++---- .../2020-02-02-preview/operations.json | 2 +- .../shortTermRetentionPolicies.json | 8 ++--- 7 files changed, 37 insertions(+), 37 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json index aeeb3d697c29..92c1c89ddeb4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -186,7 +186,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json index 4c66ecf94905..0742d7b8e48c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index c26e45638c7e..a57f598679b2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -46,7 +46,7 @@ "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -101,7 +101,7 @@ "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -159,7 +159,7 @@ "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json index d1ce85ccd7f7..8f0632033035 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json @@ -43,7 +43,7 @@ "operationId": "ManagedDatabaseRestoreDetails_Get", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -69,7 +69,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -99,7 +99,7 @@ "operationId": "ManagedDatabases_ListByInstance", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -141,7 +141,7 @@ "operationId": "ManagedDatabases_Get", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -153,7 +153,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "operationId": "ManagedDatabases_CreateOrUpdate", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -202,7 +202,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -255,7 +255,7 @@ "operationId": "ManagedDatabases_Delete", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -267,7 +267,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -299,7 +299,7 @@ "operationId": "ManagedDatabases_Update", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -320,7 +320,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -357,7 +357,7 @@ "operationId": "ManagedDatabases_ListInaccessibleByInstance", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -366,7 +366,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -399,7 +399,7 @@ "operationId": "ManagedDatabases_CompleteRestore", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -420,7 +420,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json index 886faef4d58d..2eb45c066050 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json @@ -31,7 +31,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -169,7 +169,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -219,7 +219,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -269,7 +269,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -305,7 +305,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json index 7099302de5a5..14c45bbfb444 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json @@ -25,7 +25,7 @@ "operationId": "Operations_List", "parameters": [ { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json index 230d7774d2e5..1acb5f22460f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { From 54c9e897028316096d673395dd4a0d9bafbb5f80 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 21:15:28 -0700 Subject: [PATCH 36/43] Revert the ResourceGroupNameParameter for managedDatabases.json --- .../2020-02-02-preview/managedDatabases.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json index 8f0632033035..3b4a62ebf721 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json @@ -43,7 +43,7 @@ "operationId": "ManagedDatabaseRestoreDetails_Get", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -99,7 +99,7 @@ "operationId": "ManagedDatabases_ListByInstance", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -141,7 +141,7 @@ "operationId": "ManagedDatabases_Get", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -181,7 +181,7 @@ "operationId": "ManagedDatabases_CreateOrUpdate", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -255,7 +255,7 @@ "operationId": "ManagedDatabases_Delete", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -299,7 +299,7 @@ "operationId": "ManagedDatabases_Update", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -357,7 +357,7 @@ "operationId": "ManagedDatabases_ListInaccessibleByInstance", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" @@ -399,7 +399,7 @@ "operationId": "ManagedDatabases_CompleteRestore", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" From d5d6d4e83adfc4c90beccf5c26d331ae7cd73b23 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 21:29:34 -0700 Subject: [PATCH 37/43] Fix two more files with different ApiVersionParameter --- .../preview/2019-06-01-preview/FailoverManagedInstance.json | 2 +- .../2020-02-02-preview/ServerSecurityAlertPolicies.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/FailoverManagedInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/FailoverManagedInstance.json index 47b4874ad9c2..ce022a87954c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/FailoverManagedInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/FailoverManagedInstance.json @@ -49,7 +49,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json index 26d7302cfe02..7416f8ce6b64 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { From 4ed14fcbf606f5539e40da21c933f63416707736 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 22:07:33 -0700 Subject: [PATCH 38/43] Shotgun approach - change ALL ApiVersionParameter to reference types.json --- .../preview/2015-05-01-preview/advisors.json | 18 ++--- .../2015-05-01-preview/blobAuditing.json | 6 +- .../blobAuditingPolicies.json | 4 +- .../databaseAutomaticTuning.json | 4 +- .../encryptionProtectors.json | 8 +-- .../2015-05-01-preview/failoverGroups.json | 14 ++-- .../2015-05-01-preview/firewallRules.json | 10 +-- .../2015-05-01-preview/managedInstances.json | 12 ++-- .../2015-05-01-preview/operations.json | 2 +- .../2015-05-01-preview/serverKeys.json | 8 +-- .../preview/2015-05-01-preview/servers.json | 12 ++-- .../2015-05-01-preview/syncAgents.json | 12 ++-- .../2015-05-01-preview/syncGroups.json | 22 +++--- .../2015-05-01-preview/syncMembers.json | 14 ++-- .../preview/2015-05-01-preview/usages.json | 4 +- .../virtualNetworkRules.json | 8 +-- .../2015-05-01-preview/virtualclusters.json | 10 +-- .../ManagedBackupShortTermRetention.json | 8 +-- .../ManagedDatabaseSecurityAlertPolicies.json | 6 +- ...roppedDatabaseBackupShortTermRetenion.json | 8 +-- .../ManagedServerSecurityAlertPolicy.json | 6 +- .../2017-03-01-preview/SensitivityLabels.json | 14 ++-- .../2017-03-01-preview/blobAuditing.json | 24 +++---- .../2017-03-01-preview/cancelOperations.json | 4 +- .../dataWarehouseUserActivities.json | 2 +- ...abaseVulnerabilityAssessmentBaselines.json | 6 +- .../databaseVulnerabilityAssessments.json | 8 +-- .../preview/2017-03-01-preview/databases.json | 18 ++--- .../preview/2017-03-01-preview/jobs.json | 72 +++++++++---------- .../2017-03-01-preview/longTermRetention.json | 26 +++---- .../2017-03-01-preview/managedDatabases.json | 12 ++-- .../managedInstanceAdministrators.json | 8 +-- .../2017-03-01-preview/renameDatabase.json | 2 +- .../restorableDroppedManagedDatabases.json | 4 +- .../2017-03-01-preview/restorePoints.json | 8 +-- .../serverAutomaticTuning.json | 4 +- .../2017-03-01-preview/serverDnsAliases.json | 10 +-- .../serverSecurityAlertPolicies.json | 6 +- .../ManagedInstanceEncryptionProtectors.json | 8 +-- .../ManagedInstanceKeys.json | 8 +-- .../ManagedInstanceTdeCertificates.json | 2 +- .../2017-10-01-preview/TdeCertificates.json | 2 +- .../2017-10-01-preview/cancelOperations.json | 4 +- .../cancelPoolOperations.json | 4 +- .../2017-10-01-preview/capabilities.json | 2 +- .../databaseVulnerabilityAssessmentScans.json | 8 +-- .../preview/2017-10-01-preview/databases.json | 20 +++--- .../2017-10-01-preview/elasticPools.json | 10 +-- .../instanceFailoverGroups.json | 12 ++-- ...seVulnerabilityAssesmentRuleBaselines.json | 6 +- ...dDatabaseVulnerabilityAssessmentScans.json | 8 +-- ...nagedDatabaseVulnerabilityAssessments.json | 8 +-- .../recoverableManagedDatabases.json | 4 +- .../shortTermRetentionPolicies.json | 8 +-- .../2018-06-01-preview/DatabaseSchema.json | 12 ++-- .../DatabaseSecurityAlertPolicies.json | 6 +- .../2018-06-01-preview/FailoverDatabases.json | 2 +- .../FailoverElasticPools.json | 2 +- ...ngTermRetentionManagedInstanceBackups.json | 20 +++--- .../ManagedDatabaseSchema.json | 12 ++-- ...agedInstanceLongTermRetentionPolicies.json | 6 +- ...nagedInstanceVulnerabilityAssessments.json | 8 +-- .../PrivateEndpointConnections.json | 8 +-- .../PrivateLinkResources.json | 4 +- .../ServerVulnerabilityAssessments.json | 8 +-- .../2018-06-01-preview/capabilities.json | 2 +- .../2018-06-01-preview/instancePools.json | 12 ++-- .../managedDatabaseSensitivityLabels.json | 14 ++-- .../2018-06-01-preview/managedDatabases.json | 14 ++-- .../managedInstanceOperations.json | 4 +- .../2018-06-01-preview/managedInstances.json | 14 ++-- .../preview/2018-06-01-preview/usages.json | 2 +- .../WorkloadClassifiers.json | 8 +-- .../2019-06-01-preview/WorkloadGroups.json | 8 +-- .../preview/2019-06-01-preview/databases.json | 24 +++---- .../2019-06-01-preview/managedDatabases.json | 16 ++--- .../managedInstanceOperations.json | 6 +- .../2019-06-01-preview/serverOperations.json | 2 +- .../preview/2019-06-01-preview/servers.json | 14 ++-- .../2019-06-01-preview/syncGroups.json | 22 +++--- .../2019-06-01-preview/syncMembers.json | 14 ++-- .../DatabaseSecurityAlertPolicies.json | 6 +- .../ManagedServerSecurityAlertPolicies.json | 6 +- .../2020-02-02-preview/managedInstances.json | 14 ++-- .../2020-02-02-preview/operations.json | 2 +- .../shortTermRetentionPolicies.json | 8 +-- .../stable/2015-05-01/capabilities.json | 2 +- .../stable/2015-05-01/usages.json | 4 +- 88 files changed, 422 insertions(+), 422 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json index 50f16158c996..df5c16d3e8b6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json @@ -37,7 +37,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -148,7 +148,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -197,7 +197,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -256,7 +256,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -319,7 +319,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -358,7 +358,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -410,7 +410,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -463,7 +463,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json index 74a2e385bb4b..20a5cb402088 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json @@ -40,7 +40,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -146,7 +146,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json index f3fd894573c8..0ef4b34d77ae 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -122,7 +122,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json index 467ba51596dd..e779ad2570fa 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json @@ -37,7 +37,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -86,7 +86,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json index 66315fab2827..29abbc3ec9e4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -88,7 +88,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -144,7 +144,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -204,7 +204,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json index 665da874d583..3a921d4a2a05 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -102,7 +102,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -160,7 +160,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -221,7 +221,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -268,7 +268,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -321,7 +321,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -375,7 +375,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json index 33d05daca8f3..0d29164fd2f1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -94,7 +94,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -147,7 +147,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -186,7 +186,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -234,7 +234,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/managedInstances.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/managedInstances.json index f73579be3d37..c3f01de8cbe4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/managedInstances.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/managedInstances.json @@ -31,7 +31,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -169,7 +169,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -219,7 +219,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -259,7 +259,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json index f88d4ef6e03f..cc2b4ce532d1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json @@ -25,7 +25,7 @@ "operationId": "Operations_List", "parameters": [ { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json index 0b5fce2f1b7f..a592067cccbe 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -83,7 +83,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -136,7 +136,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -190,7 +190,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json index 6b0a93e10d67..47a41db066f2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json @@ -28,7 +28,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -67,7 +67,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -109,7 +109,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -155,7 +155,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -205,7 +205,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -255,7 +255,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json index c4b17aff90e0..6784f6fe8bcd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -102,7 +102,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -163,7 +163,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -210,7 +210,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -263,7 +263,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -313,7 +313,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json index 17c59eea5683..b36f0fe709c6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -91,7 +91,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -145,7 +145,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -235,7 +235,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -291,7 +291,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -341,7 +341,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -391,7 +391,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -451,7 +451,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -515,7 +515,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -579,7 +579,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -629,7 +629,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json index 0d1dc1e26313..c90326e4b6c8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -122,7 +122,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -193,7 +193,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -264,7 +264,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -321,7 +321,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -384,7 +384,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -447,7 +447,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json index 117d2fbb9cfe..9a22ab46e953 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -85,7 +85,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json index 0636163c2904..d36d3aaa908a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -94,7 +94,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -148,7 +148,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -191,7 +191,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json index b7cdcc5dcc4d..6ff677853391 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json @@ -28,7 +28,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -67,7 +67,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -109,7 +109,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -146,7 +146,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -196,7 +196,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json index 2be97f2395f5..e4abda95dac5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json index a53d44f96e12..1847cd508d7e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -189,7 +189,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json index ff9e4d00883a..212ab91b4368 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json @@ -54,7 +54,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -120,7 +120,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -190,7 +190,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -239,7 +239,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json index eb8c8e3bbef4..2db0337e0d21 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -154,7 +154,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/SensitivityLabels.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/SensitivityLabels.json index bc0009ce5b97..8abcc382fd4b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/SensitivityLabels.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/SensitivityLabels.json @@ -44,7 +44,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -110,7 +110,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -190,7 +190,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -263,7 +263,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -338,7 +338,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -422,7 +422,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -503,7 +503,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json index 90430bf3fd96..dbd6b4e09e5a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json @@ -40,7 +40,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -146,7 +146,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -191,7 +191,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -240,7 +240,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -286,7 +286,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -331,7 +331,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -380,7 +380,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -426,7 +426,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -474,7 +474,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -526,7 +526,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -580,7 +580,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json index 4f0e0b5b98de..4ac3485cbe18 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -84,7 +84,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json index 81fed9409b2c..50bd69484f6b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json index b4e0d88f6557..868fbb10bc44 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json @@ -77,7 +77,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -166,7 +166,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -246,7 +246,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json index f5a4fe2c1820..225bb3f95a3c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -122,7 +122,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -192,7 +192,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -235,7 +235,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json index 738d9589c329..47c7786a944b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -79,7 +79,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -128,7 +128,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -199,7 +199,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -252,7 +252,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -307,7 +307,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -357,7 +357,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -407,7 +407,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -456,7 +456,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json index 0b434c2886f1..b7507de7fc13 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -83,7 +83,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -136,7 +136,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -193,7 +193,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -250,7 +250,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -300,7 +300,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -356,7 +356,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -416,7 +416,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -473,7 +473,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -572,7 +572,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -639,7 +639,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -689,7 +689,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -799,7 +799,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -863,7 +863,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -922,7 +922,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -978,7 +978,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1034,7 +1034,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1094,7 +1094,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1154,7 +1154,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1268,7 +1268,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1339,7 +1339,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1400,7 +1400,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1471,7 +1471,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1524,7 +1524,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1587,7 +1587,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1654,7 +1654,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1721,7 +1721,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1835,7 +1835,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1959,7 +1959,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2038,7 +2038,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2084,7 +2084,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2140,7 +2140,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2200,7 +2200,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2260,7 +2260,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2313,7 +2313,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2377,7 +2377,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json index a46331e490ce..65934d7c41e8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -121,7 +121,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -189,7 +189,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -245,7 +245,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -308,7 +308,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -372,7 +372,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -431,7 +431,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -496,7 +496,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -549,7 +549,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -609,7 +609,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -668,7 +668,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -731,7 +731,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -777,7 +777,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json index 05ace997f90e..12a3ccd43f53 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json @@ -52,7 +52,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -137,7 +137,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -186,7 +186,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -251,7 +251,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -304,7 +304,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json index 1aff37e22df7..97f1aa1b55f6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -89,7 +89,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -148,7 +148,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -211,7 +211,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json index 3f0f2316b04a..588569cbab8d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json @@ -50,7 +50,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json index 062b1895f73c..391f8d40d306 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -82,7 +82,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json index f5fec05b43f5..b0a32e32223f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json @@ -37,7 +37,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -201,7 +201,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json index ed682d346ad4..7913498e57bb 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -80,7 +80,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json index 7703e7d4c1fc..84abb2934bef 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -93,7 +93,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -198,7 +198,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -259,7 +259,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json index dc012c95b7bc..a5e94769d7a2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -154,7 +154,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json index e8541adcaf4e..eb94debdac1d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -88,7 +88,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -144,7 +144,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -204,7 +204,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json index 18f1f9d2ef8b..a283c4ae7acf 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -143,7 +143,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -197,7 +197,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json index d98833d12763..e1babc6f106b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json @@ -43,7 +43,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json index 885641b18425..97cfbf68cf89 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json @@ -43,7 +43,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json index 4cdfe825fa3b..b286377e6e8c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -84,7 +84,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json index d8dc938b4595..dfe564e9a8ec 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json index 02b98fc1f3c6..fab80dff71a7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json index 3246423df7af..7fd6e88589fe 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -117,7 +117,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -180,7 +180,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -248,7 +248,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json index d93a3000d8e5..74eff47f6cd9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -79,7 +79,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -128,7 +128,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -214,7 +214,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -267,7 +267,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -317,7 +317,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -366,7 +366,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -416,7 +416,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -466,7 +466,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -522,7 +522,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json index 897ad7b2065e..c8861351cace 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -143,7 +143,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -200,7 +200,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -257,7 +257,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json index fcbb71db578a..630a39a6bab9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -102,7 +102,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -160,7 +160,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -207,7 +207,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -260,7 +260,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -314,7 +314,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json index 3ca948dad879..9f79246559ac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json @@ -81,7 +81,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -174,7 +174,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -258,7 +258,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json index 3ef467f1f28b..6965a498a355 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -125,7 +125,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -192,7 +192,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -264,7 +264,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json index dbf738d1f909..70157414d3e6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -201,7 +201,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -248,7 +248,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json index b9c84541ffe9..043dbf2a35b4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -82,7 +82,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json index ee428b5c056f..939defee20c1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json index 7a9f86196fd9..ecac5cf79029 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json @@ -58,7 +58,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -125,7 +125,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -174,7 +174,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -283,7 +283,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -343,7 +343,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSecurityAlertPolicies.json index cb585915d5ec..736e8917728f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSecurityAlertPolicies.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -189,7 +189,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverDatabases.json index 71283166e94d..07e409d851fe 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverDatabases.json @@ -56,7 +56,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverElasticPools.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverElasticPools.json index b3c944b5b94e..e8e6c0be1256 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverElasticPools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverElasticPools.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/LongTermRetentionManagedInstanceBackups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/LongTermRetentionManagedInstanceBackups.json index dd93bd17879c..38e844d08c06 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/LongTermRetentionManagedInstanceBackups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/LongTermRetentionManagedInstanceBackups.json @@ -56,7 +56,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -115,7 +115,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -193,7 +193,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -266,7 +266,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -332,7 +332,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -399,7 +399,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -461,7 +461,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -542,7 +542,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -618,7 +618,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -687,7 +687,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json index 75396a60e8a7..c6974583b1b5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json @@ -58,7 +58,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -125,7 +125,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -174,7 +174,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -283,7 +283,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -343,7 +343,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceLongTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceLongTermRetentionPolicies.json index c76ba97a4139..dea3f0300449 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceLongTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceLongTermRetentionPolicies.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -160,7 +160,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json index 5908bfcb5c0f..f643145f5930 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json @@ -52,7 +52,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -116,7 +116,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -183,7 +183,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -223,7 +223,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateEndpointConnections.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateEndpointConnections.json index e3144a2a0990..ba5cc577b0b9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateEndpointConnections.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateEndpointConnections.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -139,7 +139,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -182,7 +182,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateLinkResources.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateLinkResources.json index 3f8be5fd41f1..a74a9cd9bc09 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateLinkResources.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateLinkResources.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -83,7 +83,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json index 1ae82eb08cce..b535dc0ebffd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json @@ -52,7 +52,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -116,7 +116,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -183,7 +183,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -219,7 +219,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/capabilities.json index b0b82c19ea38..55cf21aa56a9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/capabilities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/capabilities.json @@ -53,7 +53,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json index 84ccd6223fa4..f60b5008090c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json @@ -38,7 +38,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -88,7 +88,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -142,7 +142,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -196,7 +196,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -236,7 +236,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -272,7 +272,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json index 22ddff4cc04e..69e74ef2de67 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -157,7 +157,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -238,7 +238,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -311,7 +311,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -384,7 +384,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -430,7 +430,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -496,7 +496,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabases.json index a294dcb0128c..006c27116668 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabases.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -135,7 +135,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -184,7 +184,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -249,7 +249,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -302,7 +302,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -360,7 +360,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstanceOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstanceOperations.json index fb5c48b9f9d7..6a82de3bdd85 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstanceOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstanceOperations.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -83,7 +83,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstances.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstances.json index 5006cad54c5f..5069b1b608a3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstances.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstances.json @@ -38,7 +38,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -77,7 +77,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -165,7 +165,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -215,7 +215,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -265,7 +265,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -305,7 +305,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/usages.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/usages.json index 1488395612b2..1ec51038739b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/usages.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/usages.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadClassifiers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadClassifiers.json index 8757f3504cb5..b91b958b9bdc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadClassifiers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadClassifiers.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -234,7 +234,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadGroups.json index 00c39d002440..4920775aa540 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadGroups.json @@ -44,7 +44,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -100,7 +100,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -160,7 +160,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -206,7 +206,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/databases.json index 2e2db731b65d..e8e8f12fa037 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/databases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -79,7 +79,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -128,7 +128,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -208,7 +208,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -261,7 +261,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -311,7 +311,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -360,7 +360,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -410,7 +410,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -460,7 +460,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -516,7 +516,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -552,7 +552,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -616,7 +616,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedDatabases.json index 37b1e4031a56..1a10e3e0c3d3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedDatabases.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -135,7 +135,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -184,7 +184,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -249,7 +249,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -302,7 +302,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -348,7 +348,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -402,7 +402,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedInstanceOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedInstanceOperations.json index e7d461236c33..872070974d8d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedInstanceOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedInstanceOperations.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -77,7 +77,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -126,7 +126,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/serverOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/serverOperations.json index 29f7b40503a7..958fe31ae6d9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/serverOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/serverOperations.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/servers.json index 1eda90f1b705..547002f7b4ff 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/servers.json @@ -31,7 +31,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -166,7 +166,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -216,7 +216,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -253,7 +253,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -298,7 +298,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncGroups.json index ab80ff901950..9790973ccc02 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncGroups.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -91,7 +91,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -145,7 +145,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -235,7 +235,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -291,7 +291,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -341,7 +341,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -391,7 +391,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -451,7 +451,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -515,7 +515,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -579,7 +579,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -629,7 +629,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncMembers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncMembers.json index ba60112d1b74..19e3117e4cca 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncMembers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncMembers.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -122,7 +122,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -193,7 +193,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -264,7 +264,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -321,7 +321,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -384,7 +384,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -447,7 +447,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json index 92c1c89ddeb4..ec80326753d3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -186,7 +186,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json index 0742d7b8e48c..a9bb54a80dec 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json index 2eb45c066050..6e3b661b638f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json @@ -31,7 +31,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -169,7 +169,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -219,7 +219,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -269,7 +269,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -305,7 +305,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json index 14c45bbfb444..60dbc20c3962 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json @@ -25,7 +25,7 @@ "operationId": "Operations_List", "parameters": [ { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json index 1acb5f22460f..187f7262b4ac 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json index 265f8a349f74..c1154f37c605 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json index 03ce7493d5a4..dc69202468ee 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -85,7 +85,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { From a2c445a78212a96c4a79708b2552f93e153501b7 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 22:21:40 -0700 Subject: [PATCH 39/43] Undo everything except importexport.json and new exaples --- .../preview/2015-05-01-preview/advisors.json | 18 ++--- .../2015-05-01-preview/blobAuditing.json | 6 +- .../blobAuditingPolicies.json | 4 +- .../databaseAutomaticTuning.json | 4 +- .../encryptionProtectors.json | 8 +-- .../2015-05-01-preview/failoverGroups.json | 14 ++-- .../2015-05-01-preview/firewallRules.json | 10 +-- .../2015-05-01-preview/managedInstances.json | 12 ++-- .../2015-05-01-preview/operations.json | 2 +- .../2015-05-01-preview/serverKeys.json | 8 +-- .../preview/2015-05-01-preview/servers.json | 12 ++-- .../2015-05-01-preview/syncAgents.json | 12 ++-- .../2015-05-01-preview/syncGroups.json | 22 +++--- .../2015-05-01-preview/syncMembers.json | 14 ++-- .../preview/2015-05-01-preview/usages.json | 4 +- .../virtualNetworkRules.json | 8 +-- .../2015-05-01-preview/virtualclusters.json | 10 +-- .../ManagedBackupShortTermRetention.json | 8 +-- .../ManagedDatabaseSecurityAlertPolicies.json | 6 +- ...roppedDatabaseBackupShortTermRetenion.json | 8 +-- .../ManagedServerSecurityAlertPolicy.json | 6 +- .../2017-03-01-preview/SensitivityLabels.json | 14 ++-- .../2017-03-01-preview/blobAuditing.json | 24 +++---- .../2017-03-01-preview/cancelOperations.json | 4 +- .../dataWarehouseUserActivities.json | 2 +- ...abaseVulnerabilityAssessmentBaselines.json | 6 +- .../databaseVulnerabilityAssessments.json | 8 +-- .../preview/2017-03-01-preview/databases.json | 18 ++--- .../preview/2017-03-01-preview/jobs.json | 72 +++++++++---------- .../2017-03-01-preview/longTermRetention.json | 26 +++---- .../2017-03-01-preview/managedDatabases.json | 12 ++-- .../managedInstanceAdministrators.json | 8 +-- .../2017-03-01-preview/renameDatabase.json | 2 +- .../restorableDroppedManagedDatabases.json | 4 +- .../2017-03-01-preview/restorePoints.json | 8 +-- .../serverAutomaticTuning.json | 4 +- .../2017-03-01-preview/serverDnsAliases.json | 10 +-- .../serverSecurityAlertPolicies.json | 6 +- .../ManagedInstanceEncryptionProtectors.json | 8 +-- .../ManagedInstanceKeys.json | 8 +-- .../ManagedInstanceTdeCertificates.json | 2 +- .../2017-10-01-preview/TdeCertificates.json | 2 +- .../2017-10-01-preview/cancelOperations.json | 4 +- .../cancelPoolOperations.json | 4 +- .../2017-10-01-preview/capabilities.json | 2 +- .../databaseVulnerabilityAssessmentScans.json | 8 +-- .../preview/2017-10-01-preview/databases.json | 20 +++--- .../2017-10-01-preview/elasticPools.json | 10 +-- .../instanceFailoverGroups.json | 12 ++-- ...seVulnerabilityAssesmentRuleBaselines.json | 6 +- ...dDatabaseVulnerabilityAssessmentScans.json | 8 +-- ...nagedDatabaseVulnerabilityAssessments.json | 8 +-- .../recoverableManagedDatabases.json | 4 +- .../shortTermRetentionPolicies.json | 8 +-- .../2018-06-01-preview/DatabaseSchema.json | 12 ++-- .../DatabaseSecurityAlertPolicies.json | 6 +- .../2018-06-01-preview/FailoverDatabases.json | 2 +- .../FailoverElasticPools.json | 2 +- ...ngTermRetentionManagedInstanceBackups.json | 20 +++--- .../ManagedDatabaseSchema.json | 12 ++-- ...agedInstanceLongTermRetentionPolicies.json | 6 +- ...nagedInstanceVulnerabilityAssessments.json | 8 +-- .../PrivateEndpointConnections.json | 8 +-- .../PrivateLinkResources.json | 4 +- .../ServerVulnerabilityAssessments.json | 8 +-- .../2018-06-01-preview/capabilities.json | 2 +- .../2018-06-01-preview/instancePools.json | 12 ++-- .../managedDatabaseSensitivityLabels.json | 14 ++-- .../2018-06-01-preview/managedDatabases.json | 14 ++-- .../managedInstanceOperations.json | 4 +- .../2018-06-01-preview/managedInstances.json | 14 ++-- .../preview/2018-06-01-preview/usages.json | 2 +- .../FailoverManagedInstance.json | 2 +- .../WorkloadClassifiers.json | 8 +-- .../2019-06-01-preview/WorkloadGroups.json | 8 +-- .../preview/2019-06-01-preview/databases.json | 24 +++---- .../2019-06-01-preview/managedDatabases.json | 16 ++--- .../managedInstanceOperations.json | 6 +- .../2019-06-01-preview/serverOperations.json | 2 +- .../preview/2019-06-01-preview/servers.json | 14 ++-- .../2019-06-01-preview/syncGroups.json | 22 +++--- .../2019-06-01-preview/syncMembers.json | 14 ++-- .../DatabaseSecurityAlertPolicies.json | 6 +- .../ManagedServerSecurityAlertPolicies.json | 6 +- .../ServerSecurityAlertPolicies.json | 6 +- .../2020-02-02-preview/managedDatabases.json | 16 ++--- .../2020-02-02-preview/managedInstances.json | 14 ++-- .../2020-02-02-preview/operations.json | 2 +- .../shortTermRetentionPolicies.json | 8 +-- .../stable/2015-05-01/capabilities.json | 2 +- .../stable/2015-05-01/usages.json | 4 +- 91 files changed, 434 insertions(+), 434 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json index df5c16d3e8b6..50f16158c996 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/advisors.json @@ -37,7 +37,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -148,7 +148,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -197,7 +197,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -256,7 +256,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -319,7 +319,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -358,7 +358,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -410,7 +410,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -463,7 +463,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json index 20a5cb402088..74a2e385bb4b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditing.json @@ -40,7 +40,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -146,7 +146,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json index 0ef4b34d77ae..f3fd894573c8 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/blobAuditingPolicies.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -122,7 +122,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json index e779ad2570fa..467ba51596dd 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/databaseAutomaticTuning.json @@ -37,7 +37,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -86,7 +86,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json index 29abbc3ec9e4..66315fab2827 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/encryptionProtectors.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -88,7 +88,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -144,7 +144,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -204,7 +204,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json index 3a921d4a2a05..665da874d583 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/failoverGroups.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -102,7 +102,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -160,7 +160,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -221,7 +221,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -268,7 +268,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -321,7 +321,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -375,7 +375,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json index 0d29164fd2f1..33d05daca8f3 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/firewallRules.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -94,7 +94,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -147,7 +147,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -186,7 +186,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -234,7 +234,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/managedInstances.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/managedInstances.json index c3f01de8cbe4..f73579be3d37 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/managedInstances.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/managedInstances.json @@ -31,7 +31,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -169,7 +169,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -219,7 +219,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -259,7 +259,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json index cc2b4ce532d1..f88d4ef6e03f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/operations.json @@ -25,7 +25,7 @@ "operationId": "Operations_List", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json index a592067cccbe..0b5fce2f1b7f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/serverKeys.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -83,7 +83,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -136,7 +136,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -190,7 +190,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json index 47a41db066f2..6b0a93e10d67 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/servers.json @@ -28,7 +28,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -67,7 +67,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -109,7 +109,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -155,7 +155,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -205,7 +205,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -255,7 +255,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json index 6784f6fe8bcd..c4b17aff90e0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncAgents.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -102,7 +102,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -163,7 +163,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -210,7 +210,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -263,7 +263,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -313,7 +313,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json index b36f0fe709c6..17c59eea5683 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncGroups.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -91,7 +91,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -145,7 +145,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -235,7 +235,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -291,7 +291,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -341,7 +341,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -391,7 +391,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -451,7 +451,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -515,7 +515,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -579,7 +579,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -629,7 +629,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json index c90326e4b6c8..0d1dc1e26313 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/syncMembers.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -122,7 +122,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -193,7 +193,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -264,7 +264,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -321,7 +321,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -384,7 +384,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -447,7 +447,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json index 9a22ab46e953..117d2fbb9cfe 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/usages.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -85,7 +85,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json index d36d3aaa908a..0636163c2904 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualNetworkRules.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -94,7 +94,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -148,7 +148,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -191,7 +191,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json index 6ff677853391..b7cdcc5dcc4d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/virtualclusters.json @@ -28,7 +28,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -67,7 +67,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -109,7 +109,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -146,7 +146,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -196,7 +196,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json index e4abda95dac5..2be97f2395f5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedBackupShortTermRetention.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json index 1847cd508d7e..a53d44f96e12 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedDatabaseSecurityAlertPolicies.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -189,7 +189,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json index 212ab91b4368..ff9e4d00883a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedRestorableDroppedDatabaseBackupShortTermRetenion.json @@ -54,7 +54,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -120,7 +120,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -190,7 +190,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -239,7 +239,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json index 2db0337e0d21..eb8c8e3bbef4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/ManagedServerSecurityAlertPolicy.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -154,7 +154,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/SensitivityLabels.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/SensitivityLabels.json index 8abcc382fd4b..bc0009ce5b97 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/SensitivityLabels.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/SensitivityLabels.json @@ -44,7 +44,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -110,7 +110,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -190,7 +190,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -263,7 +263,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -338,7 +338,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -422,7 +422,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -503,7 +503,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json index dbd6b4e09e5a..90430bf3fd96 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/blobAuditing.json @@ -40,7 +40,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -146,7 +146,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -191,7 +191,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -240,7 +240,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -286,7 +286,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -331,7 +331,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -380,7 +380,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -426,7 +426,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -474,7 +474,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -526,7 +526,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -580,7 +580,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json index 4ac3485cbe18..4f0e0b5b98de 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/cancelOperations.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -84,7 +84,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json index 50bd69484f6b..81fed9409b2c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/dataWarehouseUserActivities.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json index 868fbb10bc44..b4e0d88f6557 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessmentBaselines.json @@ -77,7 +77,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -166,7 +166,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -246,7 +246,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json index 225bb3f95a3c..f5a4fe2c1820 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databaseVulnerabilityAssessments.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -122,7 +122,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -192,7 +192,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -235,7 +235,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json index 47c7786a944b..738d9589c329 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/databases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -79,7 +79,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -128,7 +128,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -199,7 +199,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -252,7 +252,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -307,7 +307,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -357,7 +357,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -407,7 +407,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -456,7 +456,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json index b7507de7fc13..0b434c2886f1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/jobs.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -83,7 +83,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -136,7 +136,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -193,7 +193,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -250,7 +250,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -300,7 +300,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -356,7 +356,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -416,7 +416,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -473,7 +473,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -572,7 +572,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -639,7 +639,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -689,7 +689,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -799,7 +799,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -863,7 +863,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -922,7 +922,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -978,7 +978,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1034,7 +1034,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1094,7 +1094,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1154,7 +1154,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1268,7 +1268,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1339,7 +1339,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1400,7 +1400,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1471,7 +1471,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1524,7 +1524,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1587,7 +1587,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1654,7 +1654,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1721,7 +1721,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1835,7 +1835,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -1959,7 +1959,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -2038,7 +2038,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -2084,7 +2084,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -2140,7 +2140,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -2200,7 +2200,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -2260,7 +2260,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -2313,7 +2313,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -2377,7 +2377,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json index 65934d7c41e8..a46331e490ce 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/longTermRetention.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -121,7 +121,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -189,7 +189,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -245,7 +245,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -308,7 +308,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -372,7 +372,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -431,7 +431,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -496,7 +496,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -549,7 +549,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -609,7 +609,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -668,7 +668,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -731,7 +731,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -777,7 +777,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json index 12a3ccd43f53..05ace997f90e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedDatabases.json @@ -52,7 +52,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -137,7 +137,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -186,7 +186,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -251,7 +251,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -304,7 +304,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json index 97f1aa1b55f6..1aff37e22df7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/managedInstanceAdministrators.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -89,7 +89,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -148,7 +148,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -211,7 +211,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json index 588569cbab8d..3f0f2316b04a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/renameDatabase.json @@ -50,7 +50,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json index 391f8d40d306..062b1895f73c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorableDroppedManagedDatabases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -82,7 +82,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json index b0a32e32223f..f5fec05b43f5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/restorePoints.json @@ -37,7 +37,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -201,7 +201,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json index 7913498e57bb..ed682d346ad4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverAutomaticTuning.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -80,7 +80,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json index 84abb2934bef..7703e7d4c1fc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverDnsAliases.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -93,7 +93,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -198,7 +198,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -259,7 +259,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json index a5e94769d7a2..dc012c95b7bc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/serverSecurityAlertPolicies.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -154,7 +154,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json index eb94debdac1d..e8541adcaf4e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceEncryptionProtectors.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -88,7 +88,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -144,7 +144,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -204,7 +204,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json index a283c4ae7acf..18f1f9d2ef8b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -143,7 +143,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -197,7 +197,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json index e1babc6f106b..d98833d12763 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceTdeCertificates.json @@ -43,7 +43,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json index 97cfbf68cf89..885641b18425 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/TdeCertificates.json @@ -43,7 +43,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json index b286377e6e8c..4cdfe825fa3b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelOperations.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -84,7 +84,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json index dfe564e9a8ec..d8dc938b4595 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/cancelPoolOperations.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json index fab80dff71a7..02b98fc1f3c6 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/capabilities.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json index 7fd6e88589fe..3246423df7af 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databaseVulnerabilityAssessmentScans.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -117,7 +117,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -180,7 +180,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -248,7 +248,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json index 74eff47f6cd9..d93a3000d8e5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/databases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -79,7 +79,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -128,7 +128,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -214,7 +214,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -267,7 +267,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -317,7 +317,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -366,7 +366,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -416,7 +416,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -466,7 +466,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -522,7 +522,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json index c8861351cace..897ad7b2065e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/elasticPools.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -143,7 +143,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -200,7 +200,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -257,7 +257,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json index 630a39a6bab9..fcbb71db578a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/instanceFailoverGroups.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -102,7 +102,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -160,7 +160,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -207,7 +207,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -260,7 +260,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -314,7 +314,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json index 9f79246559ac..3ca948dad879 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssesmentRuleBaselines.json @@ -81,7 +81,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -174,7 +174,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -258,7 +258,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json index 6965a498a355..3ef467f1f28b 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessmentScans.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -125,7 +125,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -192,7 +192,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -264,7 +264,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json index 70157414d3e6..dbf738d1f909 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/managedDatabaseVulnerabilityAssessments.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -201,7 +201,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -248,7 +248,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json index 043dbf2a35b4..b9c84541ffe9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/recoverableManagedDatabases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -82,7 +82,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json index 939defee20c1..ee428b5c056f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/shortTermRetentionPolicies.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json index ecac5cf79029..7a9f86196fd9 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSchema.json @@ -58,7 +58,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -125,7 +125,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -174,7 +174,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -283,7 +283,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -343,7 +343,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSecurityAlertPolicies.json index 736e8917728f..cb585915d5ec 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/DatabaseSecurityAlertPolicies.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -189,7 +189,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverDatabases.json index 07e409d851fe..71283166e94d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverDatabases.json @@ -56,7 +56,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverElasticPools.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverElasticPools.json index e8e6c0be1256..b3c944b5b94e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverElasticPools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/FailoverElasticPools.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/LongTermRetentionManagedInstanceBackups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/LongTermRetentionManagedInstanceBackups.json index 38e844d08c06..dd93bd17879c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/LongTermRetentionManagedInstanceBackups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/LongTermRetentionManagedInstanceBackups.json @@ -56,7 +56,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -115,7 +115,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -193,7 +193,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -266,7 +266,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -332,7 +332,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -399,7 +399,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -461,7 +461,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -542,7 +542,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -618,7 +618,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -687,7 +687,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json index c6974583b1b5..75396a60e8a7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedDatabaseSchema.json @@ -58,7 +58,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -125,7 +125,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -174,7 +174,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -283,7 +283,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -343,7 +343,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceLongTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceLongTermRetentionPolicies.json index dea3f0300449..c76ba97a4139 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceLongTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceLongTermRetentionPolicies.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -160,7 +160,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json index f643145f5930..5908bfcb5c0f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ManagedInstanceVulnerabilityAssessments.json @@ -52,7 +52,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -116,7 +116,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -183,7 +183,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -223,7 +223,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateEndpointConnections.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateEndpointConnections.json index ba5cc577b0b9..e3144a2a0990 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateEndpointConnections.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateEndpointConnections.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -92,7 +92,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -139,7 +139,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -182,7 +182,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateLinkResources.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateLinkResources.json index a74a9cd9bc09..3f8be5fd41f1 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateLinkResources.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/PrivateLinkResources.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -83,7 +83,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json index b535dc0ebffd..1ae82eb08cce 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/ServerVulnerabilityAssessments.json @@ -52,7 +52,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -116,7 +116,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -183,7 +183,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -219,7 +219,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/capabilities.json index 55cf21aa56a9..b0b82c19ea38 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/capabilities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/capabilities.json @@ -53,7 +53,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json index f60b5008090c..84ccd6223fa4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/instancePools.json @@ -38,7 +38,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -88,7 +88,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -142,7 +142,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -196,7 +196,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -236,7 +236,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -272,7 +272,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json index 69e74ef2de67..22ddff4cc04e 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabaseSensitivityLabels.json @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -157,7 +157,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -238,7 +238,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -311,7 +311,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -384,7 +384,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -430,7 +430,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -496,7 +496,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabases.json index 006c27116668..a294dcb0128c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedDatabases.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -135,7 +135,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -184,7 +184,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -249,7 +249,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -302,7 +302,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -360,7 +360,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstanceOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstanceOperations.json index 6a82de3bdd85..fb5c48b9f9d7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstanceOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstanceOperations.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -83,7 +83,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstances.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstances.json index 5069b1b608a3..5006cad54c5f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstances.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/managedInstances.json @@ -38,7 +38,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -77,7 +77,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -165,7 +165,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -215,7 +215,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -265,7 +265,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -305,7 +305,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/usages.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/usages.json index 1ec51038739b..1488395612b2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/usages.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/usages.json @@ -45,7 +45,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/FailoverManagedInstance.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/FailoverManagedInstance.json index ce022a87954c..47b4874ad9c2 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/FailoverManagedInstance.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/FailoverManagedInstance.json @@ -49,7 +49,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" }, { "$ref": "#/parameters/ManagedInstanceNameParameter" diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadClassifiers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadClassifiers.json index b91b958b9bdc..8757f3504cb5 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadClassifiers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadClassifiers.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -234,7 +234,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadGroups.json index 4920775aa540..00c39d002440 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/WorkloadGroups.json @@ -44,7 +44,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -100,7 +100,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -160,7 +160,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -206,7 +206,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/databases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/databases.json index e8e8f12fa037..2e2db731b65d 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/databases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/databases.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -79,7 +79,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -128,7 +128,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -208,7 +208,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -261,7 +261,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -311,7 +311,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -360,7 +360,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -410,7 +410,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -460,7 +460,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -516,7 +516,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -552,7 +552,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -616,7 +616,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedDatabases.json index 1a10e3e0c3d3..37b1e4031a56 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedDatabases.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -90,7 +90,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -135,7 +135,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -184,7 +184,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -249,7 +249,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -302,7 +302,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -348,7 +348,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -402,7 +402,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedInstanceOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedInstanceOperations.json index 872070974d8d..e7d461236c33 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedInstanceOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/managedInstanceOperations.json @@ -41,7 +41,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -77,7 +77,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -126,7 +126,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/serverOperations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/serverOperations.json index 958fe31ae6d9..29f7b40503a7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/serverOperations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/serverOperations.json @@ -34,7 +34,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/servers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/servers.json index 547002f7b4ff..1eda90f1b705 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/servers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/servers.json @@ -31,7 +31,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -166,7 +166,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -216,7 +216,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -253,7 +253,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -298,7 +298,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncGroups.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncGroups.json index 9790973ccc02..ab80ff901950 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncGroups.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncGroups.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -91,7 +91,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -145,7 +145,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -235,7 +235,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -291,7 +291,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -341,7 +341,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -391,7 +391,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -451,7 +451,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -515,7 +515,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -579,7 +579,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -629,7 +629,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncMembers.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncMembers.json index 19e3117e4cca..ba60112d1b74 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncMembers.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2019-06-01-preview/syncMembers.json @@ -55,7 +55,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -122,7 +122,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -193,7 +193,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -264,7 +264,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -321,7 +321,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -384,7 +384,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -447,7 +447,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json index ec80326753d3..92c1c89ddeb4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/DatabaseSecurityAlertPolicies.json @@ -59,7 +59,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -130,7 +130,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -186,7 +186,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json index a9bb54a80dec..0742d7b8e48c 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ManagedServerSecurityAlertPolicies.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json index 7416f8ce6b64..b43ba41edaca 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/ServerSecurityAlertPolicies.json @@ -48,7 +48,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -151,7 +151,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json index 3b4a62ebf721..d1ce85ccd7f7 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedDatabases.json @@ -69,7 +69,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -108,7 +108,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -153,7 +153,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -202,7 +202,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -267,7 +267,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -320,7 +320,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -366,7 +366,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -420,7 +420,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json index 6e3b661b638f..2eb45c066050 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/managedInstances.json @@ -31,7 +31,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -73,7 +73,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -119,7 +119,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -169,7 +169,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -219,7 +219,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -269,7 +269,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -305,7 +305,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json index 60dbc20c3962..14c45bbfb444 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/operations.json @@ -25,7 +25,7 @@ "operationId": "Operations_List", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json index 187f7262b4ac..1acb5f22460f 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/shortTermRetentionPolicies.json @@ -51,7 +51,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -114,7 +114,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -181,7 +181,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -227,7 +227,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json index c1154f37c605..265f8a349f74 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/capabilities.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { diff --git a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json index dc69202468ee..03ce7493d5a4 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json +++ b/specification/sql/resource-manager/Microsoft.Sql/stable/2015-05-01/usages.json @@ -35,7 +35,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -85,7 +85,7 @@ "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { From 4e8c9bddb413423f4931811187c7ecf594484e16 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 22:22:49 -0700 Subject: [PATCH 40/43] Change types.json under sql common to be consistent with common-types types.json --- specification/sql/resource-manager/common/v1/types.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/sql/resource-manager/common/v1/types.json b/specification/sql/resource-manager/common/v1/types.json index e05c8e98a79e..c26aa222e2bd 100644 --- a/specification/sql/resource-manager/common/v1/types.json +++ b/specification/sql/resource-manager/common/v1/types.json @@ -139,10 +139,10 @@ "ApiVersionParameter": { "name": "api-version", "in": "query", - "description": "The API version to use for the request.", "required": true, "type": "string", - "x-ms-parameter-location": "client" + "description": "The API version to use for this operation.", + "minLength": 1 }, "ResourceGroupParameter": { "name": "resourceGroupName", From 0801df04c21563f0b1a4849c108a0d137d5adf8f Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Wed, 19 Aug 2020 22:34:47 -0700 Subject: [PATCH 41/43] Undo change to types.json --- specification/sql/resource-manager/common/v1/types.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/sql/resource-manager/common/v1/types.json b/specification/sql/resource-manager/common/v1/types.json index c26aa222e2bd..e05c8e98a79e 100644 --- a/specification/sql/resource-manager/common/v1/types.json +++ b/specification/sql/resource-manager/common/v1/types.json @@ -139,10 +139,10 @@ "ApiVersionParameter": { "name": "api-version", "in": "query", + "description": "The API version to use for the request.", "required": true, "type": "string", - "description": "The API version to use for this operation.", - "minLength": 1 + "x-ms-parameter-location": "client" }, "ResourceGroupParameter": { "name": "resourceGroupName", From 8e51be55fd773f6671e123caf761ed57c99623a7 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Thu, 20 Aug 2020 14:42:32 -0700 Subject: [PATCH 42/43] Update with changes to DS_Main_Dev --- .../2020-02-02-preview/importexport.json | 76 +++++++++++++++---- 1 file changed, 62 insertions(+), 14 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index a57f598679b2..20cc229acfae 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -25,7 +25,7 @@ "operationId": "ImportExport_Import", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -43,10 +43,10 @@ } }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -80,10 +80,10 @@ "ImportExport" ], "description": "Imports a bacpac into a new database.", - "operationId": "Databases_Import", + "operationId": "Servers_ImportDatabase", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -98,10 +98,10 @@ } }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -138,7 +138,7 @@ "operationId": "Databases_Export", "parameters": [ { - "$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter" + "$ref": "#/parameters/ResourceGroupParameter" }, { "$ref": "#/parameters/ServerNameParameter" @@ -156,10 +156,10 @@ } }, { - "$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter" + "$ref": "#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter" + "$ref": "#/parameters/ApiVersionParameter" } ], "responses": { @@ -202,7 +202,15 @@ "properties": { "storageKeyType": { "description": "Storage key type.", - "type": "string", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, "x-ms-mutability": [ "create" ] @@ -441,7 +449,15 @@ }, "storageKeyType": { "description": "Storage key type.", - "type": "string", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, "x-ms-mutability": [ "create" ] @@ -503,7 +519,15 @@ "properties": { "storageKeyType": { "description": "Storage key type.", - "type": "string", + "enum": [ + "SharedAccessKey", + "StorageAccessKey" + ], + "type": "string", + "x-ms-enum": { + "name": "StorageKeyType", + "modelAsString": true + }, "x-ms-mutability": [ "create" ] @@ -554,6 +578,30 @@ } }, "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", @@ -649,4 +697,4 @@ } } } -} +} \ No newline at end of file From d49fb868822370daae469e6b2ede1480c167d459 Mon Sep 17 00:00:00 2001 From: Brandon Greenwood Date: Fri, 21 Aug 2020 13:22:18 -0700 Subject: [PATCH 43/43] Run prettier, update examples with x'd out access key parameter --- .../preview/2020-02-02-preview/examples/ExportDatabase.json | 2 +- .../examples/ExportDatabaseWithNetworkIsolation.json | 2 +- .../preview/2020-02-02-preview/examples/ImportDatabase.json | 2 +- .../examples/ImportDatabaseWithNetworkIsolation.json | 2 +- .../preview/2020-02-02-preview/examples/ImportNewDatabase.json | 2 +- .../examples/ImportNewDatabaseWithNetworkIsolation.json | 2 +- .../Microsoft.Sql/preview/2020-02-02-preview/importexport.json | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json index 377a8b0ac4d9..37ed67c3a8cc 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabase.json @@ -7,7 +7,7 @@ "api-version": "2020-02-02-preview", "parameters": { "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx==", "storageUri": "https://test.blob.core.windows.net/test.bacpac", "administratorLogin": "login", "administratorLoginPassword": "password", diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json index 2b56f88379be..31d6f89f1a8a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ExportDatabaseWithNetworkIsolation.json @@ -7,7 +7,7 @@ "api-version": "2020-02-02-preview", "parameters": { "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx==", "storageUri": "https://test.blob.core.windows.net/test.bacpac", "administratorLogin": "login", "administratorLoginPassword": "password", diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json index ec495eaa61ac..fc10c0c5db2a 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabase.json @@ -7,7 +7,7 @@ "api-version": "2020-02-02-preview", "parameters": { "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx==", "storageUri": "https://test.blob.core.windows.net/test.bacpac", "administratorLogin": "login", "administratorLoginPassword": "password", diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json index b331cd042619..0878179632da 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportDatabaseWithNetworkIsolation.json @@ -7,7 +7,7 @@ "api-version": "2020-02-02-preview", "parameters": { "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx==", "storageUri": "https://test.blob.core.windows.net/test.bacpac", "administratorLogin": "login", "administratorLoginPassword": "password", diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json index bb6868a9f93c..3dda74ba10de 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabase.json @@ -7,7 +7,7 @@ "parameters": { "databaseName": "testdb", "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx==", "storageUri": "https://test.blob.core.windows.net/test.bacpac", "administratorLogin": "login", "administratorLoginPassword": "password", diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json index 44a0afdb60eb..224913c359b0 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/examples/ImportNewDatabaseWithNetworkIsolation.json @@ -7,7 +7,7 @@ "parameters": { "databaseName": "testdb", "storageKeyType": "StorageAccessKey", - "storageKey": "+Ce9Tn6QktcX1kFGHUg5sdh54654678bpsE3OM95q5sdfsdfsdyIUu7sdYtR456hgcsRSbFBoH64qB7MA==", + "storageKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx==", "storageUri": "https://test.blob.core.windows.net/test.bacpac", "administratorLogin": "login", "administratorLoginPassword": "password", diff --git a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json index 20cc229acfae..ed2aedc3a803 100644 --- a/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json +++ b/specification/sql/resource-manager/Microsoft.Sql/preview/2020-02-02-preview/importexport.json @@ -697,4 +697,4 @@ } } } -} \ No newline at end of file +}