Interface SpringApp.UpdateStages.WithServiceBinding
-
- All Known Subinterfaces:
SpringApp.Update
- Enclosing interface:
- SpringApp.UpdateStages
public static interface SpringApp.UpdateStages.WithServiceBindingThe stage of a spring app update allowing to specify the service binding.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SpringApp.UpdatewithoutServiceBinding(String name)Removes a service binding for the spring app.SpringApp.UpdatewithServiceBinding(String name, BindingResourceProperties bindingProperties)Specifies a service binding for the spring app.
-
-
-
Method Detail
-
withServiceBinding
SpringApp.Update withServiceBinding(String name, BindingResourceProperties bindingProperties)
Specifies a service binding for the spring app.- Parameters:
name- the service binding namebindingProperties- the property for the service binding- Returns:
- the next stage of spring app update
-
withoutServiceBinding
SpringApp.Update withoutServiceBinding(String name)
Removes a service binding for the spring app.- Parameters:
name- the service binding name- Returns:
- the next stage of spring app update
-
-