Deployments Interface
public interface Deployments extends SupportsCreating<Deployment.DefinitionStages.Blank>,SupportsListing,SupportsListingByResourceGroup,SupportsGettingByName,SupportsGettingByResourceGroup,SupportsGettingById,SupportsDeletingById,SupportsDeletingByResourceGroup,HasManager
Entry point to template deployment in Azure.
Method Summary
Modifier and Type | Method and Description |
---|---|
boolean |
checkExistence(String resourceGroupName, String deploymentName)
Checks if a deployment exists in a resource group. |
Inherited Members
SupportsCreating<T>.define(String name)
SupportsDeletingById.deleteById(String id)
SupportsDeletingById.deleteByIdAsync(String id, ServiceCallback<Void> callback)
SupportsDeletingById.deleteByIdAsync(String id)
SupportsDeletingByResourceGroup.deleteByResourceGroup(String resourceGroupName, String name)
SupportsDeletingByResourceGroup.deleteByResourceGroupAsync(String resourceGroupName, String name, ServiceCallback<Void> callback)
SupportsDeletingByResourceGroup.deleteByResourceGroupAsync(String resourceGroupName, String name)
SupportsGettingById<T>.getById(String id)
SupportsGettingById<T>.getByIdAsync(String id)
SupportsGettingById<T>.getByIdAsync(String id, ServiceCallback<T> callback)
SupportsGettingByName<T>.getByName(String name)
SupportsGettingByResourceGroup<T>.getByResourceGroup(String resourceGroupName, String name)
SupportsGettingByResourceGroup<T>.getByResourceGroupAsync(String resourceGroupName, String name)
SupportsGettingByResourceGroup<T>.getByResourceGroupAsync(String resourceGroupName, String name, ServiceCallback<T> callback)
SupportsListing<T>.list()
SupportsListing<T>.listAsync()
SupportsListingByResourceGroup<T>.listByResourceGroup(String resourceGroupName)
SupportsListingByResourceGroup<T>.listByResourceGroupAsync(String resourceGroupName)
HasManager<ManagerT>.manager()
Method Details
checkExistence
public boolean checkExistence(String resourceGroupName, String deploymentName)
Checks if a deployment exists in a resource group.
Parameters:
resourceGroupName
- the resource group's name
deploymentName
- the deployment's name
Returns:
true if the deployment exists; false otherwise
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Java