Skip to content

Commit

Permalink
ECS SDK Auto Released By zemin.lzm,Version:4.9.5
Browse files Browse the repository at this point in the history
发布日志:
1, Support describePrice for market image, add return detailInfo in interface describePrice
  • Loading branch information
jxyowen committed Jul 31, 2018
1 parent f6a8fd7 commit e894eea
Show file tree
Hide file tree
Showing 26 changed files with 565 additions and 4 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-ecs/ChangeLog.txt
@@ -1,3 +1,6 @@
2018-07-31 Version: 4.9.5
1, Support describePrice for market image, add return detailInfo in interface describePrice

2018-07-06 Version: 4.9.4
1, The interface DescribeInstanceTypes add the parameter InstanceFamilyLevel of result data
2, The interface DescribeAvailableResource add two filter fators , there are cores and memory.
Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-ecs/pom.xml
Expand Up @@ -3,7 +3,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-ecs</artifactId>
<packaging>jar</packaging>
<version>4.9.4</version>
<version>4.9.5</version>
<name>aliyun-java-sdk-ecs</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Expand Up @@ -127,6 +127,8 @@ public static class Image {

private Boolean isCopied;

private String resourceGroupId;

private List<DiskDeviceMapping> diskDeviceMappings;

private List<Tag> tags;
Expand Down Expand Up @@ -291,6 +293,14 @@ public void setIsCopied(Boolean isCopied) {
this.isCopied = isCopied;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}

public List<DiskDeviceMapping> getDiskDeviceMappings() {
return this.diskDeviceMappings;
}
Expand Down
Expand Up @@ -34,8 +34,14 @@ public DescribeInstanceAutoRenewAttributeRequest() {

private String ownerAccount;

private String renewalStatus;

private String pageSize;

private Long ownerId;

private String pageNumber;

public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
Expand Down Expand Up @@ -80,6 +86,28 @@ public void setOwnerAccount(String ownerAccount) {
}
}

public String getRenewalStatus() {
return this.renewalStatus;
}

public void setRenewalStatus(String renewalStatus) {
this.renewalStatus = renewalStatus;
if(renewalStatus != null){
putQueryParameter("RenewalStatus", renewalStatus);
}
}

public String getPageSize() {
return this.pageSize;
}

public void setPageSize(String pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize);
}
}

public Long getOwnerId() {
return this.ownerId;
}
Expand All @@ -89,6 +117,17 @@ public void setOwnerId(Long ownerId) {
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}

public String getPageNumber() {
return this.pageNumber;
}

public void setPageNumber(String pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber);
}
}

@Override
Expand Down
Expand Up @@ -27,6 +27,12 @@ public class DescribeInstanceAutoRenewAttributeResponse extends AcsResponse {

private String requestId;

private Integer pageNumber;

private Integer pageSize;

private Integer totalCount;

private List<InstanceRenewAttribute> instanceRenewAttributes;

public String getRequestId() {
Expand All @@ -37,6 +43,30 @@ public void setRequestId(String requestId) {
this.requestId = requestId;
}

public Integer getPageNumber() {
return this.pageNumber;
}

public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}

public Integer getPageSize() {
return this.pageSize;
}

public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}

public Integer getTotalCount() {
return this.totalCount;
}

public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}

public List<InstanceRenewAttribute> getInstanceRenewAttributes() {
return this.instanceRenewAttributes;
}
Expand Down
Expand Up @@ -81,6 +81,10 @@ public static class KeyPair {

private String keyPairFingerPrint;

private String resourceGroupId;

private List<Tag> tags;

public String getKeyPairName() {
return this.keyPairName;
}
Expand All @@ -96,6 +100,45 @@ public String getKeyPairFingerPrint() {
public void setKeyPairFingerPrint(String keyPairFingerPrint) {
this.keyPairFingerPrint = keyPairFingerPrint;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}

public List<Tag> getTags() {
return this.tags;
}

public void setTags(List<Tag> tags) {
this.tags = tags;
}

public static class Tag {

private String tagKey;

private String tagValue;

public String getTagKey() {
return this.tagKey;
}

public void setTagKey(String tagKey) {
this.tagKey = tagKey;
}

public String getTagValue() {
return this.tagValue;
}

public void setTagValue(String tagValue) {
this.tagValue = tagValue;
}
}
}

@Override
Expand Down
Expand Up @@ -91,6 +91,10 @@ public static class LaunchTemplateSet {

private String createdBy;

private String resourceGroupId;

private List<Tag> tags;

public String getCreateTime() {
return this.createTime;
}
Expand Down Expand Up @@ -146,6 +150,45 @@ public String getCreatedBy() {
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}

public List<Tag> getTags() {
return this.tags;
}

public void setTags(List<Tag> tags) {
this.tags = tags;
}

public static class Tag {

private String tagKey;

private String tagValue;

public String getTagKey() {
return this.tagKey;
}

public void setTagKey(String tagKey) {
this.tagKey = tagKey;
}

public String getTagValue() {
return this.tagValue;
}

public void setTagValue(String tagValue) {
this.tagValue = tagValue;
}
}
}

@Override
Expand Down
Expand Up @@ -101,8 +101,12 @@ public static class NetworkInterfaceSet {

private String creationTime;

private String resourceGroupId;

private List<PrivateIpSet> privateIpSets;

private List<Tag> tags;

private List<String> securityGroupIds;

private AssociatedPublicIp associatedPublicIp;
Expand Down Expand Up @@ -203,6 +207,14 @@ public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}

public List<PrivateIpSet> getPrivateIpSets() {
return this.privateIpSets;
}
Expand All @@ -211,6 +223,14 @@ public void setPrivateIpSets(List<PrivateIpSet> privateIpSets) {
this.privateIpSets = privateIpSets;
}

public List<Tag> getTags() {
return this.tags;
}

public void setTags(List<Tag> tags) {
this.tags = tags;
}

public List<String> getSecurityGroupIds() {
return this.securityGroupIds;
}
Expand Down Expand Up @@ -283,6 +303,29 @@ public void setAllocationId(String allocationId) {
}
}

public static class Tag {

private String tagKey;

private String tagValue;

public String getTagKey() {
return this.tagKey;
}

public void setTagKey(String tagKey) {
this.tagKey = tagKey;
}

public String getTagValue() {
return this.tagValue;
}

public void setTagValue(String tagValue) {
this.tagValue = tagValue;
}
}

public static class AssociatedPublicIp {

private String publicIpAddress;
Expand Down

0 comments on commit e894eea

Please sign in to comment.