Package com.azure.cosmos
Class CosmosAsyncTrigger
java.lang.Object
com.azure.cosmos.CosmosAsyncTrigger
The type Cosmos async trigger. This contains methods to operate on a cosmos trigger asynchronously
-
Method Summary
Modifier and TypeMethodDescriptiondelete()
Deletes a cosmos trigger.getId()
Get the id of theCosmosAsyncTrigger
read()
Reads a cosmos triggerreplace
(CosmosTriggerProperties triggerProperties) Replaces a cosmos trigger.
-
Method Details
-
getId
Get the id of theCosmosAsyncTrigger
- Returns:
- the id of the
CosmosAsyncTrigger
-
read
Reads a cosmos triggerAfter subscription the operation will be performed. The
Mono
upon successful completion will contain a single resource response for the read trigger. In case of failure theMono
will error.- Returns:
- an
Mono
containing the single resource response for the read cosmos trigger or an error.
-
replace
Replaces a cosmos trigger.After subscription the operation will be performed. The
Mono
upon successful completion will contain a single resource response with the replaced trigger. In case of failure theMono
will error.- Parameters:
triggerProperties
- the cosmos trigger properties.- Returns:
- an
Mono
containing the single resource response with the replaced cosmos trigger or an error.
-
delete
Deletes a cosmos trigger.After subscription the operation will be performed. The
Mono
upon successful completion will contain a single resource response for the deleted trigger. In case of failure theMono
will error.- Returns:
- an
Mono
containing the single resource response for the deleted cosmos trigger or an error.
-