ResourceT - the top level Azure resource typepublic interface SupportsBatchCreation<ResourceT extends Indexable>
(Note: this interface is not intended to be implemented by user code)
| Modifier and Type | Method and Description |
|---|---|
CreatedResources<ResourceT> |
create(Creatable<ResourceT>... creatables)
Executes the create requests on a collection (batch) of resources.
|
CreatedResources<ResourceT> |
create(List<? extends Creatable<ResourceT>> creatables)
Executes the create requests on a collection (batch) of resources.
|
Flux<ResourceT> |
createAsync(Creatable<ResourceT>... creatables)
Puts the requests to create a batch of resources into the queue and allow the HTTP client to execute it when
system resources are available.
|
Flux<ResourceT> |
createAsync(List<? extends Creatable<ResourceT>> creatables)
Puts the requests to create a batch of resources into the queue and allow the HTTP client to execute it when
system resources are available.
|
CreatedResources<ResourceT> create(Creatable<ResourceT>... creatables)
creatables - the creatables in the batchCreatedResources<ResourceT> create(List<? extends Creatable<ResourceT>> creatables)
creatables - the list of creatables in the batchFlux<ResourceT> createAsync(Creatable<ResourceT>... creatables)
creatables - the creatables in the batchMono that emits the found resource asynchronously.Flux<ResourceT> createAsync(List<? extends Creatable<ResourceT>> creatables)
creatables - the list of creatables in the batchMono that emits the found resource asynchronously.Copyright © 2021 Microsoft Corporation. All rights reserved.