mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-19 10:46:58 +08:00
32 lines
972 B
Go
32 lines
972 B
Go
package multicloud
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"yunion.io/x/onecloud/pkg/cloudprovider"
|
|
)
|
|
|
|
type SDBInstanceBase struct {
|
|
SVirtualResourceBase
|
|
}
|
|
|
|
func (instance *SDBInstanceBase) GetDBNetwork() (*cloudprovider.SDBInstanceNetwork, error) {
|
|
return nil, fmt.Errorf("Not Implemented GetDBNetwork")
|
|
}
|
|
|
|
func (instance *SDBInstanceBase) GetExtraIps() ([]cloudprovider.SExtraIp, error) {
|
|
return nil, fmt.Errorf("Not Implemented GetExtraIps")
|
|
}
|
|
|
|
func (instance *SDBInstanceBase) GetIDBInstanceParameters() ([]cloudprovider.ICloudDBInstanceParameter, error) {
|
|
return nil, fmt.Errorf("Not Implemented GetIDBInstanceParameters")
|
|
}
|
|
|
|
func (instance *SDBInstanceBase) GetIDBInstanceDatabases() ([]cloudprovider.ICloudDBInstanceDatabase, error) {
|
|
return nil, fmt.Errorf("Not Implemented GetIDBInstanceDatabases")
|
|
}
|
|
|
|
func (instance *SDBInstanceBase) GetIDBInstanceAccounts() ([]cloudprovider.ICloudDBInstanceAccount, error) {
|
|
return nil, fmt.Errorf("Not Implemented GetIDBInstanceAccounts")
|
|
}
|