You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[App Service] Update swagger spec for ANT80 (#5111)
* Update swagger spec for ANT80
* Fix some spelling errors that were reverted by previous commit
* Move certificate examples to new API version folder
* Add the 2018-02-01 certificates files back
"description": "Specification for the App Service Environment to use for the App Service plan.",
@@ -991,6 +987,21 @@
991
987
}
992
988
}
993
989
},
990
+
"GeoDistribution": {
991
+
"description": "A global distribution definition.",
992
+
"type": "object",
993
+
"properties": {
994
+
"location": {
995
+
"description": "Location.",
996
+
"type": "string"
997
+
},
998
+
"numberOfWorkers": {
999
+
"format": "int32",
1000
+
"description": "NumberOfWorkers.",
1001
+
"type": "integer"
1002
+
}
1003
+
}
1004
+
},
994
1005
"HandlerMapping": {
995
1006
"description": "The IIS handler mappings used to define which handler processes HTTP requests with certain extension. \nFor example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.",
996
1007
"type": "object",
@@ -1205,9 +1216,6 @@
1205
1216
},
1206
1217
"IpSecurityRestriction": {
1207
1218
"description": "IP security restriction on an app.",
1208
-
"required": [
1209
-
"ipAddress"
1210
-
],
1211
1219
"type": "object",
1212
1220
"properties": {
1213
1221
"ipAddress": {
@@ -1218,6 +1226,20 @@
1218
1226
"description": "Subnet mask for the range of IP addresses the restriction is valid for.",
1219
1227
"type": "string"
1220
1228
},
1229
+
"vnetSubnetResourceId": {
1230
+
"description": "Virtual network resource id",
1231
+
"type": "string"
1232
+
},
1233
+
"vnetTrafficTag": {
1234
+
"format": "int32",
1235
+
"description": "(internal) Vnet traffic tag",
1236
+
"type": "integer"
1237
+
},
1238
+
"subnetTrafficTag": {
1239
+
"format": "int32",
1240
+
"description": "(internal) Subnet traffic tag",
1241
+
"type": "integer"
1242
+
},
1221
1243
"action": {
1222
1244
"description": "Allow or Deny access for this IP range.",
1223
1245
"type": "string"
@@ -2066,6 +2088,10 @@
2066
2088
"description": "<code>true</code> to enable client certificate authentication (TLS mutual authentication); otherwise, <code>false</code>. Default is <code>false</code>.",
"description": "<code>true</code> to disable the public hostnames of the app; otherwise, <code>false</code>.\n If <code>true</code>, the app is only accessible via API management process.",
2071
2097
"type": "boolean"
@@ -2132,6 +2158,35 @@
2132
2158
"httpsOnly": {
2133
2159
"description": "HttpsOnly: configures a web site to accept only https requests. Issues redirect for\nhttp requests",
2134
2160
"type": "boolean"
2161
+
},
2162
+
"redundancyMode": {
2163
+
"description": "Site redundancy mode",
2164
+
"enum": [
2165
+
"None",
2166
+
"Manual",
2167
+
"Failover",
2168
+
"ActiveActive",
2169
+
"GeoRedundant"
2170
+
],
2171
+
"type": "string",
2172
+
"x-ms-enum": {
2173
+
"name": "RedundancyMode",
2174
+
"modelAsString": false
2175
+
}
2176
+
},
2177
+
"inProgressOperationId": {
2178
+
"format": "uuid",
2179
+
"description": "Specifies an operation id if this site has a pending operation.",
0 commit comments