UNPKG

@azure/communication-rooms

Version:

Azure client library for Azure Communication Rooms services

269 lines 9.7 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 Rooms operations. */ export class RoomsImpl { /** * Initialize a new instance of the class Rooms class. * @param client Reference to the service client */ constructor(client) { this.client = client; } /** * Retrieves all created rooms. * @param options The options parameters. */ list(options) { const iter = this.listPagingAll(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(options, settings); }, }; } listPagingPage(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(options)); let page = result.value || []; continuationToken = result.nextLink; setContinuationToken(page, continuationToken); yield yield __await(page); } while (continuationToken) { result = yield __await(this._listNext(continuationToken, options)); continuationToken = result.nextLink; let page = result.value || []; setContinuationToken(page, continuationToken); yield yield __await(page); } }); } listPagingAll(options) { return __asyncGenerator(this, arguments, function* listPagingAll_1() { var _a, e_1, _b, _c; try { for (var _d = true, _e = __asyncValues(this.listPagingPage(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; } } }); } /** * Creates a new room. * @param options The options parameters. */ async create(options) { return tracingClient.withSpan("RoomsRestClient.create", options !== null && options !== void 0 ? options : {}, async (options) => { return this.client.sendOperationRequest({ options }, createOperationSpec); }); } /** * Retrieves all created rooms. * @param options The options parameters. */ async _list(options) { return tracingClient.withSpan("RoomsRestClient._list", options !== null && options !== void 0 ? options : {}, async (options) => { return this.client.sendOperationRequest({ options }, listOperationSpec); }); } /** * Retrieves an existing room by id. * @param roomId The id of the room requested. * @param options The options parameters. */ async get(roomId, options) { return tracingClient.withSpan("RoomsRestClient.get", options !== null && options !== void 0 ? options : {}, async (options) => { return this.client.sendOperationRequest({ roomId, options }, getOperationSpec); }); } /** * Update a room with given changes. * @param roomId The id of the room requested. * @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); }); } /** * Delete a room. * @param roomId The id of the room to be deleted. * @param options The options parameters. */ async delete(roomId, options) { return tracingClient.withSpan("RoomsRestClient.delete", options !== null && options !== void 0 ? options : {}, async (options) => { return this.client.sendOperationRequest({ roomId, options }, deleteOperationSpec); }); } /** * ListNext * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ async _listNext(nextLink, options) { return tracingClient.withSpan("RoomsRestClient._listNext", options !== null && options !== void 0 ? options : {}, async (options) => { return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec); }); } } // Operation Specifications const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); const createOperationSpec = { path: "/rooms", httpMethod: "POST", responses: { 201: { bodyMapper: Mappers.RoomModel, }, default: { bodyMapper: Mappers.CommunicationErrorResponse, headersMapper: Mappers.RoomsCreateExceptionHeaders, }, }, requestBody: { parameterPath: { validFrom: ["options", "validFrom"], validUntil: ["options", "validUntil"], pstnDialOutEnabled: ["options", "pstnDialOutEnabled"], participants: ["options", "participants"], }, mapper: Object.assign(Object.assign({}, Mappers.CreateRoomRequest), { required: true }), }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint], headerParameters: [ Parameters.contentType, Parameters.accept, Parameters.repeatabilityRequestID, Parameters.repeatabilityFirstSent, ], mediaType: "json", serializer, }; const listOperationSpec = { path: "/rooms", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.RoomsCollection, }, default: { bodyMapper: Mappers.CommunicationErrorResponse, headersMapper: Mappers.RoomsListExceptionHeaders, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint], headerParameters: [Parameters.accept], serializer, }; const getOperationSpec = { path: "/rooms/{roomId}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.RoomModel, }, default: { bodyMapper: Mappers.CommunicationErrorResponse, headersMapper: Mappers.RoomsGetExceptionHeaders, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint, Parameters.roomId], headerParameters: [Parameters.accept], serializer, }; const updateOperationSpec = { path: "/rooms/{roomId}", httpMethod: "PATCH", responses: { 200: { bodyMapper: Mappers.RoomModel, }, default: { bodyMapper: Mappers.CommunicationErrorResponse, headersMapper: Mappers.RoomsUpdateExceptionHeaders, }, }, requestBody: { parameterPath: { validFrom: ["options", "validFrom"], validUntil: ["options", "validUntil"], pstnDialOutEnabled: ["options", "pstnDialOutEnabled"], }, mapper: Object.assign(Object.assign({}, Mappers.UpdateRoomRequest), { required: true }), }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint, Parameters.roomId], headerParameters: [Parameters.accept, Parameters.contentType1], mediaType: "json", serializer, }; const deleteOperationSpec = { path: "/rooms/{roomId}", httpMethod: "DELETE", responses: { 204: {}, default: { bodyMapper: Mappers.CommunicationErrorResponse, headersMapper: Mappers.RoomsDeleteExceptionHeaders, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint, Parameters.roomId], headerParameters: [Parameters.accept], serializer, }; const listNextOperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.RoomsCollection, }, default: { bodyMapper: Mappers.CommunicationErrorResponse, headersMapper: Mappers.RoomsListNextExceptionHeaders, }, }, urlParameters: [Parameters.endpoint, Parameters.nextLink], headerParameters: [Parameters.accept], serializer, }; //# sourceMappingURL=rooms.js.map