Class CosmosTrigger


  • public class CosmosTrigger
    extends Object
    • Method Detail

      • read

        public Mono<CosmosTriggerResponse> read()
        Reads a cosmos trigger by the trigger link.

        After 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 the Mono will error.

        Returns:
        an Mono containing the single resource response for the read cosmos trigger or an error.
      • replace

        public Mono<CosmosTriggerResponse> replace​(CosmosTriggerProperties triggerSettings)
        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 the Mono will error.

        Parameters:
        triggerSettings - the cosmos trigger properties.
        Returns:
        an Mono containing the single resource response with the replaced cosmos trigger or an error.
      • delete

        public Mono<CosmosResponse> 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 the Mono will error.

        Returns:
        an Mono containing the single resource response for the deleted cosmos trigger or an error.