import type { ServerImageDTO } from '../models/ServerImageDTO'; import type { ServerLocationDTO } from '../models/ServerLocationDTO'; import type { ServerProfileDTO } from '../models/ServerProfileDTO'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class ServerConfigurationsService { /** * Possible server locations * Get a list of possible server datacenter locations * @returns ServerLocationDTO List of locations * @throws ApiError */ static getServersLocations(): CancelablePromise; /** * Possible server profiles * Get a list of possible server hardware profiles * @param locationId Location of the profile * @returns ServerProfileDTO List of available server hardware profiles * @throws ApiError */ static getServersProfiles(locationId?: any): CancelablePromise; /** * Possible server images * Get a list of possible server software images * @returns ServerImageDTO List of available server images * @throws ApiError */ static getServersImages(): CancelablePromise; }