增加高防相应对象

This commit is contained in:
GoEdgeLab
2023-02-22 17:36:41 +08:00
parent 7f262a764a
commit 3ef2654393
26 changed files with 10271 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_ad_network.proto";
// 高防产品
message ADPackage {
int64 id = 1;
bool isOn = 2;
int64 adNetworkId = 3;
int32 protectionBandwidthSize = 4;
string protectionBandwidthUnit = 5;
int32 serverBandwidthSize = 6;
string serverBandwidthUnit = 7;
ADNetwork adNetwork = 30;
string summary = 31; // 概述
int64 countIdleADPackageInstances = 32; // 剩余可用的实例数,只有在获取可用高防产品的时候才会返回
}