mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 00:24:07 +08:00
107 lines
2.9 KiB
Go
107 lines
2.9 KiB
Go
// 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 apsara
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
"yunion.io/x/pkg/errors"
|
|
|
|
api "yunion.io/x/onecloud/pkg/apis/compute"
|
|
"yunion.io/x/onecloud/pkg/multicloud"
|
|
)
|
|
|
|
type SElasticcacheAcl struct {
|
|
multicloud.SElasticcacheAclBase
|
|
multicloud.ApsaraTags
|
|
|
|
cacheDB *SElasticcache
|
|
|
|
SecurityIPList string `json:"SecurityIpList"`
|
|
SecurityIPGroupAttribute string `json:"SecurityIpGroupAttribute"`
|
|
SecurityIPGroupName string `json:"SecurityIpGroupName"`
|
|
}
|
|
|
|
func (self *SElasticcacheAcl) GetId() string {
|
|
return fmt.Sprintf("%s/%s", self.cacheDB.GetId(), self.SecurityIPGroupName)
|
|
}
|
|
|
|
func (self *SElasticcacheAcl) GetName() string {
|
|
return self.SecurityIPGroupName
|
|
}
|
|
|
|
func (self *SElasticcacheAcl) GetGlobalId() string {
|
|
return self.GetId()
|
|
}
|
|
|
|
func (self *SElasticcacheAcl) GetStatus() string {
|
|
return api.ELASTIC_CACHE_ACL_STATUS_AVAILABLE
|
|
}
|
|
|
|
func (self *SElasticcacheAcl) Refresh() error {
|
|
iacl, err := self.cacheDB.GetICloudElasticcacheAcl(self.GetId())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = jsonutils.Update(self, iacl.(*SElasticcacheAcl))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (self *SElasticcacheAcl) GetIpList() string {
|
|
return self.SecurityIPList
|
|
}
|
|
|
|
// https://help.apsara.com/document_detail/61002.html?spm=a2c4g.11186623.6.764.3752782fJpbjxH
|
|
func (self *SElasticcacheAcl) Delete() error {
|
|
params := make(map[string]string)
|
|
params["InstanceId"] = self.cacheDB.GetId()
|
|
params["ModifyMode"] = "Delete"
|
|
params["SecurityIpGroupName"] = self.GetName()
|
|
params["SecurityIps"] = self.SecurityIPList
|
|
|
|
err := DoAction(self.cacheDB.region.kvsRequest, "ModifySecurityIps", params, nil, nil)
|
|
if err != nil {
|
|
return errors.Wrap(err, "elasticcacheAcl.Delete")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// https://help.apsara.com/document_detail/61002.html?spm=a2c4g.11186623.6.764.3752782fJpbjxH
|
|
func (self *SElasticcacheAcl) UpdateAcl(securityIps string) error {
|
|
return self.cacheDB.region.createAcl(self.cacheDB.GetId(), self.GetName(), securityIps)
|
|
}
|
|
|
|
func (self *SRegion) createAcl(instanceId, aclName, securityIps string) error {
|
|
params := make(map[string]string)
|
|
params["InstanceId"] = instanceId
|
|
params["SecurityIpGroupName"] = aclName
|
|
params["ModifyMode"] = "Cover"
|
|
params["SecurityIps"] = securityIps
|
|
|
|
err := DoAction(self.kvsRequest, "ModifySecurityIps", params, nil, nil)
|
|
if err != nil {
|
|
return errors.Wrap(err, "region.UpdateAcl")
|
|
}
|
|
|
|
return nil
|
|
}
|