azure-devops-mcp

by RyanCardin15
Verified
"use strict"; /* * --------------------------------------------------------- * Copyright(C) Microsoft Corporation. All rights reserved. * --------------------------------------------------------- * * --------------------------------------------------------- * Generated file, DO NOT EDIT * --------------------------------------------------------- */ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.FileContainerApiBase = void 0; const basem = require("./ClientApiBases"); const FileContainerInterfaces = require("./interfaces/FileContainerInterfaces"); class FileContainerApiBase extends basem.ClientApiBase { constructor(baseUrl, handlers, options) { super(baseUrl, handlers, 'node-FileContainer-api', options); } /** * Creates the specified items in the referenced container. * * @param {VSSInterfaces.VssJsonCollectionWrapperV<FileContainerInterfaces.FileContainerItem[]>} items * @param {number} containerId * @param {string} scope - A guid representing the scope of the container. This is often the project id. */ createItems(items, containerId, scope) { return __awaiter(this, void 0, void 0, function* () { return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { let routeValues = { containerId: containerId }; let queryValues = { scope: scope, }; try { let verData = yield this.vsoClient.getVersioningData("7.2-preview.4", "Container", "e4f5c81e-e250-447b-9fef-bd48471bea5e", routeValues, queryValues); let url = verData.requestUrl; let options = this.createRequestOptions('application/json', verData.apiVersion); let res; res = yield this.rest.create(url, items, options); let ret = this.formatResponse(res.result, FileContainerInterfaces.TypeInfo.FileContainerItem, true); resolve(ret); } catch (err) { reject(err); } })); }); } /** * Deletes the specified items in a container. * * @param {number} containerId - Container Id. * @param {string} itemPath - Path to delete. * @param {string} scope - A guid representing the scope of the container. This is often the project id. */ deleteItem(containerId, itemPath, scope) { return __awaiter(this, void 0, void 0, function* () { if (itemPath == null) { throw new TypeError('itemPath can not be null or undefined'); } return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { let routeValues = { containerId: containerId }; let queryValues = { itemPath: itemPath, scope: scope, }; try { let verData = yield this.vsoClient.getVersioningData("7.2-preview.4", "Container", "e4f5c81e-e250-447b-9fef-bd48471bea5e", routeValues, queryValues); let url = verData.requestUrl; let options = this.createRequestOptions('application/json', verData.apiVersion); let res; res = yield this.rest.del(url, options); let ret = this.formatResponse(res.result, null, false); resolve(ret); } catch (err) { reject(err); } })); }); } /** * Gets containers filtered by a comma separated list of artifact uris within the same scope, if not specified returns all containers * * @param {string} scope - A guid representing the scope of the container. This is often the project id. * @param {string} artifactUris */ getContainers(scope, artifactUris) { return __awaiter(this, void 0, void 0, function* () { return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { let routeValues = {}; let queryValues = { scope: scope, artifactUris: artifactUris, }; try { let verData = yield this.vsoClient.getVersioningData("7.2-preview.4", "Container", "e4f5c81e-e250-447b-9fef-bd48471bea5e", routeValues, queryValues); let url = verData.requestUrl; let options = this.createRequestOptions('application/json', verData.apiVersion); let res; res = yield this.rest.get(url, options); let ret = this.formatResponse(res.result, FileContainerInterfaces.TypeInfo.FileContainer, true); resolve(ret); } catch (err) { reject(err); } })); }); } /** * Gets the specified file container object in a format dependent upon the given parameters or HTTP Accept request header * * @param {number} containerId - The requested container Id * @param {string} scope - A guid representing the scope of the container. This is often the project id. * @param {string} itemPath - The path to the item of interest * @param {boolean} metadata - If true, this overrides any specified format parameter or HTTP Accept request header to provide non-recursive information for the given itemPath * @param {string} format - If specified, this overrides the HTTP Accept request header to return either 'json' or 'zip'. If $format is specified, then api-version should also be specified as a query parameter. * @param {string} downloadFileName - If specified and returning other than JSON format, then this download name will be used (else defaults to itemPath) * @param {boolean} includeDownloadTickets * @param {boolean} isShallow - If true, returns only immediate children(files & folders) for the given itemPath. False will return all items recursively within itemPath. * @param {boolean} ignoreRequestedMediaType - Set to true to ignore the HTTP Accept request header. Default is false. * @param {boolean} includeBlobMetadata * @param {boolean} saveAbsolutePath - Set to false to not save the absolute path to the specified directory of the artifact in the returned archive. Works only for artifact directories. Default is true. * @param {boolean} preferRedirect - Set to true to get the redirect response which leads to the stream with content. Default is false. */ getItems(containerId, scope, itemPath, metadata, format, downloadFileName, includeDownloadTickets, isShallow, ignoreRequestedMediaType, includeBlobMetadata, saveAbsolutePath, preferRedirect) { return __awaiter(this, void 0, void 0, function* () { return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { let routeValues = { containerId: containerId }; let queryValues = { scope: scope, itemPath: itemPath, metadata: metadata, '$format': format, downloadFileName: downloadFileName, includeDownloadTickets: includeDownloadTickets, isShallow: isShallow, ignoreRequestedMediaType: ignoreRequestedMediaType, includeBlobMetadata: includeBlobMetadata, saveAbsolutePath: saveAbsolutePath, preferRedirect: preferRedirect, }; try { let verData = yield this.vsoClient.getVersioningData("7.2-preview.4", "Container", "e4f5c81e-e250-447b-9fef-bd48471bea5e", routeValues, queryValues); let url = verData.requestUrl; let options = this.createRequestOptions('application/json', verData.apiVersion); let res; res = yield this.rest.get(url, options); let ret = this.formatResponse(res.result, FileContainerInterfaces.TypeInfo.FileContainerItem, true); resolve(ret); } catch (err) { reject(err); } })); }); } } exports.FileContainerApiBase = FileContainerApiBase;