Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
ErrDiskNotFound = fmt.Errorf("disk not found")
)
View Source
var ErrNicNotFound = fmt.Errorf("nic not found")
Functions ¶
This section is empty.
Types ¶
type Motherboard ¶
type Motherboard interface { DescribeBios(context.Context) (*motherboard.Bios, error) DescribeMotherboard(context.Context) (*motherboard.Motherboard, error) }
type System ¶
type System interface { DescribeSystem(ctx context.Context) (*system.System, error) DescribeHost(ctx context.Context) (*host.Host, error) DescribeMotherboard(ctx context.Context) (*motherboard.Motherboard, error) DescribeBios(ctx context.Context) (*motherboard.Bios, error) DescribeCpu(ctx context.Context) ([]*cpu.CPU, error) DescribeMemory(ctx context.Context) ([]*memory.Memory, error) }
Click to show internal directories.
Click to hide internal directories.