UNPKG

devopness-sdk-js

Version:

Devopness API JS/TS SDK - Painless essential DevOps to everyone

90 lines (89 loc) 3.78 kB
"use strict"; /* eslint-disable */ /** * devopness API * Devopness API - Painless essential DevOps to everyone * * The version of the OpenAPI document: latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ 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.ProjectsApiService = void 0; const ApiBaseService_1 = require("../../../services/ApiBaseService"); const ApiResponse_1 = require("../../../common/ApiResponse"); const Exceptions_1 = require("../../../common/Exceptions"); /** * ProjectsApiService - Auto-generated */ class ProjectsApiService extends ApiBaseService_1.ApiBaseService { /** * * @summary Create a new project * @param {Project} project A JSON object containing project data */ addProject(project) { return __awaiter(this, void 0, void 0, function* () { if (project === null || project === undefined) { throw new Exceptions_1.ArgumentNullException('project', 'addProject'); } const response = yield this.post(`/projects`, project); return new ApiResponse_1.ApiResponse(response); }); } /** * * @summary Get a project by ID * @param {number} projectId Numeric ID of the project to get */ getProject(projectId) { return __awaiter(this, void 0, void 0, function* () { if (projectId === null || projectId === undefined) { throw new Exceptions_1.ArgumentNullException('projectId', 'getProject'); } const response = yield this.get(`/projects/{project_id}`.replace(`{${"project_id"}}`, encodeURIComponent(String(projectId)))); return new ApiResponse_1.ApiResponse(response); }); } /** * * @summary Returns a list of all projects belonging to current user */ listProjects() { return __awaiter(this, void 0, void 0, function* () { const response = yield this.get(`/projects`); return new ApiResponse_1.ApiResponse(response); }); } /** * * @summary Update an existing project * @param {number} projectId Numeric ID of the project to put * @param {Project} project A JSON object containing project data */ updateProject(projectId, project) { return __awaiter(this, void 0, void 0, function* () { if (projectId === null || projectId === undefined) { throw new Exceptions_1.ArgumentNullException('projectId', 'updateProject'); } if (project === null || project === undefined) { throw new Exceptions_1.ArgumentNullException('project', 'updateProject'); } const response = yield this.put(`/projects/{project_id}`.replace(`{${"project_id"}}`, encodeURIComponent(String(projectId))), project); return new ApiResponse_1.ApiResponse(response); }); } } exports.ProjectsApiService = ProjectsApiService;