yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/azure/shell/disk.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/multicloud/azure" 19 "yunion.io/x/onecloud/pkg/util/shellutils" 20 ) 21 22 func init() { 23 type DiskListOptions struct { 24 } 25 shellutils.R(&DiskListOptions{}, "disk-list", "List disks", func(cli *azure.SRegion, args *DiskListOptions) error { 26 disks, err := cli.GetDisks() 27 if err != nil { 28 return err 29 } 30 printList(disks, len(disks), 0, 0, []string{}) 31 return nil 32 }) 33 34 type DiskCreateOptions struct { 35 NAME string `help:"Disk name"` 36 STORAGETYPE string `help:"Storage type" choices:"Standard_LRS|Premium_LRS|StandardSSD_LRS"` 37 SizeGb int32 `help:"Disk size"` 38 Image string `help:"Image id"` 39 SnapshotId string `help:"Create disk by snapshot"` 40 ResourceGroup string `help:"ResourceGroup Name"` 41 } 42 43 shellutils.R(&DiskCreateOptions{}, "disk-create", "Create disk", func(cli *azure.SRegion, args *DiskCreateOptions) error { 44 disk, err := cli.CreateDisk(args.STORAGETYPE, args.NAME, args.SizeGb, args.Image, args.SnapshotId, args.ResourceGroup) 45 if err != nil { 46 return err 47 } 48 printObject(disk) 49 return nil 50 }) 51 52 type DiskOptions struct { 53 ID string `help:"Disk ID"` 54 } 55 56 shellutils.R(&DiskOptions{}, "disk-show", "Show disk", func(cli *azure.SRegion, args *DiskOptions) error { 57 disk, err := cli.GetDisk(args.ID) 58 if err != nil { 59 return err 60 } 61 printObject(disk) 62 return nil 63 }) 64 65 shellutils.R(&DiskOptions{}, "classic-disk-show", "Show classic disk", func(cli *azure.SRegion, args *DiskOptions) error { 66 disk, err := cli.GetClassicDisk(args.ID) 67 if err != nil { 68 return err 69 } 70 printObject(disk) 71 return nil 72 }) 73 74 shellutils.R(&DiskOptions{}, "disk-delete", "Delete disks", func(cli *azure.SRegion, args *DiskOptions) error { 75 return cli.DeleteDisk(args.ID) 76 }) 77 78 type DiskResizeOptions struct { 79 ID string `help:"Disk ID"` 80 SIZE int32 `help:"Disk SizeGb"` 81 } 82 83 shellutils.R(&DiskResizeOptions{}, "disk-resize", "Delete disks", func(cli *azure.SRegion, args *DiskResizeOptions) error { 84 return cli.ResizeDisk(args.ID, args.SIZE) 85 }) 86 }