Skip to content

Commit 5de6339

Browse files
committed
Generated 2019-05-06 for sae.
1 parent 403b2b8 commit 5de6339

File tree

80 files changed

+4427
-45
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+4427
-45
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-04-22 Version: 1.22.6
2+
- Generated 2019-05-06 for `sae`.
3+
14
2024-04-12 Version: 1.0.4
25
- Generated 2023-09-30 for `tingwu`.
36

aliyun-net-sdk-sae/Sae/Model/V20190506/BatchStartApplicationsRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ public BatchStartApplicationsRequest()
4545

4646
private string namespaceId;
4747

48+
private string version;
49+
4850
public string AppIds
4951
{
5052
get
@@ -71,6 +73,19 @@ public string NamespaceId
7173
}
7274
}
7375

76+
public string Version
77+
{
78+
get
79+
{
80+
return version;
81+
}
82+
set
83+
{
84+
version = value;
85+
DictionaryUtil.Add(QueryParameters, "Version", value);
86+
}
87+
}
88+
7489
public override bool CheckShowJsonItemName()
7590
{
7691
return false;

aliyun-net-sdk-sae/Sae/Model/V20190506/BatchStopApplicationsRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ public BatchStopApplicationsRequest()
4545

4646
private string namespaceId;
4747

48+
private string version;
49+
4850
public string AppIds
4951
{
5052
get
@@ -71,6 +73,19 @@ public string NamespaceId
7173
}
7274
}
7375

76+
public string Version
77+
{
78+
get
79+
{
80+
return version;
81+
}
82+
set
83+
{
84+
version = value;
85+
DictionaryUtil.Add(QueryParameters, "Version", value);
86+
}
87+
}
88+
7489
public override bool CheckShowJsonItemName()
7590
{
7691
return false;

aliyun-net-sdk-sae/Sae/Model/V20190506/CreateApplicationRequest.cs

+60
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ public CreateApplicationRequest()
6969

7070
private string namespaceId;
7171

72+
private string saeVersion;
73+
7274
private string pvtzDiscoverySvc;
7375

7476
private string configMapMountDesc;
@@ -85,12 +87,16 @@ public CreateApplicationRequest()
8587

8688
private string vSwitchId;
8789

90+
private string enableEbpf;
91+
8892
private string packageType;
8993

9094
private string postStart;
9195

9296
private bool? associateEip;
9397

98+
private string appSource;
99+
94100
private string webContainer;
95101

96102
private int? memory;
@@ -145,6 +151,8 @@ public CreateApplicationRequest()
145151

146152
private string imageUrl;
147153

154+
private string php;
155+
148156
private string pythonModules;
149157

150158
private string phpConfigLocation;
@@ -331,6 +339,19 @@ public string NamespaceId
331339
}
332340
}
333341

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+
334355
public string PvtzDiscoverySvc
335356
{
336357
get
@@ -435,6 +456,19 @@ public string VSwitchId
435456
}
436457
}
437458

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+
438472
public string PackageType
439473
{
440474
get
@@ -474,6 +508,19 @@ public bool? AssociateEip
474508
}
475509
}
476510

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+
477524
public string WebContainer
478525
{
479526
get
@@ -825,6 +872,19 @@ public string ImageUrl
825872
}
826873
}
827874

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+
828888
public string PythonModules
829889
{
830890
get

aliyun-net-sdk-sae/Sae/Model/V20190506/CreateApplicationScalingRuleResponse.cs

+140
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ public class CreateApplicationScalingRuleResponse : AcsResponse
2929

3030
private string traceId;
3131

32+
private string message;
33+
34+
private string errorCode;
35+
36+
private string code;
37+
38+
private bool? success;
39+
3240
private CreateApplicationScalingRule_Data data;
3341

3442
public string RequestId
@@ -55,6 +63,54 @@ public string TraceId
5563
}
5664
}
5765

66+
public string Message
67+
{
68+
get
69+
{
70+
return message;
71+
}
72+
set
73+
{
74+
message = value;
75+
}
76+
}
77+
78+
public string ErrorCode
79+
{
80+
get
81+
{
82+
return errorCode;
83+
}
84+
set
85+
{
86+
errorCode = value;
87+
}
88+
}
89+
90+
public string Code
91+
{
92+
get
93+
{
94+
return code;
95+
}
96+
set
97+
{
98+
code = value;
99+
}
100+
}
101+
102+
public bool? Success
103+
{
104+
get
105+
{
106+
return success;
107+
}
108+
set
109+
{
110+
success = value;
111+
}
112+
}
113+
58114
public CreateApplicationScalingRule_Data Data
59115
{
60116
get
@@ -262,6 +318,10 @@ public class CreateApplicationScalingRule_Schedule
262318

263319
private int? targetReplicas;
264320

321+
private int? maxReplicas;
322+
323+
private int? minReplicas;
324+
265325
public string AtTime
266326
{
267327
get
@@ -285,6 +345,30 @@ public int? TargetReplicas
285345
targetReplicas = value;
286346
}
287347
}
348+
349+
public int? MaxReplicas
350+
{
351+
get
352+
{
353+
return maxReplicas;
354+
}
355+
set
356+
{
357+
maxReplicas = value;
358+
}
359+
}
360+
361+
public int? MinReplicas
362+
{
363+
get
364+
{
365+
return minReplicas;
366+
}
367+
set
368+
{
369+
minReplicas = value;
370+
}
371+
}
288372
}
289373
}
290374

@@ -340,6 +424,14 @@ public class CreateApplicationScalingRule_Metric1
340424

341425
private string metricType;
342426

427+
private string slbProject;
428+
429+
private string slbLogstore;
430+
431+
private string vport;
432+
433+
private string slbId;
434+
343435
public int? MetricTargetAverageUtilization
344436
{
345437
get
@@ -363,6 +455,54 @@ public string MetricType
363455
metricType = value;
364456
}
365457
}
458+
459+
public string SlbProject
460+
{
461+
get
462+
{
463+
return slbProject;
464+
}
465+
set
466+
{
467+
slbProject = value;
468+
}
469+
}
470+
471+
public string SlbLogstore
472+
{
473+
get
474+
{
475+
return slbLogstore;
476+
}
477+
set
478+
{
479+
slbLogstore = value;
480+
}
481+
}
482+
483+
public string Vport
484+
{
485+
get
486+
{
487+
return vport;
488+
}
489+
set
490+
{
491+
vport = value;
492+
}
493+
}
494+
495+
public string SlbId
496+
{
497+
get
498+
{
499+
return slbId;
500+
}
501+
set
502+
{
503+
slbId = value;
504+
}
505+
}
366506
}
367507
}
368508
}

aliyun-net-sdk-sae/Sae/Model/V20190506/CreateGreyTagRouteRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ public CreateGreyTagRouteRequest()
4949

5050
private string dubboRules;
5151

52+
private string albRules;
53+
5254
private string scRules;
5355

5456
public string AppId
@@ -103,6 +105,19 @@ public string DubboRules
103105
}
104106
}
105107

108+
public string AlbRules
109+
{
110+
get
111+
{
112+
return albRules;
113+
}
114+
set
115+
{
116+
albRules = value;
117+
DictionaryUtil.Add(QueryParameters, "AlbRules", value);
118+
}
119+
}
120+
106121
public string ScRules
107122
{
108123
get

0 commit comments

Comments
 (0)