Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/network/resource-manager/Microsoft.Network/stable/2024-10-01/applicationGateway.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Brownfield services will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"title": "NetworkManagementClient",
Expand Down Expand Up @@ -1879,6 +1879,24 @@
"type": "string",
"description": "Path which should be used as a prefix for all HTTP requests. Null means no path will be prefixed. Default value is null."
},
"dedicatedBackendConnection": {
"type": "boolean",
"description": "Enable or disable dedicated connection per backend server. Default is set to false."
},
"validateCertChainAndExpiry": {
"type": "boolean",
"default": true,
"description": "Verify or skip both chain and expiry validations of the certificate on the backend server. Default is set to true."
},
"validateSNI": {
"type": "boolean",
"default": true,
"description": "When enabled, verifies if the Common Name of the certificate provided by the backend server matches the Server Name Indication (SNI) value. Default value is true."
},
"sniName": {
"type": "string",
"description": "Specify an SNI value to match the common name of the certificate on the backend. By default, the application gateway uses the incoming request’s host header as the SNI. Default value is null."
},
"provisioningState": {
"readOnly": true,
"$ref": "./network.json#/definitions/ProvisioningState",
Expand Down
Loading