Skip to content

Commit de2e98a

Browse files
committed
Change RefreshAssets Public.
1 parent 4551aee commit de2e98a

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

aliyun-java-sdk-sas/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-09-08 Version: 1.1.26
2+
- Change RefreshAssets Public.
3+
14
2022-08-31 Version: 1.1.25
25
- Change GetFileDetectResult Public.
36

aliyun-java-sdk-sas/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-sas</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.1.25</version>
7+
<version>1.1.26</version>
88
<name>aliyun-java-sdk-sas</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-sas/src/main/java/com/aliyuncs/sas/model/v20181203/RefreshAssetsRequest.java

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@
2525
public class RefreshAssetsRequest extends RpcAcsRequest<RefreshAssetsResponse> {
2626

2727

28-
private String assetType;
28+
private Integer cloudAssetSubType;
29+
30+
private String assetType;
31+
32+
private Integer cloudAssetType;
2933
public RefreshAssetsRequest() {
3034
super("Sas", "2018-12-03", "RefreshAssets");
3135
setMethod(MethodType.POST);
@@ -35,6 +39,17 @@ public RefreshAssetsRequest() {
3539
} catch (Exception e) {}
3640
}
3741

42+
public Integer getCloudAssetSubType() {
43+
return this.cloudAssetSubType;
44+
}
45+
46+
public void setCloudAssetSubType(Integer cloudAssetSubType) {
47+
this.cloudAssetSubType = cloudAssetSubType;
48+
if(cloudAssetSubType != null){
49+
putQueryParameter("CloudAssetSubType", cloudAssetSubType.toString());
50+
}
51+
}
52+
3853
public String getAssetType() {
3954
return this.assetType;
4055
}
@@ -44,6 +59,17 @@ public void setAssetType(String assetType) {
4459
if(assetType != null){
4560
putQueryParameter("AssetType", assetType);
4661
}
62+
}
63+
64+
public Integer getCloudAssetType() {
65+
return this.cloudAssetType;
66+
}
67+
68+
public void setCloudAssetType(Integer cloudAssetType) {
69+
this.cloudAssetType = cloudAssetType;
70+
if(cloudAssetType != null){
71+
putQueryParameter("CloudAssetType", cloudAssetType.toString());
72+
}
4773
}
4874

4975
@Override

0 commit comments

Comments
 (0)