Skip to content

Commit dc58ca0

Browse files
committed
Supported RequestDecision For YN.
1 parent 55a7ab0 commit dc58ca0

17 files changed

+344
-97
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-12-01 Version: 3.0.1
2+
- Supported RequestDecision For YN.
3+
14
2021-11-30 Version: 3.4.6
25
- Generated 2020-05-18 for `dataworks-public`.
36

aliyun-net-sdk-saf/Saf/Model/V20190521/ExecuteExtendServiceRequest.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
using Aliyun.Acs.Core.Http;
2323
using Aliyun.Acs.Core.Transform;
2424
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.saf;
2526
using Aliyun.Acs.saf.Transform;
2627
using Aliyun.Acs.saf.Transform.V20190521;
2728

@@ -30,12 +31,12 @@ namespace Aliyun.Acs.saf.Model.V20190521
3031
public class ExecuteExtendServiceRequest : RpcAcsRequest<ExecuteExtendServiceResponse>
3132
{
3233
public ExecuteExtendServiceRequest()
33-
: base("saf", "2019-05-21", "ExecuteExtendService", "saf", "openAPI")
34+
: base("saf", "2019-05-21", "ExecuteExtendService")
3435
{
3536
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3637
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.saf.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.saf.Endpoint.endpointRegionalType, null);
3940
}
4041
Method = MethodType.POST;
4142
}

aliyun-net-sdk-saf/Saf/Model/V20190521/ExecuteExtendServiceResponse.cs

+19-19
Original file line numberDiff line numberDiff line change
@@ -25,75 +25,75 @@ namespace Aliyun.Acs.saf.Model.V20190521
2525
public class ExecuteExtendServiceResponse : AcsResponse
2626
{
2727

28+
private string httpStatusCode;
29+
2830
private string code;
2931

32+
private string message;
33+
3034
private string requestId;
3135

3236
private bool? success;
3337

34-
private string message;
35-
36-
private string httpStatusCode;
37-
3838
private ExecuteExtendService_Data data;
3939

40-
public string Code
40+
public string HttpStatusCode
4141
{
4242
get
4343
{
44-
return code;
44+
return httpStatusCode;
4545
}
4646
set
4747
{
48-
code = value;
48+
httpStatusCode = value;
4949
}
5050
}
5151

52-
public string RequestId
52+
public string Code
5353
{
5454
get
5555
{
56-
return requestId;
56+
return code;
5757
}
5858
set
5959
{
60-
requestId = value;
60+
code = value;
6161
}
6262
}
6363

64-
public bool? Success
64+
public string Message
6565
{
6666
get
6767
{
68-
return success;
68+
return message;
6969
}
7070
set
7171
{
72-
success = value;
72+
message = value;
7373
}
7474
}
7575

76-
public string Message
76+
public string RequestId
7777
{
7878
get
7979
{
80-
return message;
80+
return requestId;
8181
}
8282
set
8383
{
84-
message = value;
84+
requestId = value;
8585
}
8686
}
8787

88-
public string HttpStatusCode
88+
public bool? Success
8989
{
9090
get
9191
{
92-
return httpStatusCode;
92+
return success;
9393
}
9494
set
9595
{
96-
httpStatusCode = value;
96+
success = value;
9797
}
9898
}
9999

aliyun-net-sdk-saf/Saf/Model/V20190521/ExecuteRequestMLRequest.cs

+19-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
using Aliyun.Acs.Core.Http;
2323
using Aliyun.Acs.Core.Transform;
2424
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.saf;
2526
using Aliyun.Acs.saf.Transform;
2627
using Aliyun.Acs.saf.Transform.V20190521;
2728

@@ -30,12 +31,12 @@ namespace Aliyun.Acs.saf.Model.V20190521
3031
public class ExecuteRequestMLRequest : RpcAcsRequest<ExecuteRequestMLResponse>
3132
{
3233
public ExecuteRequestMLRequest()
33-
: base("saf", "2019-05-21", "ExecuteRequestML", "saf", "openAPI")
34+
: base("saf", "2019-05-21", "ExecuteRequestML")
3435
{
3536
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3637
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.saf.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.saf.Endpoint.endpointRegionalType, null);
3940
}
4041
Protocol = ProtocolType.HTTPS;
4142
Method = MethodType.POST;
@@ -45,6 +46,8 @@ public ExecuteRequestMLRequest()
4546

4647
private string service;
4748

49+
private string lang;
50+
4851
public string ServiceParameters
4952
{
5053
get
@@ -71,6 +74,19 @@ public string Service
7174
}
7275
}
7376

77+
public string Lang
78+
{
79+
get
80+
{
81+
return lang;
82+
}
83+
set
84+
{
85+
lang = value;
86+
DictionaryUtil.Add(QueryParameters, "Lang", value);
87+
}
88+
}
89+
7490
public override bool CheckShowJsonItemName()
7591
{
7692
return false;

aliyun-net-sdk-saf/Saf/Model/V20190521/ExecuteRequestMLResponse.cs

+13-13
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,13 @@ namespace Aliyun.Acs.saf.Model.V20190521
2525
public class ExecuteRequestMLResponse : AcsResponse
2626
{
2727

28-
private string requestId;
29-
3028
private int? code;
3129

3230
private string message;
3331

3432
private string data;
3533

36-
public string RequestId
37-
{
38-
get
39-
{
40-
return requestId;
41-
}
42-
set
43-
{
44-
requestId = value;
45-
}
46-
}
34+
private string requestId;
4735

4836
public int? Code
4937
{
@@ -80,5 +68,17 @@ public string Data
8068
data = value;
8169
}
8270
}
71+
72+
public string RequestId
73+
{
74+
get
75+
{
76+
return requestId;
77+
}
78+
set
79+
{
80+
requestId = value;
81+
}
82+
}
8383
}
8484
}

