@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
32 lines (31 loc) • 941 B
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 { Subnet } from '../../generated/models';
/**
* SubnetsApiService - Auto-generated
*/
export declare class SubnetsApiService extends ApiBaseService {
/**
*
* @summary Delete a given subnet
* @param {number} subnetId The ID of the subnet.
*/
deleteSubnet(subnetId: number): Promise<ApiResponse<void>>;
/**
*
* @summary Get a subnet by ID
* @param {number} subnetId The ID of the subnet.
*/
getSubnet(subnetId: number): Promise<ApiResponse<Subnet>>;
}