Skip to content

Commit

Permalink
+gatewayhostnameconfiguration protocol changes
Browse files Browse the repository at this point in the history
  • Loading branch information
maksimkim committed Jul 29, 2020
1 parent 3ef51e7 commit c38ba8e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5540,6 +5540,18 @@
"negotiateClientCertificate": {
"type": "boolean",
"description": "Determines whether gateway requests client certificate"
},
"tls10Enabled": {
"type": "boolean",
"description": "Specifies if TLS 1.0 is supported"
},
"tls11Enabled": {
"type": "boolean",
"description": "Specifies if TLS 1.1 is supported"
},
"http2Enabled": {
"type": "boolean",
"description": "Specifies if HTTP/2.0 is supported"
}
},
"description": "Gateway hostname configuration details."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"properties": {
"hostname": "*",
"certificateId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/cert1",
"negotiateClientCertificate": false
"negotiateClientCertificate": false,
"tls10Enabled": false,
"tls11Enabled": false,
"http2Enabled": true
}
}
},
Expand All @@ -23,7 +26,10 @@
"properties": {
"hostname": "*",
"certificateId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/cert1",
"negotiateClientCertificate": false
"negotiateClientCertificate": false,
"tls10Enabled": false,
"tls11Enabled": false,
"http2Enabled": true
}
}
},
Expand All @@ -35,7 +41,10 @@
"properties": {
"hostname": "*",
"certificateId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/certificates/cert1",
"negotiateClientCertificate": false
"negotiateClientCertificate": false,
"tls10Enabled": false,
"tls11Enabled": false,
"http2Enabled": true
}
}
}
Expand Down

0 comments on commit c38ba8e

Please sign in to comment.