UNPKG

@azure/cosmos

Version:
139 lines 5.34 kB
import { createUserUri, getIdFromLink, getPathFromLink, isResourceValid, ResourceType, } from "../../common/index.js"; import { Permission, Permissions } from "../Permission/index.js"; import { UserResponse } from "./UserResponse.js"; import { getEmptyCosmosDiagnostics, withDiagnostics } from "../../utils/diagnostics.js"; /** * Used to read, replace, and delete Users. * * Additionally, you can access the permissions for a given user via `user.permission` and `user.permissions`. * * @see {@link Users} to create, upsert, query, or read all. */ export class User { database; id; clientContext; /** * Operations for creating, upserting, querying, or reading all operations. * * See `client.permission(id)` to read, replace, or delete a specific Permission by id. */ permissions; /** * Returns a reference URL to the resource. Used for linking in Permissions. */ get url() { return createUserUri(this.database.id, this.id); } /** * @hidden * @param database - The parent {@link Database}. */ constructor(database, id, clientContext) { this.database = database; this.id = id; this.clientContext = clientContext; this.permissions = new Permissions(this, this.clientContext); } /** * Operations to read, replace, or delete a specific Permission by id. * * See `client.permissions` for creating, upserting, querying, or reading all operations. */ permission(id) { return new Permission(this, id, this.clientContext); } /** * Read the {@link UserDefinition} for the given {@link User}. * @example * ```ts snippet:UserRead * import { CosmosClient } from "@azure/cosmos"; * * const endpoint = "https://your-account.documents.azure.com"; * const key = "<database account masterkey>"; * const client = new CosmosClient({ endpoint, key }); * const { database } = await client.databases.createIfNotExists({ id: "Test Database" }); * * const { resource: user } = await database.user("<user-id>").read(); * ``` */ async read(options) { return withDiagnostics(async (diagnosticNode) => { const path = getPathFromLink(this.url); const id = getIdFromLink(this.url); const response = await this.clientContext.read({ path, resourceType: ResourceType.user, resourceId: id, options, diagnosticNode, }); return new UserResponse(response.result, response.headers, response.code, this, getEmptyCosmosDiagnostics()); }, this.clientContext); } /** * Replace the given {@link User}'s definition with the specified {@link UserDefinition}. * @param body - The specified {@link UserDefinition} to replace the definition. * @example * ```ts snippet:UserReplace * import { CosmosClient } from "@azure/cosmos"; * * const endpoint = "https://your-account.documents.azure.com"; * const key = "<database account masterkey>"; * const client = new CosmosClient({ endpoint, key }); * const { database } = await client.databases.createIfNotExists({ id: "Test Database" }); * const { resource: user } = await database.user("<user-id>").read(); * user.id = "<new user id>"; * * await database.user("<user-id>").replace(user); * ``` */ async replace(body, options) { return withDiagnostics(async (diagnosticNode) => { const err = {}; if (!isResourceValid(body, err)) { throw err; } const path = getPathFromLink(this.url); const id = getIdFromLink(this.url); const response = await this.clientContext.replace({ body, path, resourceType: ResourceType.user, resourceId: id, options, diagnosticNode, }); return new UserResponse(response.result, response.headers, response.code, this, getEmptyCosmosDiagnostics()); }, this.clientContext); } /** * Delete the given {@link User}. * @example * ```ts snippet:UserDelete * import { CosmosClient } from "@azure/cosmos"; * * const endpoint = "https://your-account.documents.azure.com"; * const key = "<database account masterkey>"; * const client = new CosmosClient({ endpoint, key }); * const { database } = await client.databases.createIfNotExists({ id: "Test Database" }); * * await database.user("<user-id>").delete(); * ``` */ async delete(options) { return withDiagnostics(async (diagnosticNode) => { const path = getPathFromLink(this.url); const id = getIdFromLink(this.url); const response = await this.clientContext.delete({ path, resourceType: ResourceType.user, resourceId: id, options, diagnosticNode, }); return new UserResponse(response.result, response.headers, response.code, this, getEmptyCosmosDiagnostics()); }, this.clientContext); } } //# sourceMappingURL=User.js.map