Skip to content

Commit cc1fc86

Browse files
committed
Support multi language.
1 parent 98f9a52 commit cc1fc86

File tree

148 files changed

+2182
-633
lines changed

Some content is hidden

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

148 files changed

+2182
-633
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-11-02 Version: 2.11.1
2+
- Support multi language.
3+
14
2021-11-02 Version: 2.16.0
25
- Add API UploadStreamByURL.
36

aliyun-net-sdk-foas/Foas/Model/V20181111/BatchGetInstanceRunSummaryRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public BatchGetInstanceRunSummaryRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/runsummary";

aliyun-net-sdk-foas/Foas/Model/V20181111/BindQueueRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public BindQueueRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/queue";

aliyun-net-sdk-foas/Foas/Model/V20181111/CalcPlanJsonResourceRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CalcPlanJsonResourceRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/jobs/[jobName]/planjson-resource";

aliyun-net-sdk-foas/Foas/Model/V20181111/CheckRawPlanJsonRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CheckRawPlanJsonRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/jobs/[jobName]/planjson/check";

aliyun-net-sdk-foas/Foas/Model/V20181111/CommitJobRequest.cs

+114-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CommitJobRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/jobs/[jobName]/commit";
@@ -44,6 +44,10 @@ public CommitJobRequest()
4444

4545
private string projectName;
4646

47+
private bool? recommendOnly;
48+
49+
private string suspendPeriods;
50+
4751
private float? maxCU;
4852

4953
private string configure;
@@ -52,6 +56,8 @@ public CommitJobRequest()
5256

5357
private string jobName;
5458

59+
private List<SuspendPeriodParam> suspendPeriodParams = new List<SuspendPeriodParam>(){ };
60+
5561
public string ProjectName
5662
{
5763
get
@@ -65,6 +71,32 @@ public string ProjectName
6571
}
6672
}
6773

74+
public bool? RecommendOnly
75+
{
76+
get
77+
{
78+
return recommendOnly;
79+
}
80+
set
81+
{
82+
recommendOnly = value;
83+
DictionaryUtil.Add(BodyParameters, "recommendOnly", value.ToString());
84+
}
85+
}
86+
87+
public string SuspendPeriods
88+
{
89+
get
90+
{
91+
return suspendPeriods;
92+
}
93+
set
94+
{
95+
suspendPeriods = value;
96+
DictionaryUtil.Add(BodyParameters, "suspendPeriods", value);
97+
}
98+
}
99+
68100
public float? MaxCU
69101
{
70102
get
@@ -115,6 +147,86 @@ public string JobName
115147
jobName = value;
116148
DictionaryUtil.Add(PathParameters, "jobName", value);
117149
}
150+
}
151+
152+
public List<SuspendPeriodParam> SuspendPeriodParams
153+
{
154+
get
155+
{
156+
return suspendPeriodParams;
157+
}
158+
159+
set
160+
{
161+
suspendPeriodParams = value;
162+
for (int i = 0; i < suspendPeriodParams.Count; i++)
163+
{
164+
DictionaryUtil.Add(BodyParameters,"suspendPeriodParam." + (i + 1) + ".endTime", suspendPeriodParams[i].EndTime);
165+
DictionaryUtil.Add(BodyParameters,"suspendPeriodParam." + (i + 1) + ".startTime", suspendPeriodParams[i].StartTime);
166+
DictionaryUtil.Add(BodyParameters,"suspendPeriodParam." + (i + 1) + ".plan", suspendPeriodParams[i].Plan);
167+
DictionaryUtil.Add(BodyParameters,"suspendPeriodParam." + (i + 1) + ".policy", suspendPeriodParams[i].Policy);
168+
}
169+
}
170+
}
171+
172+
public class SuspendPeriodParam
173+
{
174+
175+
private string endTime;
176+
177+
private string startTime;
178+
179+
private string plan;
180+
181+
private string policy;
182+
183+
public string EndTime
184+
{
185+
get
186+
{
187+
return endTime;
188+
}
189+
set
190+
{
191+
endTime = value;
192+
}
193+
}
194+
195+
public string StartTime
196+
{
197+
get
198+
{
199+
return startTime;
200+
}
201+
set
202+
{
203+
startTime = value;
204+
}
205+
}
206+
207+
public string Plan
208+
{
209+
get
210+
{
211+
return plan;
212+
}
213+
set
214+
{
215+
plan = value;
216+
}
217+
}
218+
219+
public string Policy
220+
{
221+
get
222+
{
223+
return policy;
224+
}
225+
set
226+
{
227+
policy = value;
228+
}
229+
}
118230
}
119231

120232
public override CommitJobResponse GetResponse(UnmarshallerContext unmarshallerContext)

aliyun-net-sdk-foas/Foas/Model/V20181111/CreateCellClusterOrderRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CreateCellClusterOrderRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/realtime-compute/cell/buy";

aliyun-net-sdk-foas/Foas/Model/V20181111/CreateClusterRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CreateClusterRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/clusters";

aliyun-net-sdk-foas/Foas/Model/V20181111/CreateFolderRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CreateFolderRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/folders";

aliyun-net-sdk-foas/Foas/Model/V20181111/CreateJobRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CreateJobRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/jobs";

aliyun-net-sdk-foas/Foas/Model/V20181111/CreatePackageRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CreatePackageRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/packages";

aliyun-net-sdk-foas/Foas/Model/V20181111/CreateProjectRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CreateProjectRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects";

aliyun-net-sdk-foas/Foas/Model/V20181111/CreateQueueRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public CreateQueueRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/clusters/[clusterId]/queue";

aliyun-net-sdk-foas/Foas/Model/V20181111/DeleteFolderRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DeleteFolderRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/folders";

aliyun-net-sdk-foas/Foas/Model/V20181111/DeleteJobRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DeleteJobRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/jobs/[jobName]";

aliyun-net-sdk-foas/Foas/Model/V20181111/DeletePackageRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DeletePackageRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]/packages/[packageName]";

aliyun-net-sdk-foas/Foas/Model/V20181111/DeleteProjectRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DeleteProjectRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/projects/[projectName]";

aliyun-net-sdk-foas/Foas/Model/V20181111/DeleteQueueRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DeleteQueueRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/clusters/[clusterId]/queue";

aliyun-net-sdk-foas/Foas/Model/V20181111/DestroyClusterRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public DestroyClusterRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/clusters/[clusterId]";

aliyun-net-sdk-foas/Foas/Model/V20181111/ExpandClusterRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public ExpandClusterRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/clusters/[clusterId]/expand";

aliyun-net-sdk-foas/Foas/Model/V20181111/GetClusterDetailsRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public GetClusterDetailsRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/clusters/[clusterId]/details";

aliyun-net-sdk-foas/Foas/Model/V20181111/GetClusterEngineVersionsRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public GetClusterEngineVersionsRequest()
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.foas.Endpoint.endpointRegionalType, null);
3939
}
4040
Protocol = ProtocolType.HTTPS;
4141
UriPattern = "/api/v2/clusters/[clusterId]/engineversions";

0 commit comments

Comments
 (0)