From e23a73bdd15ce93ac3dce64af8dc94d6ddd43d84 Mon Sep 17 00:00:00 2001 From: Aleksandar Boljanac Date: Mon, 12 Oct 2020 14:12:45 -0700 Subject: [PATCH 1/6] Update app common definitions --- .../stable/2020-06-01/CommonDefinitions.json | 424 +++++++++++++++++- 1 file changed, 420 insertions(+), 4 deletions(-) diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json index c8188882a811..09d62aa93ea5 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json @@ -41,8 +41,7 @@ "required": [ "name", "location", - "virtualNetwork", - "workerPools" + "virtualNetwork" ], "type": "object", "properties": { @@ -107,7 +106,7 @@ "None", "Web", "Publishing", - "Web,Publishing" + "Web, Publishing" ], "type": "string", "x-ms-enum": { @@ -447,6 +446,16 @@ } } }, + "ArmIdWrapper": { + "description": "A wrapper for an ARM resource id", + "type": "object", + "properties": { + "id": { + "type": "string", + "readOnly": true + } + } + }, "AutoHealActions": { "description": "Actions which to take by the auto-heal module when a rule is triggered.", "type": "object", @@ -528,6 +537,54 @@ } } }, + "AzureStorageInfoValue": { + "description": "Azure Files or Blob Storage access information value for dictionary storage.", + "type": "object", + "properties": { + "type": { + "description": "Type of storage.", + "enum": [ + "AzureFiles", + "AzureBlob" + ], + "type": "string", + "x-ms-enum": { + "name": "AzureStorageType", + "modelAsString": false + } + }, + "accountName": { + "description": "Name of the storage account.", + "type": "string" + }, + "shareName": { + "description": "Name of the file share (container name, for Blob storage).", + "type": "string" + }, + "accessKey": { + "description": "Access key for the storage account.", + "type": "string" + }, + "mountPath": { + "description": "Path to mount the storage within the site's runtime environment.", + "type": "string" + }, + "state": { + "description": "State of the storage account.", + "enum": [ + "Ok", + "InvalidCredentials", + "InvalidShare" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "AzureStorageState", + "modelAsString": false + } + } + } + }, "Capability": { "description": "Describes the capabilities/features allowed for a specific SKU.", "type": "object", @@ -772,6 +829,51 @@ } } }, + "DataTableResponseColumn": { + "description": "Column definition", + "type": "object", + "properties": { + "columnName": { + "description": "Name of the column", + "type": "string" + }, + "dataType": { + "description": "Data type which looks like 'String' or 'Int32'.", + "type": "string" + }, + "columnType": { + "description": "Column Type", + "type": "string" + } + } + }, + "DataTableResponseObject": { + "description": "Data Table which defines columns and raw row values", + "type": "object", + "properties": { + "tableName": { + "description": "Name of the table", + "type": "string" + }, + "columns": { + "description": "List of columns with data types", + "type": "array", + "items": { + "$ref": "#/definitions/DataTableResponseColumn" + } + }, + "rows": { + "description": "Raw row values", + "type": "array", + "items": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, "DefaultErrorResponse": { "description": "App Service error response.", "type": "object", @@ -887,6 +989,95 @@ } } }, + "DetectorInfo": { + "description": "Definition of Detector", + "type": "object", + "properties": { + "description": { + "description": "Short description of the detector and its purpose", + "type": "string", + "readOnly": true + }, + "category": { + "description": "Support Category", + "type": "string", + "readOnly": true + }, + "subCategory": { + "description": "Support Sub Category", + "type": "string", + "readOnly": true + }, + "supportTopicId": { + "description": "Support Topic Id", + "type": "string", + "readOnly": true + } + } + }, + "DetectorResponse": { + "description": "Class representing Response from Detector", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ], + "properties": { + "properties": { + "description": "DetectorResponse resource specific properties", + "properties": { + "metadata": { + "$ref": "#/definitions/DetectorInfo", + "description": "metadata for the detector" + }, + "dataset": { + "description": "Data Set", + "type": "array", + "items": { + "$ref": "#/definitions/DiagnosticData" + } + } + }, + "x-ms-client-flatten": true + } + } + }, + "DetectorResponseCollection": { + "description": "Collection of detector responses", + "required": [ + "value" + ], + "type": "object", + "properties": { + "value": { + "description": "Collection of resources.", + "type": "array", + "items": { + "$ref": "#/definitions/DetectorResponse" + } + }, + "nextLink": { + "description": "Link to next page of resources.", + "type": "string", + "readOnly": true + } + } + }, + "DiagnosticData": { + "description": "Set of data with rendering instructions", + "type": "object", + "properties": { + "table": { + "$ref": "#/definitions/DataTableResponseObject", + "description": "Data in table form" + }, + "renderingProperties": { + "$ref": "#/definitions/Rendering", + "description": "Properties that describe how the table should be rendered" + } + } + }, "Dimension": { "description": "Dimension of a resource metric. For e.g. instance specific HTTP requests for a web app, \nwhere instance name is dimension of the metric HTTP request", "type": "object", @@ -1482,6 +1673,133 @@ } } }, + "PrivateEndpointConnectionResource": { + "description": "Private Endpoint Connection ARM resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ], + "properties": { + "properties": { + "$ref": "#/definitions/RemotePrivateEndpointConnection", + "description": "Core resource properties", + "x-ms-client-flatten": true + } + } + }, + "PrivateLinkConnectionApprovalRequest": { + "description": "A request to approve or reject a private endpoint connection", + "type": "object", + "properties": { + "privateLinkServiceConnectionState": { + "$ref": "#/definitions/PrivateLinkConnectionState" + } + } + }, + "PrivateLinkConnectionApprovalRequestResource": { + "description": "Private Endpoint Connection Approval ARM resource.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ], + "properties": { + "properties": { + "$ref": "#/definitions/PrivateLinkConnectionApprovalRequest", + "description": "Core resource properties", + "x-ms-client-flatten": true + } + } + }, + "PrivateLinkConnectionState": { + "description": "The state of a private link connection", + "type": "object", + "properties": { + "status": { + "description": "Status of a private link connection", + "type": "string" + }, + "description": { + "description": "Description of a private link connection", + "type": "string" + }, + "actionsRequired": { + "description": "ActionsRequired for a private link connection", + "type": "string" + } + } + }, + "PrivateLinkResource": { + "description": "A private link resource", + "required": [ + "id", + "name", + "type", + "properties" + ], + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "description": "Name of a private link resource", + "type": "string" + }, + "type": { + "type": "string" + }, + "properties": { + "$ref": "#/definitions/PrivateLinkResourceProperties", + "description": "Properties of a private link resource" + } + } + }, + "PrivateLinkResourceProperties": { + "description": "Properties of a private link resource", + "type": "object", + "properties": { + "groupId": { + "description": "GroupId of a private link resource", + "type": "string", + "readOnly": true + }, + "requiredMembers": { + "description": "RequiredMembers of a private link resource", + "type": "array", + "items": { + "type": "string" + }, + "readOnly": true + }, + "requiredZoneNames": { + "description": "RequiredZoneNames of a private link resource", + "type": "array", + "items": { + "type": "string" + }, + "readOnly": true + } + } + }, + "PrivateLinkResourcesWrapper": { + "description": "Wrapper for a collection of private link resources", + "required": [ + "value" + ], + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/PrivateLinkResource" + } + } + } + }, "ProxyOnlyResource": { "description": "Azure proxy only resource. This resource is not tracked by Azure Resource Manager.", "properties": { @@ -1586,6 +1904,58 @@ } } }, + "RemotePrivateEndpointConnection": { + "description": "A remote private endpoint connection", + "type": "object", + "properties": { + "provisioningState": { + "type": "string", + "readOnly": true + }, + "privateEndpoint": { + "$ref": "#/definitions/ArmIdWrapper", + "description": "PrivateEndpoint of a remote private endpoint connection" + }, + "privateLinkServiceConnectionState": { + "$ref": "#/definitions/PrivateLinkConnectionState" + }, + "ipAddresses": { + "description": "Private IPAddresses mapped to the remote private endpoint", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "Rendering": { + "description": "Instructions for rendering the data", + "type": "object", + "properties": { + "type": { + "description": "Rendering Type", + "enum": [ + "NoGraph", + "Table", + "TimeSeries", + "TimeSeriesPerInstance" + ], + "type": "string", + "x-ms-enum": { + "name": "RenderingType", + "modelAsString": false + } + }, + "title": { + "description": "Title of data", + "type": "string" + }, + "description": { + "description": "Description of the data that will help it be interpreted", + "type": "string" + } + } + }, "RequestsBasedTrigger": { "description": "Trigger based on total requests.", "type": "object", @@ -2012,6 +2382,13 @@ "$ref": "#/definitions/NameValuePair" } }, + "azureStorageAccounts": { + "description": "AzureStorageAccounts.", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/AzureStorageInfoValue" + } + }, "connectionStrings": { "description": "Connection strings.", "type": "array", @@ -2149,6 +2526,15 @@ "read" ] }, + "vnetRouteAllEnabled": { + "description": "Virtual Network Route All enabled. This causes all traffic to have Virtual Network NSGs and UDRs applied.", + "type": "boolean" + }, + "vnetPrivatePortsCount": { + "format": "int32", + "description": "The number of private ports assigned to this app. These will be assigned dynamically on runtime.", + "type": "integer" + }, "cors": { "$ref": "#/definitions/CorsSettings", "description": "Cross-Origin Resource Sharing (CORS) settings." @@ -2253,9 +2639,30 @@ "minimum": 0, "type": "integer" }, + "functionAppScaleLimit": { + "format": "int32", + "description": "Maximum number of workers that a site can scale out to.\nThis setting only applies to the Consumption and Elastic Premium Plans", + "minimum": 0, + "type": "integer" + }, "healthCheckPath": { "description": "Health check path", "type": "string" + }, + "functionsRuntimeScaleMonitoringEnabled": { + "description": "Gets or sets a value indicating whether functions runtime scale monitoring is enabled. When enabled,\nthe ScaleController will not monitor event sources directly, but will instead call to the\nruntime to get scale status.", + "type": "boolean" + }, + "websiteTimeZone": { + "description": "Sets the time zone a site uses for generating timestamps. Compatible with Linux and Windows App Service. Setting the WEBSITE_TIME_ZONE app setting takes precedence over this config. For Linux, expects tz database values https://www.iana.org/time-zones (for a quick reference see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For Windows, expects one of the time zones listed under HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones", + "type": "string" + }, + "minimumElasticInstanceCount": { + "format": "int32", + "description": "Number of minimum instance count for a site\nThis setting only applies to the Elastic Plans", + "maximum": 20, + "minimum": 0, + "type": "integer" } } }, @@ -2316,6 +2723,11 @@ "description": "Maximum number of workers for this App Service plan SKU.", "type": "integer" }, + "elasticMaximum": { + "format": "int32", + "description": "Maximum number of Elastic workers for this App Service plan SKU.", + "type": "integer" + }, "default": { "format": "int32", "description": "Default number of workers for this App Service plan SKU.", @@ -2479,7 +2891,11 @@ "D1", "D2", "D3", + "SmallV3", + "MediumV3", + "LargeV3", "NestedSmall", + "NestedSmallLinux", "Default" ], "type": "string", @@ -2900,4 +3316,4 @@ ] } ] -} +} \ No newline at end of file From ce4112c5e19d66ccca5ac1898d12904b8c447758 Mon Sep 17 00:00:00 2001 From: Aleksandar Boljanac Date: Mon, 12 Oct 2020 14:20:49 -0700 Subject: [PATCH 2/6] Add just my changes --- .../stable/2020-06-01/CommonDefinitions.json | 415 +----------------- 1 file changed, 4 insertions(+), 411 deletions(-) diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json index 09d62aa93ea5..586f75cd45d4 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json @@ -41,7 +41,8 @@ "required": [ "name", "location", - "virtualNetwork" + "virtualNetwork", + "workerPools" ], "type": "object", "properties": { @@ -106,7 +107,7 @@ "None", "Web", "Publishing", - "Web, Publishing" + "Web,Publishing" ], "type": "string", "x-ms-enum": { @@ -446,16 +447,6 @@ } } }, - "ArmIdWrapper": { - "description": "A wrapper for an ARM resource id", - "type": "object", - "properties": { - "id": { - "type": "string", - "readOnly": true - } - } - }, "AutoHealActions": { "description": "Actions which to take by the auto-heal module when a rule is triggered.", "type": "object", @@ -537,54 +528,6 @@ } } }, - "AzureStorageInfoValue": { - "description": "Azure Files or Blob Storage access information value for dictionary storage.", - "type": "object", - "properties": { - "type": { - "description": "Type of storage.", - "enum": [ - "AzureFiles", - "AzureBlob" - ], - "type": "string", - "x-ms-enum": { - "name": "AzureStorageType", - "modelAsString": false - } - }, - "accountName": { - "description": "Name of the storage account.", - "type": "string" - }, - "shareName": { - "description": "Name of the file share (container name, for Blob storage).", - "type": "string" - }, - "accessKey": { - "description": "Access key for the storage account.", - "type": "string" - }, - "mountPath": { - "description": "Path to mount the storage within the site's runtime environment.", - "type": "string" - }, - "state": { - "description": "State of the storage account.", - "enum": [ - "Ok", - "InvalidCredentials", - "InvalidShare" - ], - "type": "string", - "readOnly": true, - "x-ms-enum": { - "name": "AzureStorageState", - "modelAsString": false - } - } - } - }, "Capability": { "description": "Describes the capabilities/features allowed for a specific SKU.", "type": "object", @@ -829,51 +772,6 @@ } } }, - "DataTableResponseColumn": { - "description": "Column definition", - "type": "object", - "properties": { - "columnName": { - "description": "Name of the column", - "type": "string" - }, - "dataType": { - "description": "Data type which looks like 'String' or 'Int32'.", - "type": "string" - }, - "columnType": { - "description": "Column Type", - "type": "string" - } - } - }, - "DataTableResponseObject": { - "description": "Data Table which defines columns and raw row values", - "type": "object", - "properties": { - "tableName": { - "description": "Name of the table", - "type": "string" - }, - "columns": { - "description": "List of columns with data types", - "type": "array", - "items": { - "$ref": "#/definitions/DataTableResponseColumn" - } - }, - "rows": { - "description": "Raw row values", - "type": "array", - "items": { - "type": "array", - "items": { - "type": "string" - } - } - } - } - }, "DefaultErrorResponse": { "description": "App Service error response.", "type": "object", @@ -989,95 +887,6 @@ } } }, - "DetectorInfo": { - "description": "Definition of Detector", - "type": "object", - "properties": { - "description": { - "description": "Short description of the detector and its purpose", - "type": "string", - "readOnly": true - }, - "category": { - "description": "Support Category", - "type": "string", - "readOnly": true - }, - "subCategory": { - "description": "Support Sub Category", - "type": "string", - "readOnly": true - }, - "supportTopicId": { - "description": "Support Topic Id", - "type": "string", - "readOnly": true - } - } - }, - "DetectorResponse": { - "description": "Class representing Response from Detector", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "description": "DetectorResponse resource specific properties", - "properties": { - "metadata": { - "$ref": "#/definitions/DetectorInfo", - "description": "metadata for the detector" - }, - "dataset": { - "description": "Data Set", - "type": "array", - "items": { - "$ref": "#/definitions/DiagnosticData" - } - } - }, - "x-ms-client-flatten": true - } - } - }, - "DetectorResponseCollection": { - "description": "Collection of detector responses", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "description": "Collection of resources.", - "type": "array", - "items": { - "$ref": "#/definitions/DetectorResponse" - } - }, - "nextLink": { - "description": "Link to next page of resources.", - "type": "string", - "readOnly": true - } - } - }, - "DiagnosticData": { - "description": "Set of data with rendering instructions", - "type": "object", - "properties": { - "table": { - "$ref": "#/definitions/DataTableResponseObject", - "description": "Data in table form" - }, - "renderingProperties": { - "$ref": "#/definitions/Rendering", - "description": "Properties that describe how the table should be rendered" - } - } - }, "Dimension": { "description": "Dimension of a resource metric. For e.g. instance specific HTTP requests for a web app, \nwhere instance name is dimension of the metric HTTP request", "type": "object", @@ -1673,133 +1482,6 @@ } } }, - "PrivateEndpointConnectionResource": { - "description": "Private Endpoint Connection ARM resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "$ref": "#/definitions/RemotePrivateEndpointConnection", - "description": "Core resource properties", - "x-ms-client-flatten": true - } - } - }, - "PrivateLinkConnectionApprovalRequest": { - "description": "A request to approve or reject a private endpoint connection", - "type": "object", - "properties": { - "privateLinkServiceConnectionState": { - "$ref": "#/definitions/PrivateLinkConnectionState" - } - } - }, - "PrivateLinkConnectionApprovalRequestResource": { - "description": "Private Endpoint Connection Approval ARM resource.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ProxyOnlyResource" - } - ], - "properties": { - "properties": { - "$ref": "#/definitions/PrivateLinkConnectionApprovalRequest", - "description": "Core resource properties", - "x-ms-client-flatten": true - } - } - }, - "PrivateLinkConnectionState": { - "description": "The state of a private link connection", - "type": "object", - "properties": { - "status": { - "description": "Status of a private link connection", - "type": "string" - }, - "description": { - "description": "Description of a private link connection", - "type": "string" - }, - "actionsRequired": { - "description": "ActionsRequired for a private link connection", - "type": "string" - } - } - }, - "PrivateLinkResource": { - "description": "A private link resource", - "required": [ - "id", - "name", - "type", - "properties" - ], - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "name": { - "description": "Name of a private link resource", - "type": "string" - }, - "type": { - "type": "string" - }, - "properties": { - "$ref": "#/definitions/PrivateLinkResourceProperties", - "description": "Properties of a private link resource" - } - } - }, - "PrivateLinkResourceProperties": { - "description": "Properties of a private link resource", - "type": "object", - "properties": { - "groupId": { - "description": "GroupId of a private link resource", - "type": "string", - "readOnly": true - }, - "requiredMembers": { - "description": "RequiredMembers of a private link resource", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - }, - "requiredZoneNames": { - "description": "RequiredZoneNames of a private link resource", - "type": "array", - "items": { - "type": "string" - }, - "readOnly": true - } - } - }, - "PrivateLinkResourcesWrapper": { - "description": "Wrapper for a collection of private link resources", - "required": [ - "value" - ], - "type": "object", - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/PrivateLinkResource" - } - } - } - }, "ProxyOnlyResource": { "description": "Azure proxy only resource. This resource is not tracked by Azure Resource Manager.", "properties": { @@ -1904,58 +1586,6 @@ } } }, - "RemotePrivateEndpointConnection": { - "description": "A remote private endpoint connection", - "type": "object", - "properties": { - "provisioningState": { - "type": "string", - "readOnly": true - }, - "privateEndpoint": { - "$ref": "#/definitions/ArmIdWrapper", - "description": "PrivateEndpoint of a remote private endpoint connection" - }, - "privateLinkServiceConnectionState": { - "$ref": "#/definitions/PrivateLinkConnectionState" - }, - "ipAddresses": { - "description": "Private IPAddresses mapped to the remote private endpoint", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "Rendering": { - "description": "Instructions for rendering the data", - "type": "object", - "properties": { - "type": { - "description": "Rendering Type", - "enum": [ - "NoGraph", - "Table", - "TimeSeries", - "TimeSeriesPerInstance" - ], - "type": "string", - "x-ms-enum": { - "name": "RenderingType", - "modelAsString": false - } - }, - "title": { - "description": "Title of data", - "type": "string" - }, - "description": { - "description": "Description of the data that will help it be interpreted", - "type": "string" - } - } - }, "RequestsBasedTrigger": { "description": "Trigger based on total requests.", "type": "object", @@ -2382,13 +2012,6 @@ "$ref": "#/definitions/NameValuePair" } }, - "azureStorageAccounts": { - "description": "AzureStorageAccounts.", - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/AzureStorageInfoValue" - } - }, "connectionStrings": { "description": "Connection strings.", "type": "array", @@ -2526,7 +2149,7 @@ "read" ] }, - "vnetRouteAllEnabled": { + "vnetRouteAllEnabled": { "description": "Virtual Network Route All enabled. This causes all traffic to have Virtual Network NSGs and UDRs applied.", "type": "boolean" }, @@ -2639,30 +2262,9 @@ "minimum": 0, "type": "integer" }, - "functionAppScaleLimit": { - "format": "int32", - "description": "Maximum number of workers that a site can scale out to.\nThis setting only applies to the Consumption and Elastic Premium Plans", - "minimum": 0, - "type": "integer" - }, "healthCheckPath": { "description": "Health check path", "type": "string" - }, - "functionsRuntimeScaleMonitoringEnabled": { - "description": "Gets or sets a value indicating whether functions runtime scale monitoring is enabled. When enabled,\nthe ScaleController will not monitor event sources directly, but will instead call to the\nruntime to get scale status.", - "type": "boolean" - }, - "websiteTimeZone": { - "description": "Sets the time zone a site uses for generating timestamps. Compatible with Linux and Windows App Service. Setting the WEBSITE_TIME_ZONE app setting takes precedence over this config. For Linux, expects tz database values https://www.iana.org/time-zones (for a quick reference see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For Windows, expects one of the time zones listed under HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones", - "type": "string" - }, - "minimumElasticInstanceCount": { - "format": "int32", - "description": "Number of minimum instance count for a site\nThis setting only applies to the Elastic Plans", - "maximum": 20, - "minimum": 0, - "type": "integer" } } }, @@ -2723,11 +2325,6 @@ "description": "Maximum number of workers for this App Service plan SKU.", "type": "integer" }, - "elasticMaximum": { - "format": "int32", - "description": "Maximum number of Elastic workers for this App Service plan SKU.", - "type": "integer" - }, "default": { "format": "int32", "description": "Default number of workers for this App Service plan SKU.", @@ -2891,11 +2488,7 @@ "D1", "D2", "D3", - "SmallV3", - "MediumV3", - "LargeV3", "NestedSmall", - "NestedSmallLinux", "Default" ], "type": "string", From cad493b7332465dadebfd5e12acd90caa1923fa8 Mon Sep 17 00:00:00 2001 From: Aleksandar Boljanac Date: Mon, 12 Oct 2020 14:23:53 -0700 Subject: [PATCH 3/6] empty newline at end of file --- .../Microsoft.Web/stable/2020-06-01/CommonDefinitions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json index 586f75cd45d4..d979838e7fa2 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json @@ -2909,4 +2909,4 @@ ] } ] -} \ No newline at end of file +} From bdbbf16ece1869050c65fba14fc7d04498d7ab1f Mon Sep 17 00:00:00 2001 From: Aleksandar Boljanac Date: Mon, 12 Oct 2020 14:24:52 -0700 Subject: [PATCH 4/6] Tabs --- .../Microsoft.Web/stable/2020-06-01/CommonDefinitions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json index d979838e7fa2..389b12f817a1 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json @@ -2149,7 +2149,7 @@ "read" ] }, - "vnetRouteAllEnabled": { + "vnetRouteAllEnabled": { "description": "Virtual Network Route All enabled. This causes all traffic to have Virtual Network NSGs and UDRs applied.", "type": "boolean" }, From 27548e80351604b1b12bc5cbf7c1349e6fca3f51 Mon Sep 17 00:00:00 2001 From: Aleksandar Boljanac Date: Thu, 15 Oct 2020 12:46:40 -0700 Subject: [PATCH 5/6] Fix spellcheck --- .../Microsoft.Web/stable/2020-06-01/CommonDefinitions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json index 389b12f817a1..7d00542c3479 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json @@ -2150,7 +2150,7 @@ ] }, "vnetRouteAllEnabled": { - "description": "Virtual Network Route All enabled. This causes all traffic to have Virtual Network NSGs and UDRs applied.", + "description": "Virtual Network Route All enabled. This causes all outbound traffic to have Virtual Network Security Groups and User Defined Routes to be applied.", "type": "boolean" }, "vnetPrivatePortsCount": { From 4ff5ceb8b78ebbfdace07cbe4fe9cdc9ac941142 Mon Sep 17 00:00:00 2001 From: Aleksandar Boljanac Date: Thu, 15 Oct 2020 12:48:07 -0700 Subject: [PATCH 6/6] Grammar --- .../Microsoft.Web/stable/2020-06-01/CommonDefinitions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json index 7d00542c3479..948428d153c3 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2020-06-01/CommonDefinitions.json @@ -2150,7 +2150,7 @@ ] }, "vnetRouteAllEnabled": { - "description": "Virtual Network Route All enabled. This causes all outbound traffic to have Virtual Network Security Groups and User Defined Routes to be applied.", + "description": "Virtual Network Route All enabled. This causes all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied.", "type": "boolean" }, "vnetPrivatePortsCount": {