metathings_deviced_storage

package
v1.2.15 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 8, 2022 License: MIT Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	InvalidArgument = errors.New("invalid argument")
	RecordNotFound  = errors.New("record not found")
)

Functions

func SelectFieldsOption added in v1.2.6

func SelectFieldsOption(scope string, fields ...string) func(map[string]interface{})

func SkipInternalQueryOption added in v1.2.6

func SkipInternalQueryOption(skip bool) func(map[string]interface{})

Types

type Config added in v1.1.27

type Config struct {
	Id        *string
	CreatedAt time.Time
	UpdatedAt time.Time

	Alias *string `gorm:"column:alias"`
	Body  *string `gorm:"column:body"`
}

type Device

type Device struct {
	Id        *string
	CreatedAt time.Time
	UpdatedAt time.Time

	HeartbeatAt *time.Time
	Kind        *string `gorm:"column:kind"`
	State       *string `gorm:"column:state"`
	Name        *string `gorm:"column:name"`
	Alias       *string `gorm:"column:alias"`
	Extra       *string `gorm:"column:extra"`

	Modules     []*Module         `gorm:"-"`
	Flows       []*Flow           `gorm:"-"`
	Configs     []*Config         `gorm:"-"`
	ExtraHelper map[string]string `gorm:"-"`
}

type DeviceConfigMapping added in v1.1.27

type DeviceConfigMapping struct {
	CreatedAt time.Time

	DeviceId *string `gorm:"column:device_id"`
	ConfigId *string `gorm:"column:config_id"`
}

type DeviceFirmwareDescriptorMapping added in v1.2.0

type DeviceFirmwareDescriptorMapping struct {
	CreatedAt time.Time

	DeviceId             *string `gorm:"column:device_id"`
	FirmwareDescriptorId *string `gorm:"column:firmware_descriptor_id"`
}

type DeviceFirmwareHubMapping added in v1.2.0

type DeviceFirmwareHubMapping struct {
	CreatedAt time.Time

	DeviceId      *string `gorm:"column:device_id"`
	FirmwareHubId *string `gorm:"column:firmware_hub_id"`
}

type FirmwareDescriptor added in v1.2.0

type FirmwareDescriptor struct {
	Id        *string
	CreatedAt time.Time
	UpdatedAt time.Time

	Name          *string `gorm:"column:name"`
	FirmwareHubId *string `gorm:"column:firmware_hub_id"`
	Descriptor    *string `gorm:"column:descriptor"`
}

type FirmwareHub added in v1.2.0

type FirmwareHub struct {
	Id        *string
	CreatedAt time.Time
	UpdatedAt time.Time

	Alias       *string `gorm:"column:alias"`
	Description *string `gorm:"column:description"`

	Devices             []*Device             `gorm:"-"`
	FirmwareDescriptors []*FirmwareDescriptor `gorm:"-"`
}

type Flow

type Flow struct {
	Id        *string
	CreatedAt time.Time
	UpdatedAt time.Time

	DeviceId *string `gorm:"column:device_id"`
	Name     *string `gorm:"column:name"`
	Alias    *string `gorm:"column:alias"`

	Device *Device `gorm:"-"`
}

type FlowFlowSetMapping added in v1.1.23

type FlowFlowSetMapping struct {
	CreatedAt time.Time

	FlowId    *string `gorm:"flow_id"`
	FlowSetId *string `gorm:"flow_set_id"`
}

type FlowSet added in v1.1.23

type FlowSet struct {
	Id        *string
	CreatedAt time.Time
	UpdatedAt time.Time

	Name  *string `gorm:"column:name"`
	Alias *string `gorm:"column:alias"`

	Flows []*Flow `gorm:"-"`
}

type GetDeviceOption added in v1.2.6

type GetDeviceOption func(map[string]interface{})

type ListModulesByDeviceIdOption added in v1.2.6

type ListModulesByDeviceIdOption func(map[string]interface{})

type Module

