| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- // 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 compute
- import (
- "yunion.io/x/onecloud/pkg/apis"
- )
- type GlobalVpcCreateInput struct {
- apis.EnabledStatusInfrasResourceBaseCreateInput
- // 目前仅支持谷歌云创建
- CloudproviderResourceInput
- }
- type GlobalVpcDetails struct {
- apis.EnabledStatusInfrasResourceBaseDetails
- ManagedResourceInfo
- SGlobalVpc
- // vpc数量
- VpcCount int `json:"vpc_count"`
- }
- type GlobalVpcResourceInfo struct {
- // 全局VPC名称
- Globalvpc string `json:"globalvpc"`
- }
- type GlobalVpcResourceInput struct {
- // GlobalVpc ID or Name
- GlobalvpcId string `json:"globalvpc_id"`
- // swagger:ignore
- // Deprecated
- Globalvpc string `json:"globalvpc" yunion-deprecated-by:"globalvpc_id"`
- }
- type GlobalVpcResourceListInput struct {
- GlobalVpcResourceInput
- // 以GlobalVpc的名称排序
- // pattern:asc|desc
- OrderByGlobalvpc string `json:"order_by_globalvpc"`
- }
- type GlobalvpcUpdateInput struct {
- apis.EnabledStatusInfrasResourceBaseUpdateInput
- }
- type GlobalVpcListInput struct {
- apis.EnabledStatusInfrasResourceBaseListInput
- apis.ExternalizedResourceBaseListInput
- ManagedResourceListInput
- // 以关联的vpc数量排序
- // pattern:asc|desc
- OrderByVpcCount string `json:"order_by_vpc_count"`
- }
|