public interface SupportsBatchDeletion
(Note this interface is not intended to be implemented by user code.)
| Modifier and Type | Method and Description |
|---|---|
void |
deleteByIds(Collection<String> ids)
Deletes the specified resources from Azure.
|
void |
deleteByIds(String... ids)
Deletes the specified resources from Azure.
|
Flux<String> |
deleteByIdsAsync(Collection<String> ids)
Deletes the specified resources from Azure asynchronously and in parallel.
|
Flux<String> |
deleteByIdsAsync(String... ids)
Deletes the specified resources from Azure asynchronously and in parallel.
|
Flux<String> deleteByIdsAsync(Collection<String> ids)
ids - resource IDs of the resources to be deletedFlux<String> deleteByIdsAsync(String... ids)
ids - resource IDs of the resources to be deletedvoid deleteByIds(Collection<String> ids)
ids - resource IDs of the resources to be deletedvoid deleteByIds(String... ids)
ids - resource IDs of the resources to be deletedCopyright © 2021 Microsoft Corporation. All rights reserved.