mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-19 02:37:24 +08:00
18 lines
349 B
Go
18 lines
349 B
Go
package modules
|
|
|
|
type KeypairManager struct {
|
|
ResourceManager
|
|
}
|
|
|
|
var (
|
|
Keypairs KeypairManager
|
|
)
|
|
|
|
func init() {
|
|
Keypairs = KeypairManager{NewComputeManager("keypair", "keypairs",
|
|
[]string{"ID", "Name", "Scheme", "Fingerprint", "Created_at", "Private_key_len", "Description", "Linked_guest_count"},
|
|
[]string{})}
|
|
|
|
registerCompute(&Keypairs)
|
|
}
|