| Package | Description |
|---|---|
| com.azure.resourcemanager.appservice.models |
Package containing the data models for WebSiteManagementClient.
|
| 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
Deploy the script file to
/home/site/scripts/. |
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 |
|---|---|
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,
long length)
Deploy a file to Azure site.
|
void |
SupportsOneDeploy.deploy(DeployType type,
InputStream file,
long length,
DeployOptions deployOptions)
Deploy a file to Azure site.
|
Mono<Void> |
SupportsOneDeploy.deployAsync(DeployType type,
File file)
Deploy a file to Azure site.
|
Mono<Void> |
SupportsOneDeploy.deployAsync(DeployType type,
File file,
DeployOptions deployOptions)
Deploy a file to Azure site.
|
Mono<Void> |
SupportsOneDeploy.deployAsync(DeployType type,
InputStream file,
long length)
Deploy a file to Azure site.
|
Mono<Void> |
SupportsOneDeploy.deployAsync(DeployType type,
InputStream file,
long length,
DeployOptions deployOptions)
Deploy a file to Azure site.
|
Copyright © 2021 Microsoft Corporation. All rights reserved.