Interface SupportsOneDeploy
-
- All Known Subinterfaces:
DeploymentSlot,WebApp
public interface SupportsOneDeployProvides access to OneDeploy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeploy(DeployType type, File file)Deploy a file to Azure site.voiddeploy(DeployType type, File file, DeployOptions deployOptions)Deploy a file to Azure site.voiddeploy(DeployType type, InputStream file, long length)Deploy a file to Azure site.voiddeploy(DeployType type, InputStream file, long length, DeployOptions deployOptions)Deploy a file to Azure site.Mono<Void>deployAsync(DeployType type, File file)Deploy a file to Azure site.Mono<Void>deployAsync(DeployType type, File file, DeployOptions deployOptions)Deploy a file to Azure site.Mono<Void>deployAsync(DeployType type, InputStream file, long length)Deploy a file to Azure site.Mono<Void>deployAsync(DeployType type, InputStream file, long length, DeployOptions deployOptions)Deploy a file to Azure site.KuduDeploymentResultpushDeploy(DeployType type, File file, DeployOptions deployOptions)Deploy a file to Azure site.Mono<KuduDeploymentResult>pushDeployAsync(DeployType type, File file, DeployOptions deployOptions)Deploy a file to Azure site.
-
-
-
Method Detail
-
deploy
void deploy(DeployType type, File file)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to upload
-
deployAsync
Mono<Void> deployAsync(DeployType type, File file)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to upload- Returns:
- the completable of the operation
-
deploy
void deploy(DeployType type, File file, DeployOptions deployOptions)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to uploaddeployOptions- the deploy options
-
deployAsync
Mono<Void> deployAsync(DeployType type, File file, DeployOptions deployOptions)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to uploaddeployOptions- the deploy options- Returns:
- the completable of the operation
-
deploy
void deploy(DeployType type, InputStream file, long length)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to uploadlength- the length of the file
-
deployAsync
Mono<Void> deployAsync(DeployType type, InputStream file, long length)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to uploadlength- the length of the file- Returns:
- the completable of the operation
-
deploy
void deploy(DeployType type, InputStream file, long length, DeployOptions deployOptions)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to uploadlength- the length of the filedeployOptions- the deploy options
-
deployAsync
Mono<Void> deployAsync(DeployType type, InputStream file, long length, DeployOptions deployOptions)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to uploadlength- the length of the filedeployOptions- the deploy options- Returns:
- the completable of the operation
-
pushDeploy
KuduDeploymentResult pushDeploy(DeployType type, File file, DeployOptions deployOptions)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to uploaddeployOptions- the deploy options- Returns:
- the result of the deployment, which contains the deployment ID for query on the deployment status
if
DeployOptions.withTrackDeployment(Boolean)set to True.
-
pushDeployAsync
Mono<KuduDeploymentResult> pushDeployAsync(DeployType type, File file, DeployOptions deployOptions)
Deploy a file to Azure site.- Parameters:
type- the deploy typefile- the file to uploaddeployOptions- the deploy options- Returns:
- the result of the deployment, which contains the deployment ID for query on the deployment status
if
DeployOptions.withTrackDeployment(Boolean)set to True.
-
-