yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/qcloud/shell/cdn.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 CdnDomainCreateOption struct { 24 Domain string 25 OriginType string 26 Origins []string 27 CosPrivateAccess string 28 } 29 30 shellutils.R(&CdnDomainCreateOption{}, "cdn-domain-create", "create cdn domain", func(cli *qcloud.SRegion, args *CdnDomainCreateOption) error { 31 err := cli.GetClient().AddCdnDomain(args.Domain, args.OriginType, args.Origins, args.CosPrivateAccess) 32 if err != nil { 33 return err 34 } 35 return nil 36 }) 37 38 type CdnDomainListOption struct { 39 Domains []string 40 Origins []string 41 DomainType string `help:"origin domain type" choices:"cos|cname"` 42 } 43 shellutils.R(&CdnDomainListOption{}, "cdn-domain-list", "list cdn domain", func(cli *qcloud.SRegion, args *CdnDomainListOption) error { 44 domains, err := cli.GetClient().DescribeAllCdnDomains(args.Domains, args.Origins, args.DomainType) 45 if err != nil { 46 return err 47 } 48 printList(domains, len(domains), 0, len(domains), nil) 49 return nil 50 }) 51 52 type DomainOptions struct { 53 DOMAIN string 54 } 55 56 shellutils.R(&DomainOptions{}, "cdn-domain-stop", "Stop cdn domain", func(cli *qcloud.SRegion, args *DomainOptions) error { 57 return cli.GetClient().StopCdnDomain(args.DOMAIN) 58 }) 59 60 shellutils.R(&DomainOptions{}, "cdn-domain-start", "Start cdn domain", func(cli *qcloud.SRegion, args *DomainOptions) error { 61 return cli.GetClient().StartCdnDomain(args.DOMAIN) 62 }) 63 64 shellutils.R(&DomainOptions{}, "cdn-domain-delete", "Stop cdn domain", func(cli *qcloud.SRegion, args *DomainOptions) error { 65 return cli.GetClient().DeleteCdnDomain(args.DOMAIN) 66 }) 67 68 }