com.aliyuncs.ecs.model.v20140526.DescribeActivationsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-ecs Show documentation
Show all versions of aliyun-java-sdk-ecs Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.ecs.model.v20140526;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ecs.transform.v20140526.DescribeActivationsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeActivationsResponse extends AcsResponse {
private Long pageSize;
private String requestId;
private Long pageNumber;
private Long totalCount;
private String nextToken;
private List activationList;
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public List getActivationList() {
return this.activationList;
}
public void setActivationList(List activationList) {
this.activationList = activationList;
}
public static class Activation {
private String creationTime;
private Integer deregisteredCount;
private Integer instanceCount;
private String description;
private Integer registeredCount;
private String instanceName;
private Boolean disabled;
private String ipAddressRange;
private Long timeToLiveInHours;
private String activationId;
private String resourceGroupId;
private List tags;
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public Integer getDeregisteredCount() {
return this.deregisteredCount;
}
public void setDeregisteredCount(Integer deregisteredCount) {
this.deregisteredCount = deregisteredCount;
}
public Integer getInstanceCount() {
return this.instanceCount;
}
public void setInstanceCount(Integer instanceCount) {
this.instanceCount = instanceCount;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getRegisteredCount() {
return this.registeredCount;
}
public void setRegisteredCount(Integer registeredCount) {
this.registeredCount = registeredCount;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public Boolean getDisabled() {
return this.disabled;
}
public void setDisabled(Boolean disabled) {
this.disabled = disabled;
}
public String getIpAddressRange() {
return this.ipAddressRange;
}
public void setIpAddressRange(String ipAddressRange) {
this.ipAddressRange = ipAddressRange;
}
public Long getTimeToLiveInHours() {
return this.timeToLiveInHours;
}
public void setTimeToLiveInHours(Long timeToLiveInHours) {
this.timeToLiveInHours = timeToLiveInHours;
}
public String getActivationId() {
return this.activationId;
}
public void setActivationId(String activationId) {
this.activationId = activationId;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
public List getTags() {
return this.tags;
}
public void setTags(List 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
public DescribeActivationsResponse getInstance(UnmarshallerContext context) {
return DescribeActivationsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy