
org.hawkular.feedcomm.api.DeployApplicationRequest Maven / Gradle / Ivy
The newest version!
package org.hawkular.feedcomm.api;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Deploys an application to a resource. The actual deployment file content must be appended to this JSON message.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"resourcePath",
"destinationFileName"
})
public class DeployApplicationRequest
extends AuthMessage
{
/**
* The inventory path to the resource that is to deploy the application
* (Required)
*
*/
@JsonProperty("resourcePath")
private String resourcePath;
/**
*
* (Required)
*
*/
@JsonProperty("destinationFileName")
private String destinationFileName;
/**
* The inventory path to the resource that is to deploy the application
* (Required)
*
* @return
* The resourcePath
*/
@JsonProperty("resourcePath")
public String getResourcePath() {
return resourcePath;
}
/**
* The inventory path to the resource that is to deploy the application
* (Required)
*
* @param resourcePath
* The resourcePath
*/
@JsonProperty("resourcePath")
public void setResourcePath(String resourcePath) {
this.resourcePath = resourcePath;
}
/**
*
* (Required)
*
* @return
* The destinationFileName
*/
@JsonProperty("destinationFileName")
public String getDestinationFileName() {
return destinationFileName;
}
/**
*
* (Required)
*
* @param destinationFileName
* The destinationFileName
*/
@JsonProperty("destinationFileName")
public void setDestinationFileName(String destinationFileName) {
this.destinationFileName = destinationFileName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy