com.aliyuncs.ecs.model.v20140526.DescribeSendFileResultsResponse 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.DescribeSendFileResultsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSendFileResultsResponse extends AcsResponse {
private Long pageSize;
private String requestId;
private Long pageNumber;
private Long totalCount;
private String nextToken;
private List invocations;
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 getInvocations() {
return this.invocations;
}
public void setInvocations(List invocations) {
this.invocations = invocations;
}
public static class Invocation {
private String creationTime;
private String invocationStatus;
private String contentType;
private String targetDir;
private String fileOwner;
private String description;
private Integer vmCount;
private String fileMode;
private String fileGroup;
private String invokeId;
private String name;
private String content;
private String overwrite;
private List invokeInstances;
private List tags;
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getInvocationStatus() {
return this.invocationStatus;
}
public void setInvocationStatus(String invocationStatus) {
this.invocationStatus = invocationStatus;
}
public String getContentType() {
return this.contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public String getTargetDir() {
return this.targetDir;
}
public void setTargetDir(String targetDir) {
this.targetDir = targetDir;
}
public String getFileOwner() {
return this.fileOwner;
}
public void setFileOwner(String fileOwner) {
this.fileOwner = fileOwner;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getVmCount() {
return this.vmCount;
}
public void setVmCount(Integer vmCount) {
this.vmCount = vmCount;
}
public String getFileMode() {
return this.fileMode;
}
public void setFileMode(String fileMode) {
this.fileMode = fileMode;
}
public String getFileGroup() {
return this.fileGroup;
}
public void setFileGroup(String fileGroup) {
this.fileGroup = fileGroup;
}
public String getInvokeId() {
return this.invokeId;
}
public void setInvokeId(String invokeId) {
this.invokeId = invokeId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getOverwrite() {
return this.overwrite;
}
public void setOverwrite(String overwrite) {
this.overwrite = overwrite;
}
public List getInvokeInstances() {
return this.invokeInstances;
}
public void setInvokeInstances(List invokeInstances) {
this.invokeInstances = invokeInstances;
}
public List getTags() {
return this.tags;
}
public void setTags(List tags) {
this.tags = tags;
}
public static class InvokeInstance {
private String creationTime;
private String startTime;
private String invocationStatus;
private String finishTime;
private String updateTime;
private String errorInfo;
private String errorCode;
private String instanceId;
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getInvocationStatus() {
return this.invocationStatus;
}
public void setInvocationStatus(String invocationStatus) {
this.invocationStatus = invocationStatus;
}
public String getFinishTime() {
return this.finishTime;
}
public void setFinishTime(String finishTime) {
this.finishTime = finishTime;
}
public String getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getErrorInfo() {
return this.errorInfo;
}
public void setErrorInfo(String errorInfo) {
this.errorInfo = errorInfo;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
}
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 DescribeSendFileResultsResponse getInstance(UnmarshallerContext context) {
return DescribeSendFileResultsResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy