Skip to content

Commit 1a5345c

Browse files
committed
DescribeLicenseCodes support filter by mac address or system id.
1 parent adc2ae6 commit 1a5345c

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-02-06 Version: 1.8.25
2+
- DescribeLicenseCodes support filter by mac address or system id.
3+
14
2025-01-24 Version: 1.0.1
25
- Init.
36

aliyun-net-sdk-polardb/Polardb/Model/V20170801/DescribeActivationCodesRequest.cs

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ public DescribeActivationCodesRequest()
4949

5050
private string aliyunOrderId;
5151

52+
private string macAddress;
53+
54+
private string systemIdentifier;
55+
5256
private string resourceOwnerAccount;
5357

5458
private string ownerAccount;
@@ -107,6 +111,32 @@ public string AliyunOrderId
107111
}
108112
}
109113

114+
public string MacAddress
115+
{
116+
get
117+
{
118+
return macAddress;
119+
}
120+
set
121+
{
122+
macAddress = value;
123+
DictionaryUtil.Add(QueryParameters, "MacAddress", value);
124+
}
125+
}
126+
127+
public string SystemIdentifier
128+
{
129+
get
130+
{
131+
return systemIdentifier;
132+
}
133+
set
134+
{
135+
systemIdentifier = value;
136+
DictionaryUtil.Add(QueryParameters, "SystemIdentifier", value);
137+
}
138+
}
139+
110140
public string ResourceOwnerAccount
111141
{
112142
get

aliyun-net-sdk-polardb/aliyun-net-sdk-polardb.vs2017.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.polardb</RootNamespace>
6-
<Version>1.8.24</Version>
6+
<Version>1.8.25</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)