yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/aliyun/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/aliyun"
    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 *aliyun.SRegion, args *VpcListOptions) error {
    29  		vpcs, total, e := cli.GetVpcs(nil, args.Offset, args.Limit)
    30  		if e != nil {
    31  			return e
    32  		}
    33  		printList(vpcs, total, args.Offset, args.Limit, []string{})
    34  		return nil
    35  	})
    36  
    37  	type VpcCreateOptions struct {
    38  		Name string
    39  		Desc string
    40  		CIDR string
    41  	}
    42  
    43  	shellutils.R(&VpcCreateOptions{}, "vpc-create", "Create vpc", func(cli *aliyun.SRegion, args *VpcCreateOptions) error {
    44  		opts := cloudprovider.VpcCreateOptions{
    45  			NAME: args.Name,
    46  			CIDR: args.CIDR,
    47  			Desc: args.Desc,
    48  		}
    49  		vpc, err := cli.CreateIVpc(&opts)
    50  		if err != nil {
    51  			return err
    52  		}
    53  		printObject(vpc)
    54  		return nil
    55  	})
    56  
    57  	type VpcOptions struct {
    58  		ID string `help:"VPC id"`
    59  	}
    60  
    61  	shellutils.R(&VpcOptions{}, "vpc-delete", "Delete vpc", func(cli *aliyun.SRegion, args *VpcOptions) error {
    62  		return cli.DeleteVpc(args.ID)
    63  	})
    64  
    65  	type VpcMoveResourceGroup struct {
    66  		ResourceType    string `choices:"vpc|eip|bandwidthpackage" default:"vpc"`
    67  		ResourceGroupId string
    68  		ResourceId      string
    69  	}
    70  
    71  	shellutils.R(&VpcMoveResourceGroup{}, "vpc-mv-resource-group", "Delete vpc", func(cli *aliyun.SRegion, args *VpcMoveResourceGroup) error {
    72  		return cli.VpcMoveResourceGroup(args.ResourceType, args.ResourceGroupId, args.ResourceId)
    73  	})
    74  
    75  }