Skip to content

Commit 551ed52

Browse files
committed
Support Tag API.
1 parent 7c5b2c2 commit 551ed52

File tree

82 files changed

+3335
-108
lines changed

Some content is hidden

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

82 files changed

+3335
-108
lines changed

aliyun-net-sdk-adb/Adb/Model/V20190315/AllocateClusterPublicConnectionRequest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ public AllocateClusterPublicConnectionRequest()
3636
{
3737
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
3838
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
39-
}
39+
}
40+
Method = MethodType.POST;
4041
}
4142

4243
private long? resourceOwnerId;

aliyun-net-sdk-adb/Adb/Model/V20190315/CreateAccountRequest.cs

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,14 @@ public CreateAccountRequest()
3636
{
3737
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
3838
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
39-
}
39+
}
40+
Method = MethodType.POST;
4041
}
4142

4243
private long? resourceOwnerId;
4344

45+
private string accountType;
46+
4447
private string accountDescription;
4548

4649
private string accountName;
@@ -68,6 +71,19 @@ public long? ResourceOwnerId
6871
}
6972
}
7073

74+
public string AccountType
75+
{
76+
get
77+
{
78+
return accountType;
79+
}
80+
set
81+
{
82+
accountType = value;
83+
DictionaryUtil.Add(QueryParameters, "AccountType", value);
84+
}
85+
}
86+
7187
public string AccountDescription
7288
{
7389
get

aliyun-net-sdk-adb/Adb/Model/V20190315/CreateAccountResponse.cs

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ public class CreateAccountResponse : AcsResponse
2727

2828
private string requestId;
2929

30+
private string dBClusterId;
31+
32+
private int? taskId;
33+
3034
public string RequestId
3135
{
3236
get
@@ -38,5 +42,29 @@ public string RequestId
3842
requestId = value;
3943
}
4044
}
45+
46+
public string DBClusterId
47+
{
48+
get
49+
{
50+
return dBClusterId;
51+
}
52+
set
53+
{
54+
dBClusterId = value;
55+
}
56+
}
57+
58+
public int? TaskId
59+
{
60+
get
61+
{
62+
return taskId;
63+
}
64+
set
65+
{
66+
taskId = value;
67+
}
68+
}
4169
}
4270
}

aliyun-net-sdk-adb/Adb/Model/V20190315/CreateDBClusterRequest.cs

Lines changed: 92 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ public CreateDBClusterRequest()
3636
{
3737
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
3838
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
39-
}
39+
}
40+
Method = MethodType.POST;
4041
}
4142

4243
private long? resourceOwnerId;
@@ -45,6 +46,14 @@ public CreateDBClusterRequest()
4546

4647
private string clientToken;
4748

49+
private string storageType;
50+
51+
private string mode;
52+
53+
private string resourceGroupId;
54+
55+
private string storageResource;
56+
4857
private string dBClusterCategory;
4958

5059
private string dBClusterNetworkType;
@@ -69,10 +78,14 @@ public CreateDBClusterRequest()
6978

7079
private string dBNodeStorage;
7180

81+
private string executorCount;
82+
7283
private string vPCId;
7384

7485
private string zoneId;
7586

87+
private string computeResource;
88+
7689
private string payType;
7790

7891
public long? ResourceOwnerId
@@ -114,6 +127,58 @@ public string ClientToken
114127
}
115128
}
116129

130+
public string StorageType
131+
{
132+
get
133+
{
134+
return storageType;
135+
}
136+
set
137+
{
138+
storageType = value;
139+
DictionaryUtil.Add(QueryParameters, "StorageType", value);
140+
}
141+
}
142+
143+
public string Mode
144+
{
145+
get
146+
{
147+
return mode;
148+
}
149+
set
150+
{
151+
mode = value;
152+
DictionaryUtil.Add(QueryParameters, "Mode", value);
153+
}
154+
}
155+
156+
public string ResourceGroupId
157+
{
158+
get
159+
{
160+
return resourceGroupId;
161+
}
162+
set
163+
{
164+
resourceGroupId = value;
165+
DictionaryUtil.Add(QueryParameters, "ResourceGroupId", value);
166+
}
167+
}
168+
169+
public string StorageResource
170+
{
171+
get
172+
{
173+
return storageResource;
174+
}
175+
set
176+
{
177+
storageResource = value;
178+
DictionaryUtil.Add(QueryParameters, "StorageResource", value);
179+
}
180+
}
181+
117182
public string DBClusterCategory
118183
{
119184
get
@@ -270,6 +335,19 @@ public string DBNodeStorage
270335
}
271336
}
272337

