@thlmenezes/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
27 lines (26 loc) • 1.05 kB
TypeScript
/**
* 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 { DeploymentApplicationCreate } from '../../generated/models';
/**
* ApplicationsDeploymentsApiService - Auto-generated
*/
export declare class ApplicationsDeploymentsApiService extends ApiBaseService {
/**
*
* @summary Trigger a new deployment for current application
* @param {number} applicationId The ID of the application.
* @param {DeploymentApplicationCreate} deploymentApplicationCreate A JSON object containing the resource data
*/
addApplicationDeployment(applicationId: number, deploymentApplicationCreate: DeploymentApplicationCreate): Promise<ApiResponse<void>>;
}