Files
cloudpods/pkg/mcclient/modules/mod_instance_snapshots.go
wanyaoqi 8fc4b2920a - instance snapshot
- instance clone

- create form snapshot don't reset passwd
2019-10-14 21:36:58 +08:00

20 lines
353 B
Go

package modules
import "yunion.io/x/onecloud/pkg/mcclient/modulebase"
var (
InstanceSnapshots modulebase.ResourceManager
)
func init() {
InstanceSnapshots = NewComputeManager("instance_snapshot", "instance_snapshots",
[]string{"ID", "Name",
"Status", "GuestId",
"ServerConfig",
},
[]string{},
)
registerCompute(&InstanceSnapshots)
}