yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/apis/compute/vpcs_const.go (about) 1 // Copyright 2019 Yunion 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package compute 16 17 const ( 18 VPC_STATUS_PENDING = "pending" 19 VPC_STATUS_AVAILABLE = "available" 20 VPC_STATUS_UNAVAILABLE = "unavailable" 21 VPC_STATUS_FAILED = "failed" 22 VPC_STATUS_START_DELETE = "start_delete" 23 VPC_STATUS_DELETING = "deleting" 24 VPC_STATUS_DELETE_FAILED = "delete_failed" 25 VPC_STATUS_DELETED = "deleted" 26 VPC_STATUS_UNKNOWN = "unknown" 27 28 MAX_VPC_PER_REGION = 3 29 30 DEFAULT_VPC_ID = "default" 31 NORMAL_VPC_ID = "normal" // 没有关联VPC的安全组,统一使用normal 32 33 CLASSIC_VPC_NAME = "-" 34 ) 35 36 const ( 37 VPC_PROVIDER_OVN = "ovn" 38 )