mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-21 14:19:49 +08:00
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
package shell
|
|
|
|
import (
|
|
"yunion.io/x/onecloud/pkg/util/aws"
|
|
"yunion.io/x/onecloud/pkg/util/shellutils"
|
|
)
|
|
|
|
func init() {
|
|
type EipListOptions struct {
|
|
Offset int `help:"List offset"`
|
|
Limit int `help:"List limit"`
|
|
}
|
|
shellutils.R(&EipListOptions{}, "eip-list", "List eips", func(cli *aws.SRegion, args *EipListOptions) error {
|
|
eips, total, e := cli.GetEips("", args.Offset, args.Limit)
|
|
if e != nil {
|
|
return e
|
|
}
|
|
printList(eips, total, args.Offset, args.Limit, []string{})
|
|
return nil
|
|
})
|
|
|
|
type EipAllocateOptions struct {
|
|
}
|
|
shellutils.R(&EipAllocateOptions{}, "eip-create", "Allocate an EIP", func(cli *aws.SRegion, args *EipAllocateOptions) error {
|
|
eip, err := cli.AllocateEIP("vpc")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
printObject(eip)
|
|
return nil
|
|
})
|
|
|
|
type EipReleaseOptions struct {
|
|
ID string `help:"EIP allocation ID"`
|
|
}
|
|
shellutils.R(&EipReleaseOptions{}, "eip-delete", "Release an EIP", func(cli *aws.SRegion, args *EipReleaseOptions) error {
|
|
err := cli.DeallocateEIP(args.ID)
|
|
return err
|
|
})
|
|
|
|
type EipAssociateOptions struct {
|
|
ID string `help:"EIP allocation ID"`
|
|
INSTANCE string `help:"Instance ID"`
|
|
}
|
|
shellutils.R(&EipAssociateOptions{}, "eip-associate", "Associate an EIP", func(cli *aws.SRegion, args *EipAssociateOptions) error {
|
|
err := cli.AssociateEip(args.ID, args.INSTANCE)
|
|
return err
|
|
})
|
|
shellutils.R(&EipAssociateOptions{}, "eip-dissociate", "Dissociate an EIP", func(cli *aws.SRegion, args *EipAssociateOptions) error {
|
|
err := cli.DissociateEip(args.ID, args.INSTANCE)
|
|
return err
|
|
})
|
|
}
|