yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/hcso/shell/obs.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  	huawei "yunion.io/x/cloudmux/pkg/multicloud/hcso"
    19  	"yunion.io/x/onecloud/pkg/util/printutils"
    20  	"yunion.io/x/onecloud/pkg/util/shellutils"
    21  )
    22  
    23  func init() {
    24  	type ObsBucketListOptions struct {
    25  	}
    26  	shellutils.R(&ObsBucketListOptions{}, "obs-list", "List all buckets", func(cli *huawei.SRegion, args *ObsBucketListOptions) error {
    27  		buckets, err := cli.GetIBuckets()
    28  		if err != nil {
    29  			return err
    30  		}
    31  		printList(buckets, 0, 0, 0, nil)
    32  		return nil
    33  	})
    34  	shellutils.R(&ObsBucketListOptions{}, "bucket-list", "List all buckets", func(cli *huawei.SRegion, args *ObsBucketListOptions) error {
    35  		buckets, err := cli.GetIBuckets()
    36  		if err != nil {
    37  			return err
    38  		}
    39  		printutils.PrintGetterList(buckets, nil)
    40  		return nil
    41  	})
    42  
    43  	type ObsBucketShowOptions struct {
    44  		BUCKET string `help:"bucket name to show"`
    45  	}
    46  	shellutils.R(&ObsBucketShowOptions{}, "obs-show", "Show bucket detail", func(cli *huawei.SRegion, args *ObsBucketShowOptions) error {
    47  		bucket, err := cli.GetIBucketById(args.BUCKET)
    48  		if err != nil {
    49  			return err
    50  		}
    51  		printObject(bucket)
    52  		return nil
    53  	})
    54  
    55  	type ObsBucketCreateOptions struct {
    56  		BUCKET       string `help:"bucket name to show"`
    57  		StorageClass string `help:"storage class"`
    58  		Acl          string `help:"acl"`
    59  	}
    60  	shellutils.R(&ObsBucketCreateOptions{}, "obs-create", "Create new OBS bucket", func(cli *huawei.SRegion, args *ObsBucketCreateOptions) error {
    61  		err := cli.CreateIBucket(args.BUCKET, args.StorageClass, args.Acl)
    62  		if err != nil {
    63  			return err
    64  		}
    65  		return nil
    66  	})
    67  
    68  	shellutils.R(&ObsBucketShowOptions{}, "obs-delete", "Delete OBS bucket", func(cli *huawei.SRegion, args *ObsBucketShowOptions) error {
    69  		err := cli.DeleteIBucket(args.BUCKET)
    70  		if err != nil {
    71  			return err
    72  		}
    73  		return nil
    74  	})
    75  }