Skip to content
Open
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 @@ -3462,6 +3462,14 @@
"description": "Indicate if end to end TLS is enabled.",
"type": "boolean",
"default": false
},
"loadedCertificates": {
"description": "Collection of loaded certificates",
"uniqueItems": false,
"type": "array",
"items": {
"$ref": "#/definitions/LoadedCertificate"
}
}
}
},
Expand Down Expand Up @@ -3508,6 +3516,21 @@
}
}
},
"LoadedCertificate": {
"description": "Loaded certificate payload",
"type": "object",
"properties": {
"resourceId": {
"description": "Resource Id of loaded certificate",
"type": "string"
},
"loadTrustStore": {
"description": "Indicate whether the certificate will be loaded into default trust store, only work for Java runtime.",
"type": "boolean",
"default": false
}
}
},
"AppResourceCollection": {
"description": "Object that includes an array of App resources and a possible link for next set",
"type": "object",
Expand Down Expand Up @@ -3638,10 +3661,6 @@
},
"CertificateProperties": {
"description": "Certificate resource payload.",
"required": [
"vaultUri",
"keyVaultCertName"
],
"type": "object",
"properties": {
"thumbprint": {
Expand All @@ -3661,6 +3680,11 @@
"description": "The certificate version of key vault.",
"type": "string"
},
"importPrivateKey": {
"description": "Indicates whether will import private key from key vault.",
"type": "boolean",
"default": true
},
"issuer": {
"description": "The issuer of certificate.",
"type": "string",
Expand Down Expand Up @@ -3694,6 +3718,10 @@
"type": "string"
},
"readOnly": true
},
"content": {
"description": "The content of uploaded certificate.",
"type": "string"
}
}
},
Expand Down