Interface ControlComponentStatus

ComponentStatus is the runtime component status overview.

interface ControlComponentStatus {
    detached?: boolean;
    disabled?: boolean;
    kind: string;
    name?: string;
    version?: Version;
}

Properties

detached?: boolean

Detached specifies whether the component was in a detached bundle.

disabled?: boolean

Disabled specifies whether the component is disabled by default and needs to be explicitly enabled via node configuration to be used.

kind: string

Kind is the component kind.

name?: string

Name is the name of the component.

version?: Version

Version is the component version.