Skip to content

Commit 9b373bf

Browse files
committed
Generated 2015-12-01 for Dds.
1 parent b7f3b18 commit 9b373bf

18 files changed

+672
-4
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-11-05 Version: 3.7.20
2+
- Generated 2015-12-01 for `Dds`.
3+
14
2024-10-28 Version: 1.0.2
25
- Init.
36

aliyun-net-sdk-dds/Dds/Model/V20151201/CheckRecoveryConditionRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ public CheckRecoveryConditionRequest()
4242

4343
private long? resourceOwnerId;
4444

45+
private string engineVersion;
46+
4547
private string srcRegion;
4648

4749
private string resourceGroupId;
@@ -79,6 +81,19 @@ public long? ResourceOwnerId
7981
}
8082
}
8183

84+
public string EngineVersion
85+
{
86+
get
87+
{
88+
return engineVersion;
89+
}
90+
set
91+
{
92+
engineVersion = value;
93+
DictionaryUtil.Add(QueryParameters, "EngineVersion", value);
94+
}
95+
}
96+
8297
public string SrcRegion
8398
{
8499
get

aliyun-net-sdk-dds/Dds/Model/V20151201/DescribeBackupsResponse.cs

+14
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,8 @@ public class DescribeBackups_Backup
128128

129129
private bool? isAvail;
130130

131+
private string engineVersion;
132+
131133
public string BackupStatus
132134
{
133135
get
@@ -307,6 +309,18 @@ public bool? IsAvail
307309
isAvail = value;
308310
}
309311
}
312+
313+
public string EngineVersion
314+
{
315+
get
316+
{
317+
return engineVersion;
318+
}
319+
set
320+
{
321+
engineVersion = value;
322+
}
323+
}
310324
}
311325
}
312326
}

aliyun-net-sdk-dds/Dds/Model/V20151201/DescribeClusterBackupsResponse.cs

+14
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ public class DescribeClusterBackups_ClusterBackup
116116

117117
private string attachLogStatus;
118118

119+
private string engineVersion;
120+
119121
private List<DescribeClusterBackups_Backup> backups;
120122

121123
private DescribeClusterBackups_ExtraInfo extraInfo;
@@ -228,6 +230,18 @@ public string AttachLogStatus
228230
}
229231
}
230232

233+
public string EngineVersion
234+
{
235+
get
236+
{
237+
return engineVersion;
238+
}
239+
set
240+
{
241+
engineVersion = value;
242+
}
243+
}
244+
231245
public List<DescribeClusterBackups_Backup> Backups
232246
{
233247
get

aliyun-net-sdk-dds/Dds/Model/V20151201/DescribeDBInstanceAttributeResponse.cs

+42
Original file line numberDiff line numberDiff line change
@@ -987,6 +987,8 @@ public class DescribeDBInstanceAttribute_MongosAttribute
987987

988988
private string status;
989989

990+
private string currentKernelVersion;
991+
990992
public string VpcCloudInstanceId
991993
{
992994
get
@@ -1130,6 +1132,18 @@ public string Status
11301132
status = value;
11311133
}
11321134
}
1135+
1136+
public string CurrentKernelVersion
1137+
{
1138+
get
1139+
{
1140+
return currentKernelVersion;
1141+
}
1142+
set
1143+
{
1144+
currentKernelVersion = value;
1145+
}
1146+
}
11331147
}
11341148

11351149
public class DescribeDBInstanceAttribute_ShardAttribute
@@ -1159,6 +1173,8 @@ public class DescribeDBInstanceAttribute_ShardAttribute
11591173

11601174
private string maxDiskMbps;
11611175

1176+
private string currentKernelVersion;
1177+
11621178
public string LockMode
11631179
{
11641180
get
@@ -1302,6 +1318,18 @@ public string MaxDiskMbps
13021318
maxDiskMbps = value;
13031319
}
13041320
}
1321+
1322+
public string CurrentKernelVersion
1323+
{
1324+
get
1325+
{
1326+
return currentKernelVersion;
1327+
}
1328+
set
1329+
{
1330+
currentKernelVersion = value;
1331+
}
1332+
}
13051333
}
13061334

13071335
public class DescribeDBInstanceAttribute_ConfigserverAttribute
@@ -1327,6 +1355,8 @@ public class DescribeDBInstanceAttribute_ConfigserverAttribute
13271355

13281356
private string status;
13291357

