diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2021-06-01-preview/appplatform.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2021-06-01-preview/appplatform.json index 0fa858b7ca6e..5e3cb1fa0827 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2021-06-01-preview/appplatform.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2021-06-01-preview/appplatform.json @@ -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" + } } } }, @@ -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", @@ -3638,10 +3661,6 @@ }, "CertificateProperties": { "description": "Certificate resource payload.", - "required": [ - "vaultUri", - "keyVaultCertName" - ], "type": "object", "properties": { "thumbprint": { @@ -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", @@ -3694,6 +3718,10 @@ "type": "string" }, "readOnly": true + }, + "content": { + "description": "The content of uploaded certificate.", + "type": "string" } } },