Skip to content

Commit

Permalink
Update API.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 5, 2023
1 parent 881f5e9 commit eced59a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-cs/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2023-07-05 Version: 4.8.6
- Update API.

2023-06-20 Version: 4.8.5
- Update API.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-cs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-cs</artifactId>
<packaging>jar</packaging>
<version>4.8.5</version>
<version>4.8.6</version>
<name>aliyun-java-sdk-cs</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ public class UntagResourcesRequest extends RoaAcsRequest<UntagResourcesResponse>

private String region_id;

private String resource_type;
private String resource_type;

private String resource_ids;

private String tag_keys;
public UntagResourcesRequest() {
super("CS", "2015-12-15", "UntagResources");
setUriPattern("/tags");
Expand Down Expand Up @@ -71,6 +75,28 @@ public void setResource_type(String resource_type) {
if(resource_type != null){
putQueryParameter("resource_type", resource_type);
}
}

public String getResource_ids() {
return this.resource_ids;
}

public void setResource_ids(String resource_ids) {
this.resource_ids = resource_ids;
if(resource_ids != null){
putQueryParameter("resource_ids", resource_ids);
}
}

public String getTag_keys() {
return this.tag_keys;
}

public void setTag_keys(String tag_keys) {
this.tag_keys = tag_keys;
if(tag_keys != null){
putQueryParameter("tag_keys", tag_keys);
}
}

@Override
Expand Down

0 comments on commit eced59a

Please sign in to comment.