| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // 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 proxmox
- import (
- api "yunion.io/x/cloudmux/pkg/apis/compute"
- "yunion.io/x/cloudmux/pkg/cloudprovider"
- "yunion.io/x/cloudmux/pkg/multicloud"
- )
- type SWire struct {
- multicloud.SResourceBase
- ProxmoxTags
- region *SRegion
- }
- func (self *SWire) GetId() string {
- return self.region.GetId()
- }
- func (self *SWire) GetName() string {
- return "Default"
- }
- func (self *SWire) GetGlobalId() string {
- return self.GetId()
- }
- func (self *SWire) CreateINetwork(opts *cloudprovider.SNetworkCreateOptions) (cloudprovider.ICloudNetwork, error) {
- return nil, cloudprovider.ErrNotSupported
- }
- func (self *SWire) GetBandwidth() int {
- return 10000
- }
- func (self *SWire) GetINetworks() ([]cloudprovider.ICloudNetwork, error) {
- nets, err := self.region.GetNetworks()
- if err != nil {
- return nil, err
- }
- ret := []cloudprovider.ICloudNetwork{}
- for i := range nets {
- nets[i].wire = self
- ret = append(ret, &nets[i])
- }
- return ret, nil
- }
- func (self *SWire) GetINetworkById(id string) (cloudprovider.ICloudNetwork, error) {
- net, err := self.region.GetNetwork(id)
- if err != nil {
- return nil, err
- }
- net.wire = self
- return net, nil
- }
- func (self *SWire) GetIVpc() cloudprovider.ICloudVpc {
- return self.region.getVpc()
- }
- func (self *SWire) GetIZone() cloudprovider.ICloudZone {
- zone, _ := self.region.GetZone()
- return zone
- }
- func (self *SWire) GetStatus() string {
- return api.WIRE_STATUS_AVAILABLE
- }
- func (self *SRegion) GetWires() ([]SWire, error) {
- ret := []SWire{}
- wire := &SWire{region: self}
- ret = append(ret, *wire)
- return ret, nil
- }
- func (self *SRegion) GetWire() (*SWire, error) {
- ret := &SWire{region: self}
- return ret, nil
- }
|