yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/azure/shell/vpc.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/azure" 20 "yunion.io/x/onecloud/pkg/util/shellutils" 21 ) 22 23 func init() { 24 type VpcListOptions struct { 25 Limit int `help:"page size"` 26 Offset int `help:"page offset"` 27 } 28 shellutils.R(&VpcListOptions{}, "vpc-list", "List vpcs", func(cli *azure.SRegion, args *VpcListOptions) error { 29 vpcs, err := cli.ListVpcs() 30 if err != nil { 31 return err 32 } 33 printList(vpcs, len(vpcs), args.Offset, args.Limit, []string{}) 34 return nil 35 }) 36 37 type VpcOptions struct { 38 ID string `help:"vpc ID"` 39 } 40 41 shellutils.R(&VpcOptions{}, "vpc-show", "Show vpc details", func(cli *azure.SRegion, args *VpcOptions) error { 42 vpc, err := cli.GetVpc(args.ID) 43 if err != nil { 44 return err 45 } 46 printObject(vpc) 47 return nil 48 }) 49 50 shellutils.R(&VpcOptions{}, "vpc-delete", "Delete vpc", func(cli *azure.SRegion, args *VpcOptions) error { 51 return cli.DeleteVpc(args.ID) 52 }) 53 54 type VpcCreateOptions struct { 55 NAME string `help:"vpc Name"` 56 CIDR string `help:"vpc cidr"` 57 Desc string `help:"vpc description"` 58 } 59 60 shellutils.R(&VpcCreateOptions{}, "vpc-create", "Create vpc", func(cli *azure.SRegion, args *VpcCreateOptions) error { 61 opts := &cloudprovider.VpcCreateOptions{ 62 NAME: args.NAME, 63 CIDR: args.CIDR, 64 Desc: args.Desc, 65 } 66 vpc, err := cli.CreateIVpc(opts) 67 if err != nil { 68 return err 69 } 70 printObject(vpc) 71 return nil 72 }) 73 }