@azure/communication-rooms
Version:
Azure client library for Azure Communication Rooms services
273 lines • 10.1 kB
JavaScript
;
/*
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.RoomsImpl = void 0;
const tslib_1 = require("tslib");
const tracing_js_1 = require("../tracing.js");
const pagingHelper_js_1 = require("../pagingHelper.js");
const coreClient = tslib_1.__importStar(require("@azure/core-client"));
const Mappers = tslib_1.__importStar(require("../models/mappers.js"));
const Parameters = tslib_1.__importStar(require("../models/parameters.js"));
/// <reference lib="esnext.asynciterable" />
/** Class containing Rooms operations. */
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 tslib_1.__asyncGenerator(this, arguments, function* listPagingPage_1() {
let result;
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
if (!continuationToken) {
result = yield tslib_1.__await(this._list(options));
let page = result.value || [];
continuationToken = result.nextLink;
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
yield yield tslib_1.__await(page);
}
while (continuationToken) {
result = yield tslib_1.__await(this._listNext(continuationToken, options));
continuationToken = result.nextLink;
let page = result.value || [];
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
yield yield tslib_1.__await(page);
}
});
}
listPagingAll(options) {
return tslib_1.__asyncGenerator(this, arguments, function* listPagingAll_1() {
var _a, e_1, _b, _c;
try {
for (var _d = true, _e = tslib_1.__asyncValues(this.listPagingPage(options)), _f; _f = yield tslib_1.__await(_e.next()), _a = _f.done, !_a; _d = true) {
_c = _f.value;
_d = false;
const page = _c;
yield tslib_1.__await(yield* tslib_1.__asyncDelegator(tslib_1.__asyncValues(page)));
}
}
catch (e_1_1) { e_1 = { error: e_1_1 }; }
finally {
try {
if (!_d && !_a && (_b = _e.return)) yield tslib_1.__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 tracing_js_1.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 tracing_js_1.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 tracing_js_1.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 tracing_js_1.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 tracing_js_1.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 tracing_js_1.tracingClient.withSpan("RoomsRestClient._listNext", options !== null && options !== void 0 ? options : {}, async (options) => {
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec);
});
}
}
exports.RoomsImpl = RoomsImpl;
// 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