public class DeployType extends com.azure.core.util.ExpandableStringEnum<DeployType>
| Modifier and Type | Field and Description |
|---|---|
static DeployType |
EAR
Deploy the ear file to
/home/site/wwwroot/app.ear. |
static DeployType |
JAR
Deploy the jar file to
/home/site/wwwroot/app.jar. |
static DeployType |
JAR_LIB
Deploy the jar to
/home/site/libs. |
static DeployType |
SCRIPT
Deploy the script file to
/home/site/scripts/. |
static DeployType |
SCRIPT_STARTUP
Deploy the script as startup.sh (Linux) or startup.cmd (Windows) to
/home/site/scripts/. |
static DeployType |
STATIC
Deploy the static file to
/home/site/wwwroot/. |
static DeployType |
WAR
Deploy the war file to
/home/site/wwwroot/app.war. |
static DeployType |
ZIP
unzip the zip to
/home/site/wwwroot. |
| Constructor and Description |
|---|
DeployType() |
| Modifier and Type | Method and Description |
|---|---|
static DeployType |
fromString(String name)
Creates or finds a DeployType from its string representation.
|
static Collection<DeployType> |
values() |
public static final DeployType WAR
/home/site/wwwroot/app.war.
If DeployOptions.path is provided, path=webapps/<appname> will behave exactly like wardeploy by
unzipping app to /home/site/wwwroot/webapps/<appname>.public static final DeployType JAR
/home/site/wwwroot/app.jar.public static final DeployType EAR
/home/site/wwwroot/app.ear.public static final DeployType JAR_LIB
/home/site/libs. DeployOptions.path parameter needs to be specified.public static final DeployType STATIC
/home/site/wwwroot/.
DeployOptions.path parameter needs to be specified.public static final DeployType SCRIPT
/home/site/scripts/.
DeployOptions.path parameter needs to be specified.public static final DeployType SCRIPT_STARTUP
/home/site/scripts/.
DeployOptions.path parameter is not supported.public static final DeployType ZIP
/home/site/wwwroot. DeployOptions.path parameter is optional.public static DeployType fromString(String name)
name - a name to look forpublic static Collection<DeployType> values()
Copyright © 2021 Microsoft Corporation. All rights reserved.