예제 #1
0
파일: uniter.go 프로젝트: rogpeppe/juju
// life requests the lifecycle of the given entity from the server.
func (st *State) life(tag string) (params.Life, error) {
	return common.Life(st.caller, uniterFacade, tag)
}
예제 #2
0
파일: deployer.go 프로젝트: klyachin/juju
// unitLife returns the lifecycle state of the given unit.
func (st *State) unitLife(tag names.UnitTag) (params.Life, error) {
	return common.Life(st.caller, deployerFacade, tag)
}
예제 #3
0
파일: firewaller.go 프로젝트: klyachin/juju
// life requests the life cycle of the given entity from the server.
func (st *State) life(tag names.Tag) (params.Life, error) {
	return common.Life(st.caller, firewallerFacade, tag)
}
예제 #4
0
파일: machiner.go 프로젝트: jiasir/juju
// machineLife requests the lifecycle of the given machine from the server.
func (st *State) machineLife(tag names.MachineTag) (params.Life, error) {
	return common.Life(st.caller, machinerFacade, tag)
}
예제 #5
0
// machineLife requests the lifecycle of the given machine from the server.
func (st *State) machineLife(tag string) (params.Life, error) {
	return common.Life(st.caller, provisionerFacade, tag)
}