@@ -125,6 +125,16 @@ class OutPublicIpInfoSchema(schema.ResponseSchema):
125
125
}
126
126
127
127
128
+ class ForwardTaskSchema (schema .ResponseSchema ):
129
+ """ForwardTask - 全球统一接入转发端口任务信息"""
130
+
131
+ fields = {
132
+ "Port" : fields .Int (required = True , load_from = "Port" ),
133
+ "Protocol" : fields .Str (required = True , load_from = "Protocol" ),
134
+ "RSPort" : fields .Int (required = True , load_from = "RSPort" ),
135
+ }
136
+
137
+
128
138
class AccelerationAreaInfosSchema (schema .ResponseSchema ):
129
139
"""AccelerationAreaInfos - 加速大区信息"""
130
140
@@ -136,16 +146,6 @@ class AccelerationAreaInfosSchema(schema.ResponseSchema):
136
146
}
137
147
138
148
139
- class ForwardTaskSchema (schema .ResponseSchema ):
140
- """ForwardTask - 全球统一接入转发端口任务信息"""
141
-
142
- fields = {
143
- "Port" : fields .Int (required = True , load_from = "Port" ),
144
- "Protocol" : fields .Str (required = True , load_from = "Protocol" ),
145
- "RSPort" : fields .Int (required = True , load_from = "RSPort" ),
146
- }
147
-
148
-
149
149
class ForwardInfoSchema (schema .ResponseSchema ):
150
150
"""ForwardInfo - 全球统一接入加速实例配置信息"""
151
151
@@ -227,34 +227,34 @@ class UPathSetSchema(schema.ResponseSchema):
227
227
}
228
228
229
229
230
- class UGAL7ForwarderSchema (schema .ResponseSchema ):
231
- """UGAL7Forwarder - UGA实例 7层转发器信息 """
230
+ class UGAATaskSchema (schema .ResponseSchema ):
231
+ """UGAATask - 用户在UGAA实例下配置的多端口任务 """
232
232
233
233
fields = {
234
234
"Port" : fields .Int (required = True , load_from = "Port" ),
235
235
"Protocol" : fields .Str (required = True , load_from = "Protocol" ),
236
- "RSPort" : fields .Int (required = True , load_from = "RSPort" ),
237
- "SSLId" : fields .Str (required = False , load_from = "SSLId" ),
238
- "SSLName" : fields .Str (required = False , load_from = "SSLName" ),
239
236
}
240
237
241
238
242
- class UGAL4ForwarderSchema (schema .ResponseSchema ):
243
- """UGAL4Forwarder - UGA实例 4层转发器信息 """
239
+ class UGAL7ForwarderSchema (schema .ResponseSchema ):
240
+ """UGAL7Forwarder - UGA实例 7层转发器信息 """
244
241
245
242
fields = {
246
243
"Port" : fields .Int (required = True , load_from = "Port" ),
247
244
"Protocol" : fields .Str (required = True , load_from = "Protocol" ),
248
245
"RSPort" : fields .Int (required = True , load_from = "RSPort" ),
246
+ "SSLId" : fields .Str (required = False , load_from = "SSLId" ),
247
+ "SSLName" : fields .Str (required = False , load_from = "SSLName" ),
249
248
}
250
249
251
250
252
- class UGAATaskSchema (schema .ResponseSchema ):
253
- """UGAATask - 用户在UGAA实例下配置的多端口任务 """
251
+ class UGAL4ForwarderSchema (schema .ResponseSchema ):
252
+ """UGAL4Forwarder - UGA实例 4层转发器信息 """
254
253
255
254
fields = {
256
255
"Port" : fields .Int (required = True , load_from = "Port" ),
257
256
"Protocol" : fields .Str (required = True , load_from = "Protocol" ),
257
+ "RSPort" : fields .Int (required = True , load_from = "RSPort" ),
258
258
}
259
259
260
260
0 commit comments