Skip to content

Commit c9d88c2

Browse files
committed
Generated 2013-02-21 for Slb.
1 parent 98d740e commit c9d88c2

File tree

263 files changed

+2225
-31140
lines changed

Some content is hidden

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

263 files changed

+2225
-31140
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-04-01 Version: 1.0.0
2+
- Generated 2013-02-21 for `Slb`.
3+
14
2024-03-26 Version: 1.8.3
25
- DeleteFlow、DeleteSchedule Parameters move to body.
36

aliyun-net-sdk-slb/Slb/Endpoint.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public class Endpoint
4343
{ "cn-beijing-finance-pop", "slb.aliyuncs.com" },
4444
{ "cn-wuhan", "slb.aliyuncs.com" },
4545
{ "us-west-1", "slb.aliyuncs.com" },
46+
{ "cn-zhangbei", "slb.aliyuncs.com" },
4647
{ "cn-shenzhen", "slb.aliyuncs.com" },
4748
{ "cn-zhengzhou-nebula-1", "slb.aliyuncs.com" },
4849
{ "rus-west-1-pop", "slb.aliyuncs.com" },
@@ -51,7 +52,6 @@ public class Endpoint
5152
{ "cn-hangzhou-internal-test-1", "slb.aliyuncs.com" },
5253
{ "eu-west-1-oxs", "slb.aliyuncs.com" },
5354
{ "cn-zhangbei-na61-b01", "slb.aliyuncs.com" },
54-
{ "cn-beijing-finance-1", "slb.aliyuncs.com" },
5555
{ "cn-hangzhou-internal-test-3", "slb.aliyuncs.com" },
5656
{ "cn-shenzhen-finance-1", "slb.aliyuncs.com" },
5757
{ "cn-hangzhou-internal-test-2", "slb.aliyuncs.com" },

aliyun-net-sdk-slb/Slb/Model/V20140515/AddBackendServersRequest.cs aliyun-net-sdk-slb/Slb/Model/V20130221/AddBackendServersRequest.cs

+33-3
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
using Aliyun.Acs.Core.Transform;
2424
using Aliyun.Acs.Core.Utils;
2525
using Aliyun.Acs.Slb.Transform;
26-
using Aliyun.Acs.Slb.Transform.V20140515;
26+
using Aliyun.Acs.Slb.Transform.V20130221;
2727

28-
namespace Aliyun.Acs.Slb.Model.V20140515
28+
namespace Aliyun.Acs.Slb.Model.V20130221
2929
{
3030
public class AddBackendServersRequest : RpcAcsRequest<AddBackendServersResponse>
3131
{
3232
public AddBackendServersRequest()
33-
: base("Slb", "2014-05-15", "AddBackendServers", "slb", "openAPI")
33+
: base("Slb", "2013-02-21", "AddBackendServers", "slb", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
@@ -40,6 +40,8 @@ public AddBackendServersRequest()
4040
Method = MethodType.POST;
4141
}
4242

43+
private string access_key_id;
44+
4345
private long? resourceOwnerId;
4446

4547
private string backendServers;
@@ -50,8 +52,23 @@ public AddBackendServersRequest()
5052

5153
private long? ownerId;
5254

55+
private string tags;
56+
5357
private string loadBalancerId;
5458

59+
public string Access_key_id
60+
{
61+
get
62+
{
63+
return access_key_id;
64+
}
65+
set
66+
{
67+
access_key_id = value;
68+
DictionaryUtil.Add(QueryParameters, "access_key_id", value);
69+
}
70+
}
71+
5572
public long? ResourceOwnerId
5673
{
5774
get
@@ -117,6 +134,19 @@ public long? OwnerId
117134
}
118135
}
119136

137+
public string Tags
138+
{
139+
get
140+
{
141+
return tags;
142+
}
143+
set
144+
{
145+
tags = value;
146+
DictionaryUtil.Add(QueryParameters, "Tags", value);
147+
}
148+
}
149+
120150
public string LoadBalancerId
121151
{
122152
get

aliyun-net-sdk-slb/Slb/Model/V20140515/AddBackendServersResponse.cs aliyun-net-sdk-slb/Slb/Model/V20130221/AddBackendServersResponse.cs

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

23-
namespace Aliyun.Acs.Slb.Model.V20140515
23+
namespace Aliyun.Acs.Slb.Model.V20130221
2424
{
2525
public class AddBackendServersResponse : AcsResponse
2626
{
2727

28-
private string requestId;
29-
3028
private string loadBalancerId;
3129

30+
private string requestId;
31+
3232
private List<AddBackendServers_BackendServer> backendServers;
3333

34-
public string RequestId
34+
public string LoadBalancerId
3535
{
3636
get
3737
{
38-
return requestId;
38+
return loadBalancerId;
3939
}
4040
set
4141
{
42-
requestId = value;
42+
loadBalancerId = value;
4343
}
4444
}
4545

46-
public string LoadBalancerId
46+
public string RequestId
4747
{
4848
get
4949
{
50-
return loadBalancerId;
50+
return requestId;
5151
}
5252
set
5353
{
54-
loadBalancerId = value;
54+
requestId = value;
5555
}
5656
}
5757

@@ -70,29 +70,9 @@ public List<AddBackendServers_BackendServer> BackendServers
7070
public class AddBackendServers_BackendServer
7171
{
7272

73-
private string serverId;
74-
7573
private string weight;
7674

77-
private string serverIp;
78-
79-
private string vpcId;
80-
81-
private string type;
82-
83-
private string description;
84-
85-
public string ServerId
86-
{
87-
get
88-
{
89-
return serverId;
90-
}
91-
set
92-
{
93-
serverId = value;
94-
}
95-
}
75+
private string serverId;
9676

9777
public string Weight
9878
{
@@ -106,51 +86,15 @@ public string Weight
10686
}
10787
}
10888

109-
public string ServerIp
110-
{
111-
get
112-
{
113-
return serverIp;
114-
}
115-
set
116-
{
117-
serverIp = value;
118-
}
119-
}
120-
121-
public string VpcId
122-
{
123-
get
124-
{
125-
return vpcId;
126-
}
127-
set
128-
{
129-
vpcId = value;
130-
}
131-
}
132-
133-
public string Type
134-
{
135-
get
136-
{
137-
return type;
138-
}
139-
set
140-
{
141-
type = value;
142-
}
143-
}
144-
145-
public string Description
89+
public string ServerId
14690
{
14791
get
14892
{
149-
return description;
93+
return serverId;
15094
}
15195
set
15296
{
153-
description = value;
97+
serverId = value;
15498
}
15599
}
156100
}

0 commit comments

Comments
 (0)