338+
public string ExecutorCount
339+
{
340+
get
341+
{
342+
return executorCount;
343+
}
344+
set
345+
{
346+
executorCount = value;
347+
DictionaryUtil.Add(QueryParameters, "ExecutorCount", value);
348+
}
349+
}
350+
273351
public string VPCId
274352
{
275353
get
@@ -296,6 +374,19 @@ public string ZoneId
296374
}
297375
}
298376

377+
public string ComputeResource
378+
{
379+
get
380+
{
381+
return computeResource;
382+
}
383+
set
384+
{
385+
computeResource = value;
386+
DictionaryUtil.Add(QueryParameters, "ComputeResource", value);
387+
}
388+
}
389+
299390
public string PayType
300391
{
301392
get

aliyun-net-sdk-adb/Adb/Model/V20190315/CreateDBClusterResponse.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ public class CreateDBClusterResponse : AcsResponse
3131

3232
private string orderId;
3333

34+
private string resourceGroupId;
35+
3436
public string RequestId
3537
{
3638
get
@@ -66,5 +68,17 @@ public string OrderId
6668
orderId = value;
6769
}
6870
}
71+
72+
public string ResourceGroupId
73+
{
74+
get
75+
{
76+
return resourceGroupId;
77+
}
78+
set
79+
{
80+
resourceGroupId = value;
81+
}
82+
}
6983
}
7084
}

aliyun-net-sdk-adb/Adb/Model/V20190315/DeleteAccountRequest.cs

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,14 @@ public DeleteAccountRequest()
3636
{
3737
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
3838
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
39-
}
39+
}
40+
Method = MethodType.POST;
4041
}
4142

4243
private long? resourceOwnerId;
4344

45+
private string accountType;
46+
4447
private string accountName;
4548

4649
private string resourceOwnerAccount;
@@ -64,6 +67,19 @@ public long? ResourceOwnerId
6467
}
6568
}
6669

70+
public string AccountType
71+
{
72+
get
73+
{
74+
return accountType;
75+
}
76+
set
77+
{
78+
accountType = value;
79+
DictionaryUtil.Add(QueryParameters, "AccountType", value);
80+
}
81+
}
82+
6783
public string AccountName
6884
{
6985
get

aliyun-net-sdk-adb/Adb/Model/V20190315/DeleteDBClusterRequest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ public DeleteDBClusterRequest()
3636
{
3737
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
3838
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
39-
}
39+
}
40+
Method = MethodType.POST;
4041
}
4142

4243
private long? resourceOwnerId;

aliyun-net-sdk-adb/Adb/Model/V20190315/DescribeAccountsRequest.cs

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,14 @@ public DescribeAccountsRequest()
3636
{
3737
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
3838
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
39-
}
39+
}
40+
Method = MethodType.POST;
4041
}
4142

4243
private long? resourceOwnerId;
4344

45+
private string accountType;
46+
4447
private string accountName;
4548

4649
private string resourceOwnerAccount;
@@ -64,6 +67,19 @@ public long? ResourceOwnerId
6467
}
6568
}
6669

70+
public string AccountType
71+
{
72+
get
73+
{
74+
return accountType;
75+
}
76+
set
77+
{
78+
accountType = value;
79+
DictionaryUtil.Add(QueryParameters, "AccountType", value);
80+
}
81+
}
82+
6783
public string AccountName
6884
{
6985
get

aliyun-net-sdk-adb/Adb/Model/V20190315/DescribeAllDataSourceRequest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ public DescribeAllDataSourceRequest()
3636
{
3737
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
3838
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
39-
}
39+
}
40+
Method = MethodType.POST;
4041
}
4142

4243
private long? resourceOwnerId;

aliyun-net-sdk-adb/Adb/Model/V20190315/DescribeAllDataSourceResponse.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,8 @@ public class DescribeAllDataSource_Column
174174

175175
private bool? primaryKey;
176176

177+
private bool? autoIncrementColumn;
178+
177179
public string DBClusterId
178180
{
179181
get
@@ -245,6 +247,18 @@ public bool? PrimaryKey
245247
primaryKey = value;
246248
}
247249
}
250+
251+
public bool? AutoIncrementColumn
252+
{
253+
get
254+
{
255+
return autoIncrementColumn;
256+
}
257+
set
258+
{
259+
autoIncrementColumn = value;
260+
}
261+
}
248262
}
249263
}
250264
}

0 commit comments

Comments
 (0)