| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- // 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 zstack
- import (
- "fmt"
- api "yunion.io/x/cloudmux/pkg/apis/compute"
- "yunion.io/x/cloudmux/pkg/cloudprovider"
- "yunion.io/x/cloudmux/pkg/multicloud"
- )
- type SVpc struct {
- multicloud.SVpc
- ZStackTags
- region *SRegion
- iwires []cloudprovider.ICloudWire
- }
- func (vpc *SVpc) GetId() string {
- return fmt.Sprintf("%s/vpc", vpc.region.GetGlobalId())
- }
- func (vpc *SVpc) GetName() string {
- return fmt.Sprintf("%s-VPC", vpc.region.client.cpcfg.Name)
- }
- func (vpc *SVpc) GetGlobalId() string {
- return vpc.GetId()
- }
- func (vpc *SVpc) IsEmulated() bool {
- return true
- }
- func (vpc *SVpc) GetIsDefault() bool {
- return true
- }
- func (vpc *SVpc) GetCidrBlock() string {
- return ""
- }
- func (vpc *SVpc) GetStatus() string {
- return api.VPC_STATUS_AVAILABLE
- }
- func (vpc *SVpc) Refresh() error {
- return nil
- }
- func (vpc *SVpc) GetRegion() cloudprovider.ICloudRegion {
- return vpc.region
- }
- func (vpc *SVpc) GetIWires() ([]cloudprovider.ICloudWire, error) {
- if vpc.iwires == nil || len(vpc.iwires) == 0 {
- vpc.iwires = []cloudprovider.ICloudWire{}
- wires, err := vpc.region.GetWires("", "", "")
- if err != nil {
- return nil, err
- }
- for i := 0; i < len(wires); i++ {
- wires[i].vpc = vpc
- vpc.iwires = append(vpc.iwires, &wires[i])
- }
- }
- return vpc.iwires, nil
- }
- func (vpc *SVpc) GetIWireById(wireId string) (cloudprovider.ICloudWire, error) {
- wire, err := vpc.region.GetWire(wireId)
- if err != nil {
- return nil, err
- }
- wire.vpc = vpc
- return wire, nil
- }
- func (vpc *SVpc) GetISecurityGroups() ([]cloudprovider.ICloudSecurityGroup, error) {
- return []cloudprovider.ICloudSecurityGroup{}, nil
- }
- func (vpc *SVpc) GetIRouteTables() ([]cloudprovider.ICloudRouteTable, error) {
- return nil, cloudprovider.ErrNotSupported
- }
- func (self *SVpc) GetIRouteTableById(routeTableId string) (cloudprovider.ICloudRouteTable, error) {
- return nil, cloudprovider.ErrNotSupported
- }
- func (vpc *SVpc) Delete() error {
- return nil
- }
|