1358+
private string currentKernelVersion;
1359+
13301360
public int? MaxIOPS
13311361
{
13321362
get
@@ -1446,6 +1476,18 @@ public string Status
14461476
status = value;
14471477
}
14481478
}
1479+
1480+
public string CurrentKernelVersion
1481+
{
1482+
get
1483+
{
1484+
return currentKernelVersion;
1485+
}
1486+
set
1487+
{
1488+
currentKernelVersion = value;
1489+
}
1490+
}
14491491
}
14501492

14511493
public class DescribeDBInstanceAttribute_NetworkAddress

aliyun-net-sdk-dds/Dds/Model/V20151201/DescribeReplicaSetRoleResponse.cs

+14
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ public class DescribeReplicaSetRole_ReplicaSet
8282

8383
private string roleId;
8484

85+
private string connectionType;
86+
8587
public string ConnectionPort
8688
{
8789
get
@@ -153,6 +155,18 @@ public string RoleId
153155
roleId = value;
154156
}
155157
}
158+
159+
public string ConnectionType
160+
{
161+
get
162+
{
163+
return connectionType;
164+
}
165+
set
166+
{
167+
connectionType = value;
168+
}
169+
}
156170
}
157171
}
158172
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.Dds.Transform;
26+
using Aliyun.Acs.Dds.Transform.V20151201;
27+
28+
namespace Aliyun.Acs.Dds.Model.V20151201
29+
{
30+
public class DescribeRestoreDBInstanceListRequest : RpcAcsRequest<DescribeRestoreDBInstanceListResponse>
31+
{
32+
public DescribeRestoreDBInstanceListRequest()
33+
: base("Dds", "2015-12-01", "DescribeRestoreDBInstanceList", "dds", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Dds.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Dds.Endpoint.endpointRegionalType, null);
39+
}
40+
Protocol = ProtocolType.HTTPS;
41+
Method = MethodType.POST;
42+
}
43+
44+
private long? resourceOwnerId;
45+
46+
private string creationTimeAfter;
47+
48+
private int? pageNumber;
49+
50+
private int? pageSize;
51+
52+
private string dBInstanceId;
53+
54+
private string resourceOwnerAccount;
55+
56+
private string ownerAccount;
57+
58+
private long? ownerId;
59+
60+
public long? ResourceOwnerId
61+
{
62+
get
63+
{
64+
return resourceOwnerId;
65+
}
66+
set
67+
{
68+
resourceOwnerId = value;
69+
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
70+
}
71+
}
72+
73+
public string CreationTimeAfter
74+
{
75+
get
76+
{
77+
return creationTimeAfter;
78+
}
79+
set
80+
{
81+
creationTimeAfter = value;
82+
DictionaryUtil.Add(QueryParameters, "CreationTimeAfter", value);
83+
}
84+
}
85+
86+
public int? PageNumber
87+
{
88+
get
89+
{
90+
return pageNumber;
91+
}
92+
set
93+
{
94+
pageNumber = value;
95+
DictionaryUtil.Add(QueryParameters, "PageNumber", value.ToString());
96+
}
97+
}
98+
99+
public int? PageSize
100+
{
101+
get
102+
{
103+
return pageSize;
104+
}
105+
set
106+
{
107+
pageSize = value;
108+
DictionaryUtil.Add(QueryParameters, "PageSize", value.ToString());
109+
}
110+
}
111+
112+
public string DBInstanceId
113+
{
114+
get
115+
{
116+
return dBInstanceId;
117+
}
118+
set
119+
{
120+
dBInstanceId = value;
121+
DictionaryUtil.Add(QueryParameters, "DBInstanceId", value);
122+
}
123+
}
124+
125+
public string ResourceOwnerAccount
126+
{
127+
get
128+
{
129+
return resourceOwnerAccount;
130+
}
131+
set
132+
{
133+
resourceOwnerAccount = value;
134+
DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value);
135+
}
136+
}
137+
138+
public string OwnerAccount
139+
{
140+
get
141+
{
142+
return ownerAccount;
143+
}
144+
set
145+
{
146+
ownerAccount = value;
147+
DictionaryUtil.Add(QueryParameters, "OwnerAccount", value);
148+
}
149+
}
150+
151+
public long? OwnerId
152+
{
153+
get
154+
{
155+
return ownerId;
156+
}
157+
set
158+
{
159+
ownerId = value;
160+
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
161+
}
162+
}
163+
164+
public override DescribeRestoreDBInstanceListResponse GetResponse(UnmarshallerContext unmarshallerContext)
165+
{
166+
return DescribeRestoreDBInstanceListResponseUnmarshaller.Unmarshall(unmarshallerContext);
167+
}
168+
}
169+
}

0 commit comments

Comments
 (0)