Class DeployType
java.lang.Object
com.microsoft.rest.ExpandableStringEnum<DeployType>
com.microsoft.azure.management.appservice.DeployType
OneDeploy type.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DeployType
Deploy the ear file to/home/site/wwwroot/app.ear
.static final DeployType
Deploy the jar file to/home/site/wwwroot/app.jar
.static final DeployType
Deploy the jar to/home/site/libs
.static final DeployType
Deploy the script file to/home/site/scripts/
.static final DeployType
Deploy the script as startup.sh (Linux) or startup.cmd (Windows) to/home/site/scripts/
.static final DeployType
Deploy the static file to/home/site/wwwroot/
.static final DeployType
Deploy the war file to/home/site/wwwroot/app.war
.static final DeployType
unzip the zip to/home/site/wwwroot
. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DeployType
fromString
(String name) Creates or finds a DeployType from its string representation.static Collection<DeployType>
values()
Methods inherited from class com.microsoft.rest.ExpandableStringEnum
equals, fromString, hashCode, toString, values, withNameValue
-
Field Details
-
WAR
Deploy the war file to/home/site/wwwroot/app.war
. IfDeployOptions.path
is provided,path=webapps/<appname>
will behave exactly like wardeploy by unzipping app to/home/site/wwwroot/webapps/<appname>
. -
JAR
Deploy the jar file to/home/site/wwwroot/app.jar
. -
EAR
Deploy the ear file to/home/site/wwwroot/app.ear
. -
JAR_LIB
Deploy the jar to/home/site/libs
.DeployOptions.path
parameter needs to be specified. -
STATIC
Deploy the static file to/home/site/wwwroot/
.DeployOptions.path
parameter needs to be specified. -
SCRIPT
Deploy the script file to/home/site/scripts/
.DeployOptions.path
parameter needs to be specified. -
SCRIPT_STARTUP
Deploy the script as startup.sh (Linux) or startup.cmd (Windows) to/home/site/scripts/
.DeployOptions.path
parameter is not supported. -
ZIP
unzip the zip to/home/site/wwwroot
.DeployOptions.path
parameter is optional.
-
-
Constructor Details
-
DeployType
public DeployType()
-
-
Method Details
-
fromString
Creates or finds a DeployType from its string representation.- Parameters:
name
- a name to look for- Returns:
- the corresponding DeployType
-
values
- Returns:
- known DeployType type values
-