public class Application extends AbstractModel
Constructor and Description |
---|
Application() |
Application(Application source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getCommand()
Get Task execution command
|
String |
getDeliveryForm()
Get Delivery form of the application.
|
Docker |
getDocker()
Get Relevant configuration of the Docker used by the application.
|
String |
getPackagePath()
Get Remote storage path of the application package
|
void |
setCommand(String Command)
Set Task execution command
|
void |
setDeliveryForm(String DeliveryForm)
Set Delivery form of the application.
|
void |
setDocker(Docker Docker)
Set Relevant configuration of the Docker used by the application.
|
void |
setPackagePath(String PackagePath)
Set Remote storage path of the application package
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public Application()
public Application(Application source)
public String getCommand()
public void setCommand(String Command)
Command
- Task execution commandpublic String getDeliveryForm()
public void setDeliveryForm(String DeliveryForm)
DeliveryForm
- Delivery form of the application. Values: `PACKAGE` (package stored in a remote location), `LOCAL` (local computer).public String getPackagePath()
public void setPackagePath(String PackagePath)
PackagePath
- Remote storage path of the application packagepublic Docker getDocker()
public void setDocker(Docker Docker)
Docker
- Relevant configuration of the Docker used by the application. In case that the Docker configuration is used, "LOCAL" DeliveryForm means that the application software inside the Docker image is used directly and run in Docker mode; "PACKAGE" DeliveryForm means that the remote application package is run in Docker mode after being injected into the Docker image. To avoid compatibility issues with different versions of Docker, the Docker installation package and relevant dependencies are taken care of by BatchCompute. For custom images where Docker has already been installed, uninstall Docker first and then use the Docker feature.Copyright © 2023. All rights reserved.