UNPKG

@thlmenezes/sdk-js

Version:

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

40 lines (39 loc) 1.41 kB
/** * 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. */ import { ApiBaseService } from "../../../services/ApiBaseService"; import { ApiResponse } from "../../../common/ApiResponse"; import { Application } from '../../generated/models'; import { ApplicationUpdate } from '../../generated/models'; /** * ApplicationsApiService - Auto-generated */ export declare class ApplicationsApiService extends ApiBaseService { /** * * @summary Delete a given application * @param {number} applicationId The ID of the application. */ deleteApplication(applicationId: number): Promise<ApiResponse<void>>; /** * * @summary Get an application by ID * @param {number} applicationId The ID of the application. */ getApplication(applicationId: number): Promise<ApiResponse<Application>>; /** * * @summary Update an existing application * @param {number} applicationId The ID of the application. * @param {ApplicationUpdate} applicationUpdate A JSON object containing the resource data */ updateApplication(applicationId: number, applicationUpdate: ApplicationUpdate): Promise<ApiResponse<void>>; }