The parent Database.
The id of the given container.
Opertaions for reading and querying conflicts for the given container.
For reading or deleting a specific conflict, use .conflict(id).
Operations for creating new items, and reading/querying all items
For reading, replacing, or deleting an existing item, use .item(id).
All operations for Stored Procedures, Triggers, and User Defined Functions
Returns a reference URL to the resource. Used for linking in Permissions.
Delete the container
Read the container's definition
Replace the container's definition
Generated using TypeDoc
Operations for reading, replacing, or deleting a specific, existing container by id.
Containers for creating new containers, and reading/querying all containers; use
.containers.Note: all these operations make calls against a fixed budget. You should design your system such that these calls scale sublinearly with your application. For instance, do not call
container(id).read()before every singleitem.read()call, to ensure the container exists; do this once on application start up.