Interface BatchAccount.UpdateStages.WithApplication
-
- All Known Subinterfaces:
BatchAccount.Update
- Enclosing interface:
- BatchAccount.UpdateStages
public static interface BatchAccount.UpdateStages.WithApplicationThe stage of a Batch account definition allowing the creation of a Batch application.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Application.UpdateDefinitionStages.Blank<BatchAccount.Update>defineNewApplication(String applicationId)Starts a definition of an application to be created in the Batch account.Application.UpdateupdateApplication(String applicationId)Begins the description of an update of an existing Batch application in this Batch account.BatchAccount.UpdatewithoutApplication(String applicationId)Removes the specified application from the Batch account.
-
-
-
Method Detail
-
defineNewApplication
Application.UpdateDefinitionStages.Blank<BatchAccount.Update> defineNewApplication(String applicationId)
Starts a definition of an application to be created in the Batch account.- Parameters:
applicationId- the reference name for the application- Returns:
- the first stage of a Batch application definition
-
updateApplication
Application.Update updateApplication(String applicationId)
Begins the description of an update of an existing Batch application in this Batch account.- Parameters:
applicationId- the reference name of the application to be updated- Returns:
- the first stage of a Batch application update
-
withoutApplication
BatchAccount.Update withoutApplication(String applicationId)
Removes the specified application from the Batch account.- Parameters:
applicationId- the reference name for the application to be removed- Returns:
- the next stage of the update
-
-