| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package qcloud
- import (
- "yunion.io/x/log"
- "yunion.io/x/pkg/errors"
- "yunion.io/x/cloudmux/pkg/cloudprovider"
- )
- type SElasticcacheDeal struct {
- region *SRegion
- DealID string `json:"DealId"`
- DealName string `json:"DealName"`
- ZoneID int64 `json:"ZoneId"`
- GoodsNum int64 `json:"GoodsNum"`
- Creater string `json:"Creater"`
- CreatTime string `json:"CreatTime"`
- OverdueTime string `json:"OverdueTime"`
- EndTime string `json:"EndTime"`
- Status int64 `json:"Status"`
- Description string `json:"Description"`
- Price int64 `json:"Price"`
- InstanceIDS []string `json:"InstanceIds"`
- }
- // https://cloud.tencent.com/document/product/239/30602
- func (self *SRegion) GetElasticcacheIdByDeal(dealId string) (string, error) {
- params := map[string]string{}
- params["DealIds.0"] = dealId
- resp, err := self.redisRequest("DescribeInstanceDealDetail", params)
- if err != nil {
- return "", errors.Wrap(err, "DescribeInstanceDealDetail")
- }
- ret := []SElasticcacheDeal{}
- err = resp.Unmarshal(&ret, "DealDetails")
- if err != nil {
- return "", errors.Wrap(err, "DealDetails")
- }
- if len(ret) == 0 {
- return "", cloudprovider.ErrNotFound
- } else if len(ret) > 1 {
- log.Infof("%#v", ret)
- return "", cloudprovider.ErrDuplicateId
- } else {
- if ret[0].InstanceIDS != nil && len(ret[0].InstanceIDS) == 1 {
- return ret[0].InstanceIDS[0], nil
- } else {
- log.Infof("%#v", ret)
- return "", cloudprovider.ErrNotFound
- }
- }
- }
|