Skip to content

Commit

Permalink
Trusted Root certificate (#3668)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaysngupta authored and jianghaolu committed Aug 20, 2018
1 parent c9d1315 commit 3ff4b52
Showing 1 changed file with 57 additions and 0 deletions.
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

0 comments on commit 3ff4b52

Please sign in to comment.