Interface Appliable<T>
-
- Type Parameters:
T- the type of the resource returned from the update.
- All Superinterfaces:
Indexable
- All Known Subinterfaces:
Deployment.Update,GenericResource.Update,ManagementLock.Update,PolicyDefinition.Update,ResourceGroup.Update
public interface Appliable<T> extends Indexable
The base interface for all template interfaces that support update operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tapply()Execute the update request.Tapply(com.azure.core.util.Context context)Execute the update request.Mono<T>applyAsync()Execute the update request asynchronously.Mono<T>applyAsync(com.azure.core.util.Context context)Execute the update request asynchronously.
-
-
-
Method Detail
-
apply
T apply()
Execute the update request.- Returns:
- the updated resource
-
applyAsync
Mono<T> applyAsync()
Execute the update request asynchronously.- Returns:
- the publisher of the resource update request
-
apply
T apply(com.azure.core.util.Context context)
Execute the update request.- Parameters:
context- theContextof the request- Returns:
- the updated resource
-
-