UNPKG

@azure/communication-rooms

Version:

Azure client library for Azure Communication Rooms services

177 lines 6.93 kB
/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { __asyncDelegator, __asyncGenerator, __asyncValues, __await } from "tslib"; import { tracingClient } from "../tracing.js"; import { setContinuationToken } from "../pagingHelper.js"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers.js"; import * as Parameters from "../models/parameters.js"; /// <reference lib="esnext.asynciterable" /> /** Class containing Participants operations. */ export class ParticipantsImpl { /** * Initialize a new instance of the class Participants class. * @param client Reference to the service client */ constructor(client) { this.client = client; } /** * Get participants in a room. * @param roomId The id of the room to get participants from. * @param options The options parameters. */ list(roomId, options) { const iter = this.listPagingAll(roomId, options); return { next() { return iter.next(); }, [Symbol.asyncIterator]() { return this; }, byPage: (settings) => { if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) { throw new Error("maxPageSize is not supported by this operation."); } return this.listPagingPage(roomId, options, settings); }, }; } listPagingPage(roomId, options, settings) { return __asyncGenerator(this, arguments, function* listPagingPage_1() { let result; let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken; if (!continuationToken) { result = yield __await(this._list(roomId, options)); let page = result.value || []; continuationToken = result.nextLink; setContinuationToken(page, continuationToken); yield yield __await(page); } while (continuationToken) { result = yield __await(this._listNext(roomId, continuationToken, options)); continuationToken = result.nextLink; let page = result.value || []; setContinuationToken(page, continuationToken); yield yield __await(page); } }); } listPagingAll(roomId, options) { return __asyncGenerator(this, arguments, function* listPagingAll_1() { var _a, e_1, _b, _c; try { for (var _d = true, _e = __asyncValues(this.listPagingPage(roomId, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) { _c = _f.value; _d = false; const page = _c; yield __await(yield* __asyncDelegator(__asyncValues(page))); } } catch (e_1_1) { e_1 = { error: e_1_1 }; } finally { try { if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e)); } finally { if (e_1) throw e_1.error; } } }); } /** * Get participants in a room. * @param roomId The id of the room to get participants from. * @param options The options parameters. */ async _list(roomId, options) { return tracingClient.withSpan("RoomsRestClient._list", options !== null && options !== void 0 ? options : {}, async (options) => { return this.client.sendOperationRequest({ roomId, options }, listOperationSpec); }); } /** * Update participants in a room. * @param roomId The id of the room to update the participants in. * @param options The options parameters. */ async update(roomId, options) { return tracingClient.withSpan("RoomsRestClient.update", options !== null && options !== void 0 ? options : {}, async (options) => { return this.client.sendOperationRequest({ roomId, options }, updateOperationSpec); }); } /** * ListNext * @param roomId The id of the room to get participants from. * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ async _listNext(roomId, nextLink, options) { return tracingClient.withSpan("RoomsRestClient._listNext", options !== null && options !== void 0 ? options : {}, async (options) => { return this.client.sendOperationRequest({ roomId, nextLink, options }, listNextOperationSpec); }); } } // Operation Specifications const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); const listOperationSpec = { path: "/rooms/{roomId}/participants", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ParticipantsCollection, }, default: { bodyMapper: Mappers.CommunicationErrorResponse, headersMapper: Mappers.ParticipantsListExceptionHeaders, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint, Parameters.roomId], headerParameters: [Parameters.accept], serializer, }; const updateOperationSpec = { path: "/rooms/{roomId}/participants", httpMethod: "PATCH", responses: { 200: { bodyMapper: { type: { name: "Dictionary", value: { type: { name: "any" } } }, }, }, default: { bodyMapper: Mappers.CommunicationErrorResponse, headersMapper: Mappers.ParticipantsUpdateExceptionHeaders, }, }, requestBody: { parameterPath: { participants: ["options", "participants"] }, mapper: Object.assign(Object.assign({}, Mappers.UpdateParticipantsRequest), { required: true }), }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint, Parameters.roomId], headerParameters: [Parameters.accept, Parameters.contentType1], mediaType: "json", serializer, }; const listNextOperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ParticipantsCollection, }, default: { bodyMapper: Mappers.CommunicationErrorResponse, headersMapper: Mappers.ParticipantsListNextExceptionHeaders, }, }, urlParameters: [Parameters.endpoint, Parameters.roomId, Parameters.nextLink], headerParameters: [Parameters.accept], serializer, }; //# sourceMappingURL=participants.js.map