com.aliyuncs.batchcompute.pojo.v20151111.Parameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-batchcompute Show documentation
Show all versions of aliyun-java-sdk-batchcompute Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
package com.aliyuncs.batchcompute.pojo.v20151111;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Created by guangchun.luo on 15/12/5.
*/
@JsonIgnoreProperties(ignoreUnknown = true) @JsonInclude(JsonInclude.Include.NON_DEFAULT)
public class Parameters {
@JsonProperty("Command")
private Command command;
@JsonProperty("InputMappingConfig")
private InputMappingConfig inputMappingConfig;
@JsonProperty("StdoutRedirectPath")
private String stdoutRedirectPath;
@JsonProperty("StderrRedirectPath")
private String stderrRedirectPath;
@JsonIgnore
public Command getCommand() {
return command;
}
@JsonIgnore
public void setCommand(Command command) {
this.command = command;
}
@JsonIgnore
public InputMappingConfig getInputMappingConfig() {
return inputMappingConfig;
}
@JsonIgnore
public void setInputMappingConfig(InputMappingConfig inputMappingConfig) {
this.inputMappingConfig = inputMappingConfig;
}
@JsonIgnore
public String getStdoutRedirectPath() {
return stdoutRedirectPath;
}
@JsonIgnore
public void setStdoutRedirectPath(String stdoutRedirectPath) {
this.stdoutRedirectPath = stdoutRedirectPath;
}
@JsonIgnore
public String getStderrRedirectPath() {
return stderrRedirectPath;
}
@JsonIgnore
public void setStderrRedirectPath(String stderrRedirectPath) {
this.stderrRedirectPath = stderrRedirectPath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy