@edgible-team/sdk
    Preparing search index...

    Interface ProvisionVmWithAgentResult

    Result of provisionVmWithAgent: the registered device and a stop handle.

    interface ProvisionVmWithAgentResult {
        device: DeviceData;
        deviceId: string;
        deviceName: string;
        organizationId: string;
        stop(): Promise<void>;
    }
    Index

    Properties

    device: DeviceData

    The registered device row at the moment it went active.

    deviceId: string

    The deviceId the agent registered as.

    deviceName: string

    The device name used at install.

    organizationId: string

    Organization the device belongs to.

    Methods