@@ -69,6 +69,8 @@ public CreateApplicationRequest()
69
69
70
70
private string namespaceId ;
71
71
72
+ private string saeVersion ;
73
+
72
74
private string pvtzDiscoverySvc ;
73
75
74
76
private string configMapMountDesc ;
@@ -85,12 +87,16 @@ public CreateApplicationRequest()
85
87
86
88
private string vSwitchId ;
87
89
90
+ private string enableEbpf ;
91
+
88
92
private string packageType ;
89
93
90
94
private string postStart ;
91
95
92
96
private bool ? associateEip ;
93
97
98
+ private string appSource ;
99
+
94
100
private string webContainer ;
95
101
96
102
private int ? memory ;
@@ -145,6 +151,8 @@ public CreateApplicationRequest()
145
151
146
152
private string imageUrl ;
147
153
154
+ private string php ;
155
+
148
156
private string pythonModules ;
149
157
150
158
private string phpConfigLocation ;
@@ -331,6 +339,19 @@ public string NamespaceId
331
339
}
332
340
}
333
341
342
+ public string SaeVersion
343
+ {
344
+ get
345
+ {
346
+ return saeVersion ;
347
+ }
348
+ set
349
+ {
350
+ saeVersion = value ;
351
+ DictionaryUtil . Add ( QueryParameters , "SaeVersion" , value ) ;
352
+ }
353
+ }
354
+
334
355
public string PvtzDiscoverySvc
335
356
{
336
357
get
@@ -435,6 +456,19 @@ public string VSwitchId
435
456
}
436
457
}
437
458
459
+ public string EnableEbpf
460
+ {
461
+ get
462
+ {
463
+ return enableEbpf ;
464
+ }
465
+ set
466
+ {
467
+ enableEbpf = value ;
468
+ DictionaryUtil . Add ( QueryParameters , "EnableEbpf" , value ) ;
469
+ }
470
+ }
471
+
438
472
public string PackageType
439
473
{
440
474
get
@@ -474,6 +508,19 @@ public bool? AssociateEip
474
508
}
475
509
}
476
510
511
+ public string AppSource
512
+ {
513
+ get
514
+ {
515
+ return appSource ;
516
+ }
517
+ set
518
+ {
519
+ appSource = value ;
520
+ DictionaryUtil . Add ( QueryParameters , "AppSource" , value ) ;
521
+ }
522
+ }
523
+
477
524
public string WebContainer
478
525
{
479
526
get
@@ -825,6 +872,19 @@ public string ImageUrl
825
872
}
826
873
}
827
874
875
+ public string Php
876
+ {
877
+ get
878
+ {
879
+ return php ;
880
+ }
881
+ set
882
+ {
883
+ php = value ;
884
+ DictionaryUtil . Add ( BodyParameters , "Php" , value ) ;
885
+ }
886
+ }
887
+
828
888
public string PythonModules
829
889
{
830
890
get
0 commit comments