Node

interface Node {
    CreatedAt?: string;
    Description?: NodeDescription;
    ID?: string;
    ManagerStatus?: null | ManagerStatus;
    Spec?: NodeSpec;
    Status?: NodeStatus;
    UpdatedAt?: string;
    Version?: ObjectVersion;
}

Properties

CreatedAt?: string

Date and time at which the node was added to the swarm in RFC 3339 format with nano-seconds.

Description?: NodeDescription
ID?: string
ManagerStatus?: null | ManagerStatus
Spec?: NodeSpec
Status?: NodeStatus
UpdatedAt?: string

Date and time at which the node was last updated in RFC 3339 format with nano-seconds.

Version?: ObjectVersion