type Module struct {
	Id        *string
	CreatedAt time.Time
	UpdatedAt time.Time

	HeartbeatAt *time.Time
	State       *string `gorm:"column:state"`
	DeviceId    *string `gorm:"column:device_id"`
	Endpoint    *string `gorm:"column:endpoint"`
	Component   *string `gorm:"column:component"`
	Name        *string `gorm:"column:name"`
	Alias       *string `gorm:"column:alias"`

	Device *Device `gorm:"-"`
}

type Storage

type Storage interface {
	CreateDevice(context.Context, *Device) (*Device, error)
	DeleteDevice(ctx context.Context, id string) error
	PatchDevice(ctx context.Context, id string, device *Device) (*Device, error)
	ModifyDevice(ctx context.Context, id string, device *Device) error
	GetDevice(ctx context.Context, id string, opts ...GetDeviceOption) (*Device, error)
	ListDevices(context.Context, *Device) ([]*Device, error)
	GetDeviceByModuleId(ctx context.Context, id string) (*Device, error)
	ListModulesByDeviceId(ctx context.Context, dev_id string, opts ...ListModulesByDeviceIdOption) ([]*Module, error)

	CreateConfig(context.Context, *Config) (*Config, error)
	DeleteConfig(ctx context.Context, id string) error
	PatchConfig(ctx context.Context, id string, cfg *Config) (*Config, error)
	GetConfig(ctx context.Context, id string) (*Config, error)
	ListConfigs(context.Context, *Config) ([]*Config, error)
	AddConfigToDevice(ctx context.Context, dev_id, cfg_id string) error
	RemoveConfigFromDevice(ctx context.Context, dev_id, cfg_id string) error
	RemoveConfigFromDeviceByConfigId(ctx context.Context, cfg_id string) error
	ListConfigsByDeviceId(ctx context.Context, dev_id string) ([]*Config, error)

	CreateModule(context.Context, *Module) (*Module, error)
	DeleteModule(ctx context.Context, id string) error
	PatchModule(ctx context.Context, id string, module *Module) (*Module, error)
	ModifyModule(ctx context.Context, id string, module *Module) error
	GetModule(ctx context.Context, id string) (*Module, error)
	ListModules(context.Context, *Module) ([]*Module, error)

	CreateFlow(context.Context, *Flow) (*Flow, error)
	DeleteFlow(ctx context.Context, id string) error
	PatchFlow(ctx context.Context, id string, flow *Flow) (*Flow, error)
	GetFlow(ctx context.Context, id string) (*Flow, error)
	ListFlows(context.Context, *Flow) ([]*Flow, error)

	CreateFlowSet(context.Context, *FlowSet) (*FlowSet, error)
	DeleteFlowSet(ctx context.Context, id string) error
	PatchFlowSet(ctx context.Context, id string, flow_set *FlowSet) (*FlowSet, error)
	GetFlowSet(ctx context.Context, id string) (*FlowSet, error)
	ListFlowSets(context.Context, *FlowSet) ([]*FlowSet, error)
	ListViewFlowSetsByFlowId(ctx context.Context, id string) ([]*FlowSet, error)
	AddFlowToFlowSet(ctx context.Context, flow_set_id, flow_id string) error
	RemoveFlowFromFlowSet(ctx context.Context, flow_set_id, flow_id string) error

	CreateFirmwareHub(context.Context, *FirmwareHub) (*FirmwareHub, error)
	DeleteFirmwareHub(ctx context.Context, id string) error
	PatchFirmwareHub(ctx context.Context, id string, fh *FirmwareHub) (*FirmwareHub, error)
	GetFirmwareHub(ctx context.Context, id string) (*FirmwareHub, error)
	ListFirmwareHubs(ctx context.Context, frm_hub *FirmwareHub) ([]*FirmwareHub, error)
	AddDeviceToFirmwareHub(ctx context.Context, frm_hub_id, dev_id string) error
	RemoveDeviceFromFirmwareHub(ctx context.Context, frm_hub_id, dev_id string) error
	RemoveAllDevicesInFirmwareHub(ctx context.Context, frm_hub_id string) error
	CreateFirmwareDescriptor(ctx context.Context, frm_desc *FirmwareDescriptor) error
	DeleteFirmwareDescriptor(ctx context.Context, frm_desc_id string) error
	ListViewDevicesByFirmwareHubId(ctx context.Context, frm_hub_id string) ([]*Device, error)
	SetDeviceFirmwareDescriptor(ctx context.Context, dev_id, desc_id string) error
	UnsetDeviceFirmwareDescriptor(ctx context.Context, dev_id string) error
	GetDeviceFirmwareDescriptor(ctx context.Context, dev_id string) (*FirmwareDescriptor, error)
	FirmwareHubContainsDeviceAndFirmwareDescriptor(ctx context.Context, dev_id, desc_id string) (bool, error)
}

