Skip to content

Commit c678156

Browse files
committed
Updated CheckBlockVolumeName api for Checking the volume name has been already used by the OSS bucket folder.
1 parent 50e90bb commit c678156

File tree

360 files changed

+6985
-3598
lines changed

Some content is hidden

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

360 files changed

+6985
-3598
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-12-24 Version: 1.0.3
2+
- Updated CheckBlockVolumeName api for Checking the volume name has been already used by the OSS bucket folder.
3+
14
2021-12-22 Version: 2.16.5
25
- Add return fields to UploadStreamByURL.
36
- Set DescribeVodDomainSrcTrafficData pulic.

aliyun-net-sdk-sgw/Sgw/Model/V20180511/ActivateAllInOneGatewayResponse.cs

+25-25
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.sgw.Model.V20180511
@@ -27,18 +27,18 @@ public class ActivateAllInOneGatewayResponse : AcsResponse
2727

2828
private string requestId;
2929

30-
private bool? success;
31-
32-
private string code;
33-
3430
private string message;
3531

36-
private string gatewayId;
37-
3832
private string regionId;
3933

34+
private string gatewayId;
35+
4036
private string licenseContent;
4137

38+
private string code;
39+
40+
private bool? success;
41+
4242
public string RequestId
4343
{
4444
get
@@ -51,75 +51,75 @@ public string RequestId
5151
}
5252
}
5353

54-
public bool? Success
54+
public string Message
5555
{
5656
get
5757
{
58-
return success;
58+
return message;
5959
}
6060
set
6161
{
62-
success = value;
62+
message = value;
6363
}
6464
}
6565

66-
public string Code
66+
public string RegionId
6767
{
6868
get
6969
{
70-
return code;
70+
return regionId;
7171
}
7272
set
7373
{
74-
code = value;
74+
regionId = value;
7575
}
7676
}
7777

78-
public string Message
78+
public string GatewayId
7979
{
8080
get
8181
{
82-
return message;
82+
return gatewayId;
8383
}
8484
set
8585
{
86-
message = value;
86+
gatewayId = value;
8787
}
8888
}
8989

90-
public string GatewayId
90+
public string LicenseContent
9191
{
9292
get
9393
{
94-
return gatewayId;
94+
return licenseContent;
9595
}
9696
set
9797
{
98-
gatewayId = value;
98+
licenseContent = value;
9999
}
100100
}
101101

102-
public string RegionId
102+
public string Code
103103
{
104104
get
105105
{
106-
return regionId;
106+
return code;
107107
}
108108
set
109109
{
110-
regionId = value;
110+
code = value;
111111
}
112112
}
113113

114-
public string LicenseContent
114+
public bool? Success
115115
{
116116
get
117117
{
118-
return licenseContent;
118+
return success;
119119
}
120120
set
121121
{
122-
licenseContent = value;
122+
success = value;
123123
}
124124
}
125125
}

aliyun-net-sdk-sgw/Sgw/Model/V20180511/ActivateGatewayResponse.cs

+21-21
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.sgw.Model.V20180511
@@ -27,15 +27,15 @@ public class ActivateGatewayResponse : AcsResponse
2727

2828
private string requestId;
2929

30-
private bool? success;
31-
32-
private string code;
33-
3430
private string message;
3531

32+
private string regionId;
33+
3634
private string gatewayId;
3735

38-
private string regionId;
36+
private string code;
37+
38+
private bool? success;
3939

4040
public string RequestId
4141
{
@@ -49,63 +49,63 @@ public string RequestId
4949
}
5050
}
5151

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

64-
public string Code
64+
public string RegionId
6565
{
6666
get
6767
{
68-
return code;
68+
return regionId;
6969
}
7070
set
7171
{
72-
code = value;
72+
regionId = value;
7373
}
7474
}
7575

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

88-
public string GatewayId
88+
public string Code
8989
{
9090
get
9191
{
92-
return gatewayId;
92+
return code;
9393
}
9494
set
9595
{
96-
gatewayId = value;
96+
code = value;
9797
}
9898
}
9999

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

aliyun-net-sdk-sgw/Sgw/Model/V20180511/AddSharesToExpressSyncResponse.cs

+36-36
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,20 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.sgw.Model.V20180511
2424
{
2525
public class AddSharesToExpressSyncResponse : AcsResponse
2626
{
2727

28-
private string requestId;
29-
30-
private bool? success;
28+
private string taskId;
3129

32-
private string code;
30+
private string requestId;
3331

3432
private string message;
3533

36-
private string taskId;
37-
3834
private string mnsTopic;
3935

4036
private string mnsQueues;
@@ -45,39 +41,31 @@ public class AddSharesToExpressSyncResponse : AcsResponse
4541

4642
private string mnsInnerEndpoint;
4743

48-
public string RequestId
49-
{
50-
get
51-
{
52-
return requestId;
53-
}
54-
set
55-
{
56-
requestId = value;
57-
}
58-
}
44+
private string code;
5945

60-
public bool? Success
46+
private bool? success;
47+
48+
public string TaskId
6149
{
6250
get
6351
{
64-
return success;
52+
return taskId;
6553
}
6654
set
6755
{
68-
success = value;
56+
taskId = value;
6957
}
7058
}
7159

72-
public string Code
60+
public string RequestId
7361
{
7462
get
7563
{
76-
return code;
64+
return requestId;
7765
}
7866
set
7967
{
80-
code = value;
68+
requestId = value;
8169
}
8270
}
8371

@@ -93,18 +81,6 @@ public string Message
9381
}
9482
}
9583

96-
public string TaskId
97-
{
98-
get
99-
{
100-
return taskId;
101-
}
102-
set
103-
{
104-
taskId = value;
105-
}
106-
}
107-
10884
public string MnsTopic
10985
{
11086
get
@@ -164,5 +140,29 @@ public string MnsInnerEndpoint
164140
mnsInnerEndpoint = value;
165141
}
166142
}
143+
144+
public string Code
145+
{
146+
get
147+
{
148+
return code;
149+
}
150+
set
151+
{
152+
code = value;
153+
}
154+
}
155+
156+
public bool? Success
157+
{
158+
get
159+
{
160+
return success;
161+
}
162+
set
163+
{
164+
success = value;
165+
}
166+
}
167167
}
168168
}

0 commit comments

Comments
 (0)