WebApp Interface
Implements
public interface WebApp
extends WebAppBasic, SupportsOneDeploy, WebAppBase, Updatable<Update>, SupportsListingPrivateLinkResource, SupportsListingPrivateEndpointConnection, SupportsUpdatingPrivateEndpointConnection
An immutable client-side representation of an Azure Web App.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract
Deployment |
deploymentSlots() |
abstract void |
warDeploy(File warFile)
Deploys a WAR file onto the Azure specialized Tomcat on this web app. |
abstract void |
warDeploy(File warFile, String appName)
Deploys a WAR file onto the Azure specialized Tomcat on this web app. |
abstract void |
warDeploy(InputStream warFile, long length)
Deploys a WAR file onto the Azure specialized Tomcat on this web app. |
abstract void |
warDeploy(InputStream warFile, long length, String appName)
Deploys a WAR file onto the Azure specialized Tomcat on this web app. |
abstract Mono<Void> |
warDeployAsync(File warFile)
Deploys a WAR file onto the Azure specialized Tomcat on this web app. |
abstract Mono<Void> |
warDeployAsync(File warFile, String appName)
Deploys a WAR file onto the Azure specialized Tomcat on this web app. |
abstract Mono<Void> |
warDeployAsync(InputStream warFile, long length)
Deploys a WAR file onto the Azure specialized Tomcat on this web app. |
abstract Mono<Void> |
warDeployAsync(InputStream warFile, long length, String appName)
Deploys a WAR file onto the Azure specialized Tomcat on this web app. |
Method Details
deploymentSlots
public abstract DeploymentSlots deploymentSlots()
Returns:
warDeploy
public abstract void warDeploy(File warFile)
Deploys a WAR file onto the Azure specialized Tomcat on this web app.
Parameters:
warDeploy
public abstract void warDeploy(File warFile, String appName)
Deploys a WAR file onto the Azure specialized Tomcat on this web app.
Parameters:
warDeploy
public abstract void warDeploy(InputStream warFile, long length)
Deploys a WAR file onto the Azure specialized Tomcat on this web app.
Retry by client is required if error happens, due to nature of the stream.
Parameters:
warDeploy
public abstract void warDeploy(InputStream warFile, long length, String appName)
Deploys a WAR file onto the Azure specialized Tomcat on this web app.
Retry by client is required if error happens, due to nature of the stream.
Parameters:
warDeployAsync
public abstract Mono
Deploys a WAR file onto the Azure specialized Tomcat on this web app.
Parameters:
Returns:
warDeployAsync
public abstract Mono
Deploys a WAR file onto the Azure specialized Tomcat on this web app.
Parameters:
Returns:
warDeployAsync
public abstract Mono
Deploys a WAR file onto the Azure specialized Tomcat on this web app.
Retry by client is required if error happens, due to nature of the stream.
Parameters:
Returns:
warDeployAsync
public abstract Mono
Deploys a WAR file onto the Azure specialized Tomcat on this web app.
Retry by client is required if error happens, due to nature of the stream.
Parameters:
Returns:
Applies to
Azure SDK for Java