Interface SpringApp.DefinitionStages.WithDeployment
-
- All Known Subinterfaces:
SpringApp.Definition,SpringApp.DefinitionStages.Blank,SpringApp.DefinitionStages.WithCreate
- Enclosing interface:
- SpringApp.DefinitionStages
public static interface SpringApp.DefinitionStages.WithDeploymentThe stage of a spring app definition allowing to specify an active deployment.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends SpringAppDeployment.DefinitionStages.WithAttach<? extends SpringApp.DefinitionStages.WithCreate,T>>
SpringAppDeployment.DefinitionStages.Blank<T>defineActiveDeployment(String name)Starts the definition of the active deployment for the spring app.SpringApp.DefinitionStages.WithCreatewithDefaultActiveDeployment()Deploys a default package for the spring app with default scale.
-
-
-
Method Detail
-
withDefaultActiveDeployment
SpringApp.DefinitionStages.WithCreate withDefaultActiveDeployment()
Deploys a default package for the spring app with default scale.- Returns:
- the next stage of spring app definition
-
defineActiveDeployment
<T extends SpringAppDeployment.DefinitionStages.WithAttach<? extends SpringApp.DefinitionStages.WithCreate,T>> SpringAppDeployment.DefinitionStages.Blank<T> defineActiveDeployment(String name)
Starts the definition of the active deployment for the spring app.- Type Parameters:
T- derived type ofSpringAppDeployment.DefinitionStages.WithAttach- Parameters:
name- the name of the deployment- Returns:
- the first stage of spring app deployment definition
-
-