SupportsCreating<T> Interface
Type Parameters
- T
the initial blank definition interface
public interface SupportsCreating
Providing access to creating Azure top level resources.
(Note: this interface is not intended to be implemented by user code)
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract T |
define(String name)
Begins a definition for a new resource. |
Method Details
define
public abstract T define(String name)
Begins a definition for a new resource.
This is the beginning of the builder pattern used to create top level resources in Azure. The final method completing the definition and starting the actual resource creation process in Azure is create().
Note that the create() method is only available at the stage of the resource definition that has the minimum set of input parameters specified. If you do not see create() among the available methods, it means you have not yet specified all the required input settings. Input settings generally begin with the word "with", for example: .withNewResourceGroup()
and return the next stage of the resource definition, as an interface in the "fluent interface" style.
Parameters:
Returns:
Applies to
Azure SDK for Java