Package version:
Readonly
clientReadonly
containersUsed for creating new containers, or querying/reading all containers.
Use .database(id)
to read, replace, or delete a specific, existing Database by id.
Readonly
idReadonly
usersUsed for creating new users, or querying/reading all users.
Use .user(id)
to read, replace, or delete a specific, existing User by id.
Returns a reference URL to the resource. Used for linking in Permissions.
Create Encryption key for database account
Delete the given Database.
Optional
options: RequestOptionsRead the definition of the given Database.
Optional
options: RequestOptionsRead Encryption key for database account
Gets offer on database. If none exists, returns an OfferResponse with undefined.
rewraps a client encryption key with new key encryption key
new encryption key wrap metadata
rewrapped client encryption key with new customer managed key
Operations for reading or deleting an existing database.
See
Databases for creating new databases, and reading/querying all databases; use
client.databases
.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
database.read()
before every singleitem.read()
call, to ensure the database exists; do this once on application start up.