SupportsBatchDeletion Interface
public interface SupportsBatchDeletion
Provides access to deleting multiple resources from Azure, identifying them by their IDs.
(Note this interface is not intended to be implemented by user code.)
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract void |
deleteByIds(String[] ids)
Deletes the specified resources from Azure. |
abstract void |
deleteByIds(Collection<String> ids)
Deletes the specified resources from Azure. |
abstract Flux<String> |
deleteByIdsAsync(String[] ids)
Deletes the specified resources from Azure asynchronously and in parallel. |
abstract Flux<String> |
deleteByIdsAsync(Collection<String> ids)
Deletes the specified resources from Azure asynchronously and in parallel. |
Method Details
deleteByIds
public abstract void deleteByIds(String[] ids)
Deletes the specified resources from Azure.
Parameters:
deleteByIds
public abstract void deleteByIds(Collection
Deletes the specified resources from Azure.
Parameters:
deleteByIdsAsync
public abstract Flux
Deletes the specified resources from Azure asynchronously and in parallel.
Parameters:
Returns:
deleteByIdsAsync
public abstract Flux
Deletes the specified resources from Azure asynchronously and in parallel.
Parameters:
Returns:
Applies to
Azure SDK for Java