Documentation ¶
Index ¶
- type DeviceController
- func (dc *DeviceController) AddDevice(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceController) AllDevices(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceController) DeleteDeviceById(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceController) DeleteDeviceByName(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceController) DeviceByName(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceController) DeviceIdExists(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceController) DeviceNameExists(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceController) DevicesByServiceName(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceController) PatchDevice(w http.ResponseWriter, r *http.Request)
- type DeviceProfileController
- func (dc *DeviceProfileController) AddDeviceProfile(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceProfileController) AddDeviceProfileByYaml(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceProfileController) AllDeviceProfiles(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceProfileController) DeleteDeviceProfileById(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceProfileController) DeleteDeviceProfileByName(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceProfileController) DeviceProfileByName(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceProfileController) DeviceProfilesByManufacturer(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceProfileController) DeviceProfilesByModel(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceProfileController) UpdateDeviceProfile(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceProfileController) UpdateDeviceProfileByYaml(w http.ResponseWriter, r *http.Request)
- type DeviceServiceController
- func (dc *DeviceServiceController) AddDeviceService(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceServiceController) AllDeviceServices(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceServiceController) DeleteDeviceServiceById(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceServiceController) DeleteDeviceServiceByName(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceServiceController) DeviceServiceByName(w http.ResponseWriter, r *http.Request)
- func (dc *DeviceServiceController) PatchDeviceService(w http.ResponseWriter, r *http.Request)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeviceController ¶
type DeviceController struct {
// contains filtered or unexported fields
}
func NewDeviceController ¶
func NewDeviceController(dic *di.Container) *DeviceController
NewDeviceController creates and initializes an DeviceController
func (*DeviceController) AddDevice ¶
func (dc *DeviceController) AddDevice(w http.ResponseWriter, r *http.Request)
func (*DeviceController) AllDevices ¶
func (dc *DeviceController) AllDevices(w http.ResponseWriter, r *http.Request)
func (*DeviceController) DeleteDeviceById ¶
func (dc *DeviceController) DeleteDeviceById(w http.ResponseWriter, r *http.Request)
func (*DeviceController) DeleteDeviceByName ¶
func (dc *DeviceController) DeleteDeviceByName(w http.ResponseWriter, r *http.Request)
func (*DeviceController) DeviceByName ¶
func (dc *DeviceController) DeviceByName(w http.ResponseWriter, r *http.Request)
func (*DeviceController) DeviceIdExists ¶
func (dc *DeviceController) DeviceIdExists(w http.ResponseWriter, r *http.Request)
func (*DeviceController) DeviceNameExists ¶
func (dc *DeviceController) DeviceNameExists(w http.ResponseWriter, r *http.Request)
func (*DeviceController) DevicesByServiceName ¶
func (dc *DeviceController) DevicesByServiceName(w http.ResponseWriter, r *http.Request)
func (*DeviceController) PatchDevice ¶
func (dc *DeviceController) PatchDevice(w http.ResponseWriter, r *http.Request)
type DeviceProfileController ¶
type DeviceProfileController struct {
// contains filtered or unexported fields
}
func NewDeviceProfileController ¶
func NewDeviceProfileController(dic *di.Container) *DeviceProfileController
NewDeviceProfileController creates and initializes an DeviceProfileController
func (*DeviceProfileController) AddDeviceProfile ¶
func (dc *DeviceProfileController) AddDeviceProfile(w http.ResponseWriter, r *http.Request)
func (*DeviceProfileController) AddDeviceProfileByYaml ¶
func (dc *DeviceProfileController) AddDeviceProfileByYaml(w http.ResponseWriter, r *http.Request)
func (*DeviceProfileController) AllDeviceProfiles ¶
func (dc *DeviceProfileController) AllDeviceProfiles(w http.ResponseWriter, r *http.Request)
func (*DeviceProfileController) DeleteDeviceProfileById ¶
func (dc *DeviceProfileController) DeleteDeviceProfileById(w http.ResponseWriter, r *http.Request)
func (*DeviceProfileController) DeleteDeviceProfileByName ¶
func (dc *DeviceProfileController) DeleteDeviceProfileByName(w http.ResponseWriter, r *http.Request)
func (*DeviceProfileController) DeviceProfileByName ¶
func (dc *DeviceProfileController) DeviceProfileByName(w http.ResponseWriter, r *http.Request)
func (*DeviceProfileController) DeviceProfilesByManufacturer ¶
func (dc *DeviceProfileController) DeviceProfilesByManufacturer(w http.ResponseWriter, r *http.Request)
func (*DeviceProfileController) DeviceProfilesByModel ¶
func (dc *DeviceProfileController) DeviceProfilesByModel(w http.ResponseWriter, r *http.Request)
func (*DeviceProfileController) UpdateDeviceProfile ¶
func (dc *DeviceProfileController) UpdateDeviceProfile(w http.ResponseWriter, r *http.Request)
func (*DeviceProfileController) UpdateDeviceProfileByYaml ¶
func (dc *DeviceProfileController) UpdateDeviceProfileByYaml(w http.ResponseWriter, r *http.Request)
type DeviceServiceController ¶
type DeviceServiceController struct {
// contains filtered or unexported fields
}
func NewDeviceServiceController ¶
func NewDeviceServiceController(dic *di.Container) *DeviceServiceController
NewDeviceServiceController creates and initializes an DeviceServiceController
func (*DeviceServiceController) AddDeviceService ¶
func (dc *DeviceServiceController) AddDeviceService(w http.ResponseWriter, r *http.Request)
func (*DeviceServiceController) AllDeviceServices ¶
func (dc *DeviceServiceController) AllDeviceServices(w http.ResponseWriter, r *http.Request)
func (*DeviceServiceController) DeleteDeviceServiceById ¶
func (dc *DeviceServiceController) DeleteDeviceServiceById(w http.ResponseWriter, r *http.Request)
func (*DeviceServiceController) DeleteDeviceServiceByName ¶
func (dc *DeviceServiceController) DeleteDeviceServiceByName(w http.ResponseWriter, r *http.Request)
func (*DeviceServiceController) DeviceServiceByName ¶
func (dc *DeviceServiceController) DeviceServiceByName(w http.ResponseWriter, r *http.Request)
func (*DeviceServiceController) PatchDeviceService ¶
func (dc *DeviceServiceController) PatchDeviceService(w http.ResponseWriter, r *http.Request)
Click to show internal directories.
Click to hide internal directories.