Era.Common.NetworkMessage.ConsoleApi.Security.RpcCreateCertificateRequestAndPrivateKeyResponse

Description

Response to [RpcCreateCertificateRequestAndPrivateKeyRequest]

Properties

Name JsonSchemaType Description
certificatePrivateKeyPemBlob string Private key for the certificate. Together with the certificate from Apple, this will be used in a policy.
signedCertificateRequestPlistBlob string Signed CSR to be uploaded to Apple Push Certificates Portal. The certificate from Apple will then be used in a policy.

Dual message (request/response)

Era.Common.NetworkMessage.ConsoleApi.Security.RpcCreateCertificateRequestAndPrivateKeyRequest

Referenced in messages

No references.

JsonSchema

{
    "title": "Era.Common.NetworkMessage.ConsoleApi.Security.RpcCreateCertificateRequestAndPrivateKeyResponse",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.Security.RpcCreateCertificateRequestAndPrivateKeyResponse"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.Security.RpcCreateCertificateRequestAndPrivateKeyResponse": {
            "$ref": "#/definitions/RpcCreateCertificateRequestAndPrivateKeyResponse"
        }
    },
    "definitions": {
        "RpcCreateCertificateRequestAndPrivateKeyResponse": {
            "additionalProperties": false,
            "required": [
                "certificatePrivateKeyPemBlob",
                "signedCertificateRequestPlistBlob"
            ],
            "type": "object",
            "properties": {
                "certificatePrivateKeyPemBlob": {
                    "type": "string"
                },
                "signedCertificateRequestPlistBlob": {
                    "type": "string"
                }
            }
        }
    }
}