aliyun-net-sdk-saf/Saf/Model/V20190521/ExecuteRequestRequest.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
using Aliyun.Acs.Core.Http;
2323
using Aliyun.Acs.Core.Transform;
2424
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.saf;
2526
using Aliyun.Acs.saf.Transform;
2627
using Aliyun.Acs.saf.Transform.V20190521;
2728

@@ -30,12 +31,12 @@ namespace Aliyun.Acs.saf.Model.V20190521
3031
public class ExecuteRequestRequest : RpcAcsRequest<ExecuteRequestResponse>
3132
{
3233
public ExecuteRequestRequest()
33-
: base("saf", "2019-05-21", "ExecuteRequest", "saf", "openAPI")
34+
: base("saf", "2019-05-21", "ExecuteRequest")
3435
{
3536
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3637
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.saf.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.saf.Endpoint.endpointRegionalType, null);
3940
}
4041
Protocol = ProtocolType.HTTPS;
4142
Method = MethodType.POST;

aliyun-net-sdk-saf/Saf/Model/V20190521/ExecuteRequestResponse.cs

+13-13
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,13 @@ namespace Aliyun.Acs.saf.Model.V20190521
2525
public class ExecuteRequestResponse : AcsResponse
2626
{
2727

28-
private string requestId;
29-
3028
private int? code;
3129

3230
private string message;
3331

3432
private string data;
3533

36-
public string RequestId
37-
{
38-
get
39-
{
40-
return requestId;
41-
}
42-
set
43-
{
44-
requestId = value;
45-
}
46-
}
34+
private string requestId;
4735

4836
public int? Code
4937
{
@@ -80,5 +68,17 @@ public string Data
8068
data = value;
8169
}
8270
}
71+
72+
public string RequestId
73+
{
74+
get
75+
{
76+
return requestId;
77+
}
78+
set
79+
{
80+
requestId = value;
81+
}
82+
}
8383
}
8484
}

aliyun-net-sdk-saf/Saf/Model/V20190521/ExecuteRequestSGRequest.cs

+19-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
using Aliyun.Acs.Core.Http;
2323
using Aliyun.Acs.Core.Transform;
2424
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.saf;
2526
using Aliyun.Acs.saf.Transform;
2627
using Aliyun.Acs.saf.Transform.V20190521;
2728

@@ -30,12 +31,12 @@ namespace Aliyun.Acs.saf.Model.V20190521
3031
public class ExecuteRequestSGRequest : RpcAcsRequest<ExecuteRequestSGResponse>
3132
{
3233
public ExecuteRequestSGRequest()
33-
: base("saf", "2019-05-21", "ExecuteRequestSG", "saf", "openAPI")
34+
: base("saf", "2019-05-21", "ExecuteRequestSG")
3435
{
3536
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3637
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.saf.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.saf.Endpoint.endpointRegionalType, null);
3940
}
4041
Protocol = ProtocolType.HTTPS;
4142
Method = MethodType.POST;
@@ -45,6 +46,8 @@ public ExecuteRequestSGRequest()
4546

4647
private string service;
4748

49+
private string lang;
50+
4851
public string ServiceParameters
4952
{
5053
get
@@ -69,6 +72,19 @@ public string Service
6972
service = value;
7073
DictionaryUtil.Add(QueryParameters, "Service", value);
7174
}
75+
}
76+
77+
public string Lang
78+
{
79+
get
80+
{
81+
return lang;
82+
}
83+
set
84+
{
85+
lang = value;
86+
DictionaryUtil.Add(QueryParameters, "Lang", value);
87+
}
7288
}
7389

7490
public override ExecuteRequestSGResponse GetResponse(UnmarshallerContext unmarshallerContext)

aliyun-net-sdk-saf/Saf/Model/V20190521/ExecuteRequestSGResponse.cs

+13-13
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,13 @@ namespace Aliyun.Acs.saf.Model.V20190521
2525
public class ExecuteRequestSGResponse : AcsResponse
2626
{
2727

28-
private string requestId;
29-
3028
private int? code;
3129

3230
private string message;
3331

3432
private string data;
3533

36-
public string RequestId
37-
{
38-
get
39-
{
40-
return requestId;
41-
}
42-
set
43-
{
44-
requestId = value;
45-
}
46-
}
34+
private string requestId;
4735

4836
public int? Code
4937
{
@@ -80,5 +68,17 @@ public string Data
8068
data = value;
8169
}
8270
}
71+
72+
public string RequestId
73+
{
74+
get
75+
{
76+
return requestId;
77+
}
78+
set
79+
{
80+
requestId = value;
81+
}
82+
}
8383
}
8484
}

0 commit comments

Comments
 (0)