@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
17 lines • 478 B
TypeScript
/**
* Enum for trigger operation values.
* specifies the operations on which a trigger should be executed.
*/
export declare enum TriggerOperation {
/** All operations. */
All = "all",
/** Create operations only. */
Create = "create",
/** Update operations only. */
Update = "update",
/** Delete operations only. */
Delete = "delete",
/** Replace operations only. */
Replace = "replace"
}
//# sourceMappingURL=TriggerOperation.d.ts.map