yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/qcloud/shell/cam_policy.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/qcloud" 19 "yunion.io/x/onecloud/pkg/util/shellutils" 20 ) 21 22 func init() { 23 type CloudpolicyListOption struct { 24 Keyword string 25 Scope string `choices:"QCS|Local"` 26 Offset int 27 Limit int 28 } 29 30 shellutils.R(&CloudpolicyListOption{}, "cloud-policy-list", "List cloudpolicy", func(cli *qcloud.SRegion, args *CloudpolicyListOption) error { 31 policies, _, err := cli.GetClient().ListPolicies(args.Keyword, args.Scope, args.Offset, args.Limit) 32 if err != nil { 33 return err 34 } 35 printList(policies, 0, 0, 0, nil) 36 return nil 37 }) 38 39 type CloudpolicyShowOption struct { 40 POLICY_ID string 41 } 42 43 shellutils.R(&CloudpolicyShowOption{}, "cloud-policy-show", "Show cloudpolicy", func(cli *qcloud.SRegion, args *CloudpolicyShowOption) error { 44 policy, err := cli.GetClient().GetPolicy(args.POLICY_ID) 45 if err != nil { 46 return err 47 } 48 printObject(policy) 49 return nil 50 }) 51 52 type CloudpolicyIdsOptions struct { 53 IDS []int 54 } 55 56 shellutils.R(&CloudpolicyIdsOptions{}, "cloud-policy-delete", "Delete cloudpolicies", func(cli *qcloud.SRegion, args *CloudpolicyIdsOptions) error { 57 return cli.GetClient().DeletePolicy(args.IDS) 58 }) 59 60 type CloudpolicyCreateOptions struct { 61 NAME string 62 DOCUMENT string 63 Desc string 64 } 65 66 shellutils.R(&CloudpolicyCreateOptions{}, "cloud-policy-create", "Create cloudpolicy", func(cli *qcloud.SRegion, args *CloudpolicyCreateOptions) error { 67 policy, err := cli.GetClient().CreatePolicy(args.NAME, args.DOCUMENT, args.Desc) 68 if err != nil { 69 return err 70 } 71 printObject(policy) 72 return nil 73 }) 74 75 type CloudpolicyUpdateOptions struct { 76 ID int 77 Document string 78 Desc string 79 } 80 81 shellutils.R(&CloudpolicyUpdateOptions{}, "cloud-policy-update", "Update cloudpolicy", func(cli *qcloud.SRegion, args *CloudpolicyUpdateOptions) error { 82 return cli.GetClient().UpdatePolicy(args.ID, args.Document, args.Desc) 83 }) 84 85 }