| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- // 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 google
- import (
- "fmt"
- "time"
- "yunion.io/x/pkg/errors"
- 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
- GoogleTags
- vpc *SVpc
- shareVpc *SXpnNetwork
- }
- func (wire *SWire) GetId() string {
- if wire.vpc != nil {
- return wire.vpc.GetGlobalId()
- }
- return wire.shareVpc.GetGlobalId()
- }
- func (wire *SWire) GetGlobalId() string {
- name := ""
- if wire.vpc != nil {
- name = wire.vpc.region.Name
- } else {
- name = wire.shareVpc.region.Name
- }
- return fmt.Sprintf("%s-%s", wire.GetId(), name)
- }
- func (wire *SWire) GetName() string {
- if wire.vpc != nil {
- return wire.vpc.GetName()
- }
- return wire.shareVpc.GetName()
- }
- func (wire *SWire) GetCreatedAt() time.Time {
- return time.Time{}
- }
- func (wire *SWire) CreateINetwork(opts *cloudprovider.SNetworkCreateOptions) (cloudprovider.ICloudNetwork, error) {
- return nil, cloudprovider.ErrNotSupported
- }
- func (wire *SWire) GetIVpc() cloudprovider.ICloudVpc {
- if wire.vpc != nil {
- return wire.vpc
- }
- return wire.shareVpc
- }
- func (wire *SWire) GetIZone() cloudprovider.ICloudZone {
- return nil
- }
- func (self *SWire) GetINetworks() ([]cloudprovider.ICloudNetwork, error) {
- network := SNetwork{wire: self}
- return []cloudprovider.ICloudNetwork{&network}, nil
- }
- func (self *SWire) GetINetworkById(id string) (cloudprovider.ICloudNetwork, error) {
- networks, err := self.GetINetworks()
- if err != nil {
- return nil, errors.Wrapf(err, "GetINetwork")
- }
- for i := range networks {
- if networks[i].GetGlobalId() == id {
- return networks[i], nil
- }
- }
- return nil, errors.Wrapf(cloudprovider.ErrNotFound, "%s", id)
- }
- func (wire *SWire) GetBandwidth() int {
- return 0
- }
- func (wire *SWire) GetStatus() string {
- return api.WIRE_STATUS_AVAILABLE
- }
- func (wire *SWire) IsEmulated() bool {
- return true
- }
- func (wire *SWire) Refresh() error {
- return nil
- }
|