yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/ucloud/shell/eip.go (about) 1 // Copyright 2019 Yunion 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package shell 16 17 import ( 18 "yunion.io/x/cloudmux/pkg/cloudprovider" 19 "yunion.io/x/cloudmux/pkg/multicloud/ucloud" 20 "yunion.io/x/onecloud/pkg/util/shellutils" 21 ) 22 23 func init() { 24 type EipListOptions struct { 25 } 26 shellutils.R(&EipListOptions{}, "eip-list", "List eips", func(cli *ucloud.SRegion, args *EipListOptions) error { 27 eips, e := cli.GetIEips() 28 if e != nil { 29 return e 30 } 31 printList(eips, 0, 0, 0, nil) 32 return nil 33 }) 34 35 type EipAllocateOptions struct { 36 NAME string `help:"eip name"` 37 BW int `help:"Bandwidth limit in Mbps"` 38 BGP string `help:"bgp type" choices:"Bgp|International"` 39 } 40 shellutils.R(&EipAllocateOptions{}, "eip-create", "Allocate an EIP", func(cli *ucloud.SRegion, args *EipAllocateOptions) error { 41 option := cloudprovider.SEip{ 42 Name: args.NAME, 43 BandwidthMbps: args.BW, 44 BGPType: args.BGP, 45 } 46 eip, err := cli.CreateEIP(&option) 47 if err != nil { 48 return err 49 } 50 printObject(eip) 51 return nil 52 }) 53 54 type EipReleaseOptions struct { 55 ID string `help:"EIP allocation ID"` 56 } 57 shellutils.R(&EipReleaseOptions{}, "eip-delete", "Release an EIP", func(cli *ucloud.SRegion, args *EipReleaseOptions) error { 58 err := cli.DeallocateEIP(args.ID) 59 return err 60 }) 61 62 type EipAssociateOptions struct { 63 ID string `help:"EIP allocation ID"` 64 INSTANCE string `help:"Instance ID"` 65 } 66 shellutils.R(&EipAssociateOptions{}, "eip-associate", "Associate an EIP", func(cli *ucloud.SRegion, args *EipAssociateOptions) error { 67 err := cli.AssociateEip(args.ID, args.INSTANCE) 68 return err 69 }) 70 shellutils.R(&EipAssociateOptions{}, "eip-dissociate", "Dissociate an EIP", func(cli *ucloud.SRegion, args *EipAssociateOptions) error { 71 err := cli.DissociateEip(args.ID, args.INSTANCE) 72 return err 73 }) 74 }