func NewStorage

func NewStorage(driver, uri string, args ...interface{}) (Storage, error)

func NewStorageImpl

func NewStorageImpl(driver, uri string, args ...interface{}) (Storage, error)

func NewTracedStorage added in v1.1.18

func NewTracedStorage(s Storage, getter opentracing_storage_helper.RootDBConnGetter) (Storage, error)

type StorageImpl

type StorageImpl struct {
	// contains filtered or unexported fields
}

func (*StorageImpl) AddConfigToDevice added in v1.1.27

func (self *StorageImpl) AddConfigToDevice(ctx context.Context, dev_id, cfg_id string) error

func (*StorageImpl) AddDeviceToFirmwareHub added in v1.2.0

func (self *StorageImpl) AddDeviceToFirmwareHub(ctx context.Context, frm_hub_id, dev_id string) error

func (*StorageImpl) AddFlowToFlowSet added in v1.1.23

func (self *StorageImpl) AddFlowToFlowSet(ctx context.Context, flwst_id, flw_id string) error

func (*StorageImpl) CreateConfig added in v1.1.27

func (self *StorageImpl) CreateConfig(ctx context.Context, cfg *Config) (*Config, error)

func (*StorageImpl) CreateDevice

func (self *StorageImpl) CreateDevice(ctx context.Context, dev *Device) (*Device, error)

func (*StorageImpl) CreateFirmwareDescriptor added in v1.2.0

func (self *StorageImpl) CreateFirmwareDescriptor(ctx context.Context, frm_desc *FirmwareDescriptor) error

func (*StorageImpl) CreateFirmwareHub added in v1.2.0

func (self *StorageImpl) CreateFirmwareHub(ctx context.Context, frm_hub *FirmwareHub) (*FirmwareHub, error)

func (*StorageImpl) CreateFlow

func (self *StorageImpl) CreateFlow(ctx context.Context, flw *Flow) (*Flow, error)

func (*StorageImpl) CreateFlowSet added in v1.1.23

func (self *StorageImpl) CreateFlowSet(ctx context.Context, flwst *FlowSet) (*FlowSet, error)

func (*StorageImpl) CreateModule

func (self *StorageImpl) CreateModule(ctx context.Context, mdl *Module) (*Module, error)

func (*StorageImpl) DeleteConfig added in v1.1.27

func (self *StorageImpl) DeleteConfig(ctx context.Context, id string) error

func (*StorageImpl) DeleteDevice

func (self *StorageImpl) DeleteDevice(ctx context.Context, id string) error

func (*StorageImpl) DeleteFirmwareDescriptor added in v1.2.0

func (self *StorageImpl) DeleteFirmwareDescriptor(ctx context.Context, frm_desc_id string) error

func (*StorageImpl) DeleteFirmwareHub added in v1.2.0

func (self *StorageImpl) DeleteFirmwareHub(ctx context.Context, id string) error

func (*StorageImpl) DeleteFlow

func (self *StorageImpl) DeleteFlow(ctx context.Context, id string) error

func (*StorageImpl) DeleteFlowSet added in v1.1.23

func (self *StorageImpl) DeleteFlowSet(ctx context.Context, id string) error

func (*StorageImpl) DeleteModule

func (self *StorageImpl) DeleteModule(ctx context.Context, id string) error

