| Modifier and Type | Field and Description |
|---|---|
static DeployType |
DeployType.EAR
Deploy the ear file to
/home/site/wwwroot/app.ear. |
static DeployType |
DeployType.JAR
Deploy the jar file to
/home/site/wwwroot/app.jar. |
static DeployType |
DeployType.JAR_LIB
Deploy the jar to
/home/site/libs. |
static DeployType |
DeployType.SCRIPT_STARTUP
Deploy the script as startup.sh (Linux) or startup.cmd (Windows) to
/home/site/scripts/. |
static DeployType |
DeployType.STATIC
Deploy the static file to
/home/site/wwwroot/. |
static DeployType |
DeployType.WAR
Deploy the war file to
/home/site/wwwroot/app.war. |
static DeployType |
DeployType.ZIP
unzip the zip to
/home/site/wwwroot. |
| Modifier and Type | Method and Description |
|---|---|
static DeployType |
DeployType.fromString(String name)
Creates or finds a DeployType from its string representation.
|
| Modifier and Type | Method and Description |
|---|---|
static Collection<DeployType> |
DeployType.values() |
| Modifier and Type | Method and Description |
|---|---|
void |
SupportsOneDeploy.deploy(DeployType type,
File file)
Deploy a file to Azure site.
|
void |
SupportsOneDeploy.deploy(DeployType type,
File file,
DeployOptions deployOptions)
Deploy a file to Azure site.
|
void |
SupportsOneDeploy.deploy(DeployType type,
InputStream file)
Deploy a file to Azure site.
|
void |
SupportsOneDeploy.deploy(DeployType type,
InputStream file,
DeployOptions deployOptions)
Deploy a file to Azure site.
|
rx.Completable |
SupportsOneDeploy.deployAsync(DeployType type,
File file)
Deploy a file to Azure site.
|
rx.Completable |
SupportsOneDeploy.deployAsync(DeployType type,
File file,
DeployOptions deployOptions)
Deploy a file to Azure site.
|
rx.Completable |
SupportsOneDeploy.deployAsync(DeployType type,
InputStream file)
Deploy a file to Azure site.
|
rx.Completable |
SupportsOneDeploy.deployAsync(DeployType type,
InputStream file,
DeployOptions deployOptions)
Deploy a file to Azure site.
|
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/