-
Notifications
You must be signed in to change notification settings - Fork 51
func check, all of Ns, Mcis, Vm, Resource
Yunkon Kim edited this page Aug 2, 2023
·
1 revision
Call chain:
- GET
http://tb_ip:tb_port/tumblebug/checkNs/:nsId
(in api/rest/server/server.go) -
func RestCheckNs(c echo.Context) error
(in api/rest/server/common/namespace.go) -
func CheckNs(Id string) (bool, error)
(in core/common/namespace.go)
Call chain:
- GET
http://tb_ip:tb_port/tumblebug/:nsId/checkMcis/:mcisId
(in api/rest/server/server.go) -
func RestCheckMcis(c echo.Context) error
(in api/rest/server/mcis/utility.go) -
func CheckMcis(nsId string, mcisId string) (bool, error)
(in core/mcis/utility.go)
Call chain:
- GET
http://tb_ip:tb_port/tumblebug/:nsId/mcis/:mcisId/checkVm/:vmId
(in api/rest/server/server.go) -
func RestCheckVm(c echo.Context) error
(in api/rest/server/mcis/utility.go) -
func CheckVm(nsId string, mcisId string, vmId string) (bool, error)
(in core/mcis/utility.go)
Call chain:
- GET
http://tb_ip:tb_port/tumblebug/:nsId/checkResource/:resourceType/:resourceId
(in api/rest/server/server.go) -
func RestCheckResource(c echo.Context) error
(in api/rest/server/mcir/common.go) -
func CheckResource(nsId string, resourceType string, resourceId string) (bool, error)
(in core/mcir/common.go)
- Design
- Features & Usage
- Install & Start Guide
- User Interface
- Developer Guide
- Test Reports