yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/hcso/shell/region.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 "fmt" 19 20 huawei "yunion.io/x/cloudmux/pkg/multicloud/hcso" 21 "yunion.io/x/onecloud/pkg/util/shellutils" 22 ) 23 24 func init() { 25 type RegionListOptions struct { 26 } 27 shellutils.R(&RegionListOptions{}, "region-list", "List regions", func(cli *huawei.SRegion, args *RegionListOptions) error { 28 regions := cli.GetClient().GetRegions() 29 printList(regions, 0, 0, 0, nil) 30 return nil 31 }) 32 33 shellutils.R(&RegionListOptions{}, "project-list", "List projects", func(cli *huawei.SRegion, args *RegionListOptions) error { 34 projects, err := cli.GetClient().GetProjects() 35 if err != nil { 36 return err 37 } 38 printList(projects, 0, 0, 0, nil) 39 return nil 40 }) 41 42 shellutils.R(&RegionListOptions{}, "domain-list", "List domains", func(cli *huawei.SRegion, args *RegionListOptions) error { 43 domains, err := cli.GetClient().GetDomains() 44 if err != nil { 45 return err 46 } 47 printList(domains, 0, 0, 0, nil) 48 return nil 49 }) 50 51 shellutils.R(&RegionListOptions{}, "capabilities", "Get capabilities", func(cli *huawei.SRegion, args *RegionListOptions) error { 52 capabilities := cli.GetClient().GetCapabilities() 53 fmt.Println(capabilities) 54 return nil 55 }) 56 57 shellutils.R(&RegionListOptions{}, "subaccount-list", "List account", func(cli *huawei.SRegion, args *RegionListOptions) error { 58 accounts, err := cli.GetClient().GetSubAccounts() 59 if err != nil { 60 return err 61 } 62 printList(accounts, 0, 0, 0, nil) 63 return nil 64 }) 65 66 type SProjectRoleListOptions struct { 67 GROUPID string 68 } 69 70 shellutils.R(&SProjectRoleListOptions{}, "mos-role-list", "List account", func(cli *huawei.SRegion, args *SProjectRoleListOptions) error { 71 ret, err := cli.GetClient().GetMosRoles(args.GROUPID) 72 if err != nil { 73 return err 74 } 75 printList(ret, 0, 0, 0, nil) 76 return nil 77 }) 78 79 }