Interface Updatable<T>
-
- Type Parameters:
T- the fluent type of the resource
- All Known Subinterfaces:
Deployment,GenericResource,ManagementLock,PolicyDefinition,ResourceGroup
public interface Updatable<T>Base class for resource that can be updated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tupdate()Begins an update for a new resource.
-
-
-
Method Detail
-
update
T update()
Begins an update for a new resource.This is the beginning of the builder pattern used to update top level resources in Azure. The final method completing the definition and starting the actual resource creation process in Azure is
Appliable.apply().- Returns:
- the stage of new resource update
-
-