Skip to content

Commit 1cfce3f

Browse files
committed
Generated 2020-05-18 for dataworks-public.
1 parent b8da28b commit 1cfce3f

File tree

93 files changed

+2351
-2333
lines changed

Some content is hidden

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

93 files changed

+2351
-2333
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-03-21 Version: 3.4.11
2+
- Generated 2020-05-18 for `dataworks-public`.
3+
14
2022-03-15 Version: 3.2.1
25
- Add tcpInternetEndpoint field for the api OnsInstanceBaseInfo.
36

aliyun-net-sdk-dataworks-public/Dataworks_public/Model/V20200518/CheckMetaPartitionResponse.cs

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -25,87 +25,87 @@ namespace Aliyun.Acs.dataworks_public.Model.V20200518
2525
public class CheckMetaPartitionResponse : AcsResponse
2626
{
2727

28-
private string requestId;
28+
private int? httpStatusCode;
2929

30-
private string errorCode;
30+
private bool? data;
31+
32+
private string requestId;
3133

3234
private string errorMessage;
3335

34-
private int? httpStatusCode;
36+
private string errorCode;
3537

3638
private bool? success;
3739

38-
private bool? data;
39-
40-
public string RequestId
40+
public int? HttpStatusCode
4141
{
4242
get
4343
{
44-
return requestId;
44+
return httpStatusCode;
4545
}
4646
set
4747
{
48-
requestId = value;
48+
httpStatusCode = value;
4949
}
5050
}
5151

52-
public string ErrorCode
52+
public bool? Data
5353
{
5454
get
5555
{
56-
return errorCode;
56+
return data;
5757
}
5858
set
5959
{
60-
errorCode = value;
60+
data = value;
6161
}
6262
}
6363

64-
public string ErrorMessage
64+
public string RequestId
6565
{
6666
get
6767
{
68-
return errorMessage;
68+
return requestId;
6969
}
7070
set
7171
{
72-
errorMessage = value;
72+
requestId = value;
7373
}
7474
}
7575

76-
public int? HttpStatusCode
76+
public string ErrorMessage
7777
{
7878
get
7979
{
80-
return httpStatusCode;
80+
return errorMessage;
8181
}
8282
set
8383
{
84-
httpStatusCode = value;
84+
errorMessage = value;
8585
}
8686
}
8787

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

100-
public bool? Data
100+
public bool? Success
101101
{
102102
get
103103
{
104-
return data;
104+
return success;
105105
}
106106
set
107107
{
108-
data = value;
108+
success = value;
109109
}
110110
}
111111
}

aliyun-net-sdk-dataworks-public/Dataworks_public/Model/V20200518/CheckMetaTableResponse.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,31 +25,31 @@ namespace Aliyun.Acs.dataworks_public.Model.V20200518
2525
public class CheckMetaTableResponse : AcsResponse
2626
{
2727

28-
private string requestId;
29-
3028
private bool? data;
3129

32-
public string RequestId
30+
private string requestId;
31+
32+
public bool? Data
3333
{
3434
get
3535
{
36-
return requestId;
36+
return data;
3737
}
3838
set
3939
{
40-
requestId = value;
40+
data = value;
4141
}
4242
}
4343

44-
public bool? Data
44+
public string RequestId
4545
{
4646
get
4747
{
48-
return data;
48+
return requestId;
4949
}
5050
set
5151
{
52-
data = value;
52+
requestId = value;
5353
}
5454
}
5555
}

aliyun-net-sdk-dataworks-public/Dataworks_public/Model/V20200518/CreateBusinessResponse.cs

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -25,75 +25,75 @@ namespace Aliyun.Acs.dataworks_public.Model.V20200518
2525
public class CreateBusinessResponse : AcsResponse
2626
{
2727

28+
private int? httpStatusCode;
29+
2830
private string requestId;
2931

32+
private string errorMessage;
33+
3034
private bool? success;
3135

3236
private string errorCode;
3337

34-
private string errorMessage;
35-
36-
private int? httpStatusCode;
37-
3838
private long? businessId;
3939

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

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

64-
public string ErrorCode
64+
public string ErrorMessage
6565
{
6666
get
6767
{
68-
return errorCode;
68+
return errorMessage;
6969
}
7070
set
7171
{
72-
errorCode = value;
72+
errorMessage = value;
7373
}
7474
}
7575

76-
public string ErrorMessage
76+
public bool? Success
7777
{
7878
get
7979
{
80-
return errorMessage;
80+
return success;
8181
}
8282
set
8383
{
84-
errorMessage = value;
84+
success = value;
8585
}
8686
}
8787

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

aliyun-net-sdk-dataworks-public/Dataworks_public/Model/V20200518/CreateFolderResponse.cs

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -25,51 +25,51 @@ namespace Aliyun.Acs.dataworks_public.Model.V20200518
2525
public class CreateFolderResponse : AcsResponse
2626
{
2727

28-
private string requestId;
28+
private int? httpStatusCode;
2929

30-
private bool? success;
30+
private string data;
3131

32-
private string errorCode;
32+
private string requestId;
3333

3434
private string errorMessage;
3535

36-
private string data;
36+
private bool? success;
3737

38-
private int? httpStatusCode;
38+
private string errorCode;
3939

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

52-
public bool? Success
52+
public string Data
5353
{
5454
get
5555
{
56-
return success;
56+
return data;
5757
}
5858
set
5959
{
60-
success = value;
60+
data = value;
6161
}
6262
}
6363

64-
public string ErrorCode
64+
public string RequestId
6565
{
6666
get
6767
{
68-
return errorCode;
68+
return requestId;
6969
}
7070
set
7171
{
72-
errorCode = value;
72+
requestId = value;
7373
}
7474
}
7575

@@ -85,27 +85,27 @@ public string ErrorMessage
8585
}
8686
}
8787

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

100-
public int? HttpStatusCode
100+
public string ErrorCode
101101
{
102102
get
103103
{
104-
return httpStatusCode;
104+
return errorCode;
105105
}
106106
set
107107
{
108-
httpStatusCode = value;
108+
errorCode = value;
109109
}
110110
}
111111
}

0 commit comments

Comments
 (0)