Skip to content

Commit 5e1f978

Browse files
committed
DescribeLicenseCodes support filter by mac address or system id.
1 parent a14f936 commit 5e1f978

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

aliyun-java-sdk-polardb/ChangeLog.txt

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.52
2+
- DescribeLicenseCodes support filter by mac address or system id.
3+
14
2025-01-20 Version: 1.8.51
25
- Generated 2017-08-01 for `polardb`.
36

aliyun-java-sdk-polardb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-polardb</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.8.51</version>
7+
<version>1.8.52</version>
88
<name>aliyun-java-sdk-polardb</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-polardb/src/main/java/com/aliyuncs/polardb/model/v20170801/DescribeActivationCodesRequest.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ public class DescribeActivationCodesRequest extends RpcAcsRequest<DescribeActiva
3434

3535
private String aliyunOrderId;
3636

37+
private String macAddress;
38+
39+
private String systemIdentifier;
40+
3741
private String resourceOwnerAccount;
3842

3943
private String ownerAccount;
@@ -93,6 +97,28 @@ public void setAliyunOrderId(String aliyunOrderId) {
9397
}
9498
}
9599

100+
public String getMacAddress() {
101+
return this.macAddress;
102+
}
103+
104+
public void setMacAddress(String macAddress) {
105+
this.macAddress = macAddress;
106+
if(macAddress != null){
107+
putQueryParameter("MacAddress", macAddress);
108+
}
109+
}
110+
111+
public String getSystemIdentifier() {
112+
return this.systemIdentifier;
113+
}
114+
115+
public void setSystemIdentifier(String systemIdentifier) {
116+
this.systemIdentifier = systemIdentifier;
117+
if(systemIdentifier != null){
118+
putQueryParameter("SystemIdentifier", systemIdentifier);
119+
}
120+
}
121+
96122
public String getResourceOwnerAccount() {
97123
return this.resourceOwnerAccount;
98124
}

0 commit comments

Comments
 (0)