func (*StorageImpl) FirmwareHubContainsDeviceAndFirmwareDescriptor added in v1.2.0

func (self *StorageImpl) FirmwareHubContainsDeviceAndFirmwareDescriptor(ctx context.Context, dev_id, desc_id string) (bool, error)

func (*StorageImpl) GetConfig added in v1.1.27

func (self *StorageImpl) GetConfig(ctx context.Context, id string) (*Config, error)

func (*StorageImpl) GetDBConn added in v1.1.18

func (self *StorageImpl) GetDBConn(ctx context.Context) *gorm.DB

func (*StorageImpl) GetDevice

func (self *StorageImpl) GetDevice(ctx context.Context, id string, opts ...GetDeviceOption) (*Device, error)

func (*StorageImpl) GetDeviceByModuleId added in v0.100.0

func (self *StorageImpl) GetDeviceByModuleId(ctx context.Context, id string) (*Device, error)

func (*StorageImpl) GetDeviceFirmwareDescriptor added in v1.2.0

func (self *StorageImpl) GetDeviceFirmwareDescriptor(ctx context.Context, dev_id string) (*FirmwareDescriptor, error)

func (*StorageImpl) GetFirmwareHub added in v1.2.0

func (self *StorageImpl) GetFirmwareHub(ctx context.Context, id string) (*FirmwareHub, error)

func (*StorageImpl) GetFlow

func (self *StorageImpl) GetFlow(ctx context.Context, id string) (*Flow, error)

func (*StorageImpl) GetFlowSet added in v1.1.23

func (self *StorageImpl) GetFlowSet(ctx context.Context, id string) (*FlowSet, error)

func (*StorageImpl) GetModule

func (self *StorageImpl) GetModule(ctx context.Context, id string) (*Module, error)

func (*StorageImpl) GetRootDBConn added in v1.1.18

func (self *StorageImpl) GetRootDBConn() *gorm.DB

func (*StorageImpl) ListConfigs added in v1.1.27

func (self *StorageImpl) ListConfigs(ctx context.Context, cfg *Config) ([]*Config, error)

func (*StorageImpl) ListConfigsByDeviceId added in v1.1.27

func (self *StorageImpl) ListConfigsByDeviceId(ctx context.Context, id string) ([]*Config, error)

func (*StorageImpl) ListDevices

func (self *StorageImpl) ListDevices(ctx context.Context, dev *Device) ([]*Device, error)

func (*StorageImpl) ListFirmwareHubs added in v1.2.0

func (self *StorageImpl) ListFirmwareHubs(ctx context.Context, frm_hub *FirmwareHub) ([]*FirmwareHub, error)

func (*StorageImpl) ListFlowSets added in v1.1.23

func (self *StorageImpl) ListFlowSets(ctx context.Context, flwst *FlowSet) ([]*FlowSet, error)

func (*StorageImpl) ListFlows

func (self *StorageImpl) ListFlows(ctx context.Context, flw *Flow) ([]*Flow, error)

func (*StorageImpl) ListModules

func (self *StorageImpl) ListModules(ctx context.Context, mdl *Module) ([]*Module, error)

func (*StorageImpl) ListModulesByDeviceId added in v1.2.6

func (self *StorageImpl) ListModulesByDeviceId(ctx context.Context, dev_id string, opts ...ListModulesByDeviceIdOption) ([]*Module, error)

func (*StorageImpl) ListViewDevicesByFirmwareHubId added in v1.2.0

func (self *StorageImpl) ListViewDevicesByFirmwareHubId(ctx context.Context, frm_hub_id string) ([]*Device, error)

func (*StorageImpl) ListViewFlowSetsByFlowId added in v1.1.23

func (self *StorageImpl) ListViewFlowSetsByFlowId(ctx context.Context, id string) ([]*FlowSet, error)

func (*StorageImpl) ModifyDevice added in v1.2.6

func (self *StorageImpl) ModifyDevice(ctx context.Context, id string, device *Device) error

func (*StorageImpl) ModifyModule added in v1.2.6

