mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-24 10:23:43 +08:00
20 lines
353 B
Go
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)
|
|
}
|