yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/hcso/quota.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 hcso
    16  
    17  import (
    18  	"yunion.io/x/pkg/errors"
    19  
    20  	"yunion.io/x/cloudmux/pkg/cloudprovider"
    21  )
    22  
    23  type SQuota struct {
    24  	Min   int
    25  	Quota int
    26  	Type  string
    27  	Used  int
    28  }
    29  
    30  func (q *SQuota) GetGlobalId() string {
    31  	return q.Type
    32  }
    33  
    34  func (q *SQuota) GetQuotaType() string {
    35  	return q.Type
    36  }
    37  
    38  func (q *SQuota) GetName() string {
    39  	return q.Type
    40  }
    41  
    42  func (q *SQuota) GetDesc() string {
    43  	return ""
    44  }
    45  
    46  func (q *SQuota) GetMaxQuotaCount() int {
    47  	return q.Quota
    48  }
    49  
    50  func (q *SQuota) GetCurrentQuotaUsedCount() int {
    51  	return q.Used
    52  }
    53  
    54  func (self *SRegion) GetQuotas() ([]SQuota, error) {
    55  	quotas := []SQuota{}
    56  	params := map[string]string{}
    57  	result, err := self.ecsClient.Quotas.Get("", params)
    58  	if err != nil {
    59  		return nil, errors.Wrap(err, "Quotas.List")
    60  	}
    61  
    62  	err = result.Unmarshal(&quotas, "resources")
    63  	if err != nil {
    64  		return nil, errors.Wrap(err, "result.Unmarshal")
    65  	}
    66  
    67  	return quotas, nil
    68  }
    69  
    70  func (region *SRegion) GetICloudQuotas() ([]cloudprovider.ICloudQuota, error) {
    71  	quotas, err := region.GetQuotas()
    72  	if err != nil {
    73  		return nil, errors.Wrap(err, "GetQuotas")
    74  	}
    75  	ret := []cloudprovider.ICloudQuota{}
    76  	for i := range quotas {
    77  		ret = append(ret, &quotas[i])
    78  	}
    79  	return ret, nil
    80  }