func (self *StorageImpl) ModifyModule(ctx context.Context, id string, mdl *Module) error

func (*StorageImpl) PatchConfig added in v1.1.27

func (self *StorageImpl) PatchConfig(ctx context.Context, id string, config *Config) (*Config, error)

func (*StorageImpl) PatchDevice

func (self *StorageImpl) PatchDevice(ctx context.Context, id string, device *Device) (*Device, error)

func (*StorageImpl) PatchFirmwareHub added in v1.2.0

func (self *StorageImpl) PatchFirmwareHub(ctx context.Context, id string, firmware_hub *FirmwareHub) (*FirmwareHub, error)

func (*StorageImpl) PatchFlow

func (self *StorageImpl) PatchFlow(ctx context.Context, id string, flw *Flow) (*Flow, error)

func (*StorageImpl) PatchFlowSet added in v1.1.23

func (self *StorageImpl) PatchFlowSet(ctx context.Context, id string, flwst *FlowSet) (*FlowSet, error)

func (*StorageImpl) PatchModule

func (self *StorageImpl) PatchModule(ctx context.Context, id string, mdl *Module) (*Module, error)

func (*StorageImpl) RemoveAllDevicesInFirmwareHub added in v1.2.0

func (self *StorageImpl) RemoveAllDevicesInFirmwareHub(ctx context.Context, frm_hub_id string) error

func (*StorageImpl) RemoveConfigFromDevice added in v1.1.27

func (self *StorageImpl) RemoveConfigFromDevice(ctx context.Context, dev_id, cfg_id string) error

func (*StorageImpl) RemoveConfigFromDeviceByConfigId added in v1.1.27

func (self *StorageImpl) RemoveConfigFromDeviceByConfigId(ctx context.Context, cfg_id string) error

func (*StorageImpl) RemoveDeviceFromFirmwareHub added in v1.2.0

func (self *StorageImpl) RemoveDeviceFromFirmwareHub(ctx context.Context, frm_hub_id, dev_id string) error

func (*StorageImpl) RemoveFlowFromFlowSet added in v1.1.23

func (self *StorageImpl) RemoveFlowFromFlowSet(ctx context.Context, flwst_id, flw_id string) error

func (*StorageImpl) SetDeviceFirmwareDescriptor added in v1.2.0

func (self *StorageImpl) SetDeviceFirmwareDescriptor(ctx context.Context, dev_id, desc_id string) error

func (*StorageImpl) UnsetDeviceFirmwareDescriptor added in v1.2.0

func (self *StorageImpl) UnsetDeviceFirmwareDescriptor(ctx context.Context, dev_id string) error

type StorageImplOption added in v1.1.18

type StorageImplOption struct {
	IsTraced bool
}

type TracedStorage added in v1.1.18

type TracedStorage struct {
	*opentracing_storage_helper.BaseTracedStorage
	Storage
}

func (*TracedStorage) AddConfigToDevice added in v1.1.27

func (s *TracedStorage) AddConfigToDevice(ctx context.Context, dev_id, cfg_id string) error

func (*TracedStorage) AddDeviceToFirmwareHub added in v1.2.0

func (s *TracedStorage) AddDeviceToFirmwareHub(ctx context.Context, frm_hub_id, dev_id string) error

func (*TracedStorage) AddFlowToFlowSet added in v1.1.23

func (s *TracedStorage) AddFlowToFlowSet(ctx context.Context, flwst_id, flw_id string) error

func (*TracedStorage) CreateConfig added in v1.1.27

func (s *TracedStorage) CreateConfig(ctx context.Context, cfg *Config) (*Config, error)

func (*TracedStorage) CreateDevice added in v1.1.18

func (s *TracedStorage) CreateDevice(ctx context.Context, dev *Device) (*Device, error)

func (*TracedStorage) CreateFirmwareDescriptor added in v1.2.0

func (s *TracedStorage) CreateFirmwareDescriptor(ctx context.Context, frm_desc *FirmwareDescriptor) error

func (*TracedStorage) CreateFirmwareHub added in v1.2.0

func (s *TracedStorage) CreateFirmwareHub(ctx context.Context, frm_hub *FirmwareHub) (*FirmwareHub, error)

func (*TracedStorage) CreateFlow added in v1.1.18

func (s *TracedStorage) CreateFlow(ctx context.Context, flw *Flow) (*Flow, error)

func (*TracedStorage) CreateFlowSet added in v1.1.23

func (s *TracedStorage) CreateFlowSet(ctx context.Context, flwst *FlowSet) (*FlowSet, error)

func (*TracedStorage) CreateModule added in v1.1.18

func (s *TracedStorage) CreateModule(ctx context.Context, dev *Module) (*Module, error)

func (*TracedStorage) DeleteConfig added in v1.1.27

func (s *TracedStorage) DeleteConfig(ctx context.Context, id string) error

func (*TracedStorage) DeleteDevice added in v1.1.18

func (s *TracedStorage) DeleteDevice(ctx context.Context, id string) error

func (*TracedStorage) DeleteFirmwareDescriptor added in v1.2.0

func (s *TracedStorage) DeleteFirmwareDescriptor(ctx context.Context, frm_desc_id string) error

func (*TracedStorage) DeleteFirmwareHub added in v1.2.0

func (s *TracedStorage) DeleteFirmwareHub(ctx context.Context, id string) error

func (*TracedStorage) DeleteFlow added in v1.1.18

func (s *TracedStorage) DeleteFlow(ctx context.Context, id string) error

func (*TracedStorage) DeleteFlowSet added in v1.1.23

func (s *TracedStorage) DeleteFlowSet(ctx context.Context, id string) error

func (*TracedStorage) DeleteModule added in v1.1.18

func (s *TracedStorage) DeleteModule(ctx context.Context, id string) error

func (*TracedStorage) FirmwareHubContainsDeviceAndFirmwareDescriptor added in v1.2.0

func (s *TracedStorage) FirmwareHubContainsDeviceAndFirmwareDescriptor(ctx context.Context, dev_id, desc_id string) (bool, error)

func (*TracedStorage) GetConfig added in v1.1.27

func (s *TracedStorage) GetConfig(ctx context.Context, id string) (*Config, error)

func (*TracedStorage) GetDevice added in v1.1.18

func (s *TracedStorage) GetDevice(ctx context.Context, id string, opts ...GetDeviceOption) (*Device, error)

func (*TracedStorage) GetDeviceByModuleId added in v1.1.18

func (s *TracedStorage) GetDeviceByModuleId(ctx context.Context, id string) (*Device, error)

func (*TracedStorage) GetDeviceFirmwareDescriptor added in v1.2.0

func (s *TracedStorage) GetDeviceFirmwareDescriptor(ctx context.Context, dev_id string) (*FirmwareDescriptor, error)

func (*TracedStorage) GetFirmwareHub added in v1.2.0

func (s *TracedStorage) GetFirmwareHub(ctx context.Context, id string) (*FirmwareHub, error)

func (*TracedStorage) GetFlow added in v1.1.18

func (s *TracedStorage) GetFlow(ctx context.Context, id string) (*Flow, error)

func (*TracedStorage) GetFlowSet added in v1.1.23

func (s *TracedStorage) GetFlowSet(ctx context.Context, id string) (*FlowSet, error)

func (*TracedStorage) GetModule added in v1.1.18

func (s *TracedStorage) GetModule(ctx context.Context, id string) (*Module, error)

func (*TracedStorage) ListConfigs added in v1.1.27

func (s *TracedStorage) ListConfigs(ctx context.Context, cfg *Config) ([]*Config, error)

func (*TracedStorage) ListConfigsByDeviceId added in v1.1.27

func (s *TracedStorage) ListConfigsByDeviceId(ctx context.Context, dev_id string) ([]*Config, error)

func (*TracedStorage) ListDevices added in v1.1.18

func (s *TracedStorage) ListDevices(ctx context.Context, dev *Device) ([]*Device, error)

func (*TracedStorage) ListFirmwareHubs added in v1.2.0

func (s *TracedStorage) ListFirmwareHubs(ctx context.Context, frm_hub *FirmwareHub) ([]*FirmwareHub, error)

func (*TracedStorage) ListFlowSets added in v1.1.23

func (s *TracedStorage) ListFlowSets(ctx context.Context, flwsts *FlowSet) ([]*FlowSet, error)

func (*TracedStorage) ListFlows added in v1.1.18

func (s *TracedStorage) ListFlows(ctx context.Context, flw *Flow) ([]*Flow, error)

func (*TracedStorage) ListModules added in v1.1.18

func (s *TracedStorage) ListModules(ctx context.Context, mdl *Module) ([]*Module, error)

func (*TracedStorage) ListModulesByDeviceId added in v1.2.6

func (s *TracedStorage) ListModulesByDeviceId(ctx context.Context, dev_id string, opts ...ListModulesByDeviceIdOption) ([]*Module, error)

func (*TracedStorage) ListViewDevicesByFirmwareHubId added in v1.2.0

func (s *TracedStorage) ListViewDevicesByFirmwareHubId(ctx context.Context, frm_hub_id string) ([]*Device, error)

func (*TracedStorage) ModifyDevice added in v1.2.6

func (s *TracedStorage) ModifyDevice(ctx context.Context, id string, device *Device) error

func (*TracedStorage) ModifyModule added in v1.2.6

func (s *TracedStorage) ModifyModule(ctx context.Context, id string, module *Module) error

func (*TracedStorage) PatchConfig added in v1.1.27

func (s *TracedStorage) PatchConfig(ctx context.Context, id string, cfg *Config) (*Config, error)

func (*TracedStorage) PatchDevice added in v1.1.18

func (s *TracedStorage) PatchDevice(ctx context.Context, id string, device *Device) (*Device, error)

func (*TracedStorage) PatchFirmwareHub added in v1.2.0

func (s *TracedStorage) PatchFirmwareHub(ctx context.Context, id string, fh *FirmwareHub) (*FirmwareHub, error)

func (*TracedStorage) PatchFlow added in v1.1.18

func (s *TracedStorage) PatchFlow(ctx context.Context, id string, flow *Flow) (*Flow, error)

func (*TracedStorage) PatchFlowSet added in v1.1.23

func (s *TracedStorage) PatchFlowSet(ctx context.Context, id string, flwst *FlowSet) (*FlowSet, error)

func (*TracedStorage) PatchModule added in v1.1.18

func (s *TracedStorage) PatchModule(ctx context.Context, id string, module *Module) (*Module, error)

func (*TracedStorage) RemoveAllDevicesInFirmwareHub added in v1.2.0

func (s *TracedStorage) RemoveAllDevicesInFirmwareHub(ctx context.Context, frm_hub_id string) error

func (*TracedStorage) RemoveConfigFromDevice added in v1.1.27

func (s *TracedStorage) RemoveConfigFromDevice(ctx context.Context, dev_id, cfg_id string) error

func (*TracedStorage) RemoveConfigFromDeviceByConfigId added in v1.1.27

func (s *TracedStorage) RemoveConfigFromDeviceByConfigId(ctx context.Context, cfg_id string) error

func (*TracedStorage) RemoveDevicesFromFirmwareHub added in v1.2.0

func (s *TracedStorage) RemoveDevicesFromFirmwareHub(ctx context.Context, frm_hub_id, dev_id string) error

func (*TracedStorage) RemoveFlowFromFlowSet added in v1.1.23

func (s *TracedStorage) RemoveFlowFromFlowSet(ctx context.Context, flwst_id, flw_id string) error

func (*TracedStorage) SetDeviceFirmwareDescriptor added in v1.2.0

func (s *TracedStorage) SetDeviceFirmwareDescriptor(ctx context.Context, dev_id, desc_id string) error

func (*TracedStorage) UnsetDeviceFirmwareDescriptor added in v1.2.0

func (s *TracedStorage) UnsetDeviceFirmwareDescriptor(ctx context.Context, dev_id string) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL