Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#Network Application Gateway: Trusted Root certificate #3668

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
Expand Up @@ -818,6 +818,49 @@
],
"description": "Authentication certificates of an application gateway."
},
"ApplicationGatewayTrustedRootCertificatePropertiesFormat": {
"properties": {
"data": {
"type": "string",
"description": "Certificate public data."
},
"keyvaultSecretId": {
"type": "string",
"description": "KeyVault Secret Id for certificate."
},
"provisioningState": {
"type": "string",
"description": "Provisioning state of the trusted root certificate resource. Possible values are: 'Updating', 'Deleting', and 'Failed'."
}
},
"description": "Trusted Root certificates properties of an application gateway."
},
"ApplicationGatewayTrustedRootCertificate": {
"properties": {
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/ApplicationGatewayTrustedRootCertificatePropertiesFormat"
},
"name": {
"type": "string",
"description": "Name of the trusted root certificate that is unique within an Application Gateway."
},
"etag": {
"type": "string",
"description": "A unique read-only string that changes whenever the resource is updated."
},
"type": {
"type": "string",
"description": "Type of the resource."
}
},
"allOf": [
{
"$ref": "./network.json#/definitions/SubResource"
}
],
"description": "Trusted Root certificates of an application gateway."
},
"ApplicationGatewaySslCertificatePropertiesFormat": {
"properties": {
"data": {
Expand Down Expand Up @@ -1073,6 +1116,13 @@
},
"description": "Array of references to application gateway authentication certificates."
},
"trustedRootCertificates": {
"type": "array",
"items": {
"$ref": "./network.json#/definitions/SubResource"
},
"description": "Array of references to application gateway trusted root certificates."
},
"connectionDraining": {
"$ref": "#/definitions/ApplicationGatewayConnectionDraining",
"description": "Connection draining of the backend http settings resource."
Expand Down Expand Up @@ -1533,6 +1583,13 @@
},
"description": "Authentication certificates of the application gateway resource."
},
"trustedRootCertificates": {
"type": "array",
"items": {
"$ref": "#/definitions/ApplicationGatewayTrustedRootCertificate"
},
"description": "Trusted Root certificates of the application gateway resource."
},
"sslCertificates": {
"type": "array",
"items": {
Expand Down