Era.Common.NetworkMessage.ConsoleApi.Repository.RpcGetBundleInstallerRequest
Description
Request for generation an "offline" installer.
Call of this request returns an ID, which can then be used
to monitor installer creation progress via [RpcGetFileProgressRequest]
and after 100% progress is reported, the ID can be used
to download the installer via [RpcGetFilePartRequest].
Properties
Dual message (request/response)
 Era.Common.NetworkMessage.ConsoleApi.Repository.RpcGetBundleInstallerResponse | 
Referenced in messages
No references.JsonSchema
{
    "title": "Era.Common.NetworkMessage.ConsoleApi.Repository.RpcGetBundleInstallerRequest",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.Repository.RpcGetBundleInstallerRequest"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.Repository.RpcGetBundleInstallerRequest": {
            "$ref": "#/definitions/RpcGetBundleInstallerRequest"
        }
    },
    "definitions": {
        "RpcGetBundleInstallerRequest": {
            "oneOf": [
                {
                    "required": [
                        "bundleInstallerConf"
                    ]
                },
                {
                    "required": [
                        "storedInstallerUuid"
                    ]
                }
            ],
            "additionalProperties": false,
            "type": "object",
            "properties": {
                "bundleInstallerConf": {
                    "$ref": "Era.Common.DataDefinition.Repository.BundleInstallerConfig#/definitions/BundleInstallerConfig"
                },
                "storedInstallerPlatform": {
                    "enum": [
                        1,
                        2,
                        3
                    ]
                },
                "storedInstallerUuid": {
                    "$ref": "Era.Common.DataDefinition.Common.Uuid#/definitions/Uuid"
                }
            }
        }
    }
}