@gridscale/api
Version:
gridscale API Wrapper
23 lines (22 loc) • 862 B
TypeScript
import { ListenPortsByIpIndex } from './ListenPortsByIpIndex';
import { PaasServiceCredentials } from './PaasServiceCredentials';
import { PaasServiceParameters } from './PaasServiceParameters';
import { PaasServiceResourceLimits } from './PaasServiceResourceLimits';
export declare type PaasServiceCreateResponse = {
/**
* The UUID identifying the request.
*/
request_uuid?: string;
listen_ports?: ListenPortsByIpIndex;
/**
* The template used to create the service, you can find an available list at the /service_templates endpoint.
*/
paas_service_uuid?: string;
credentials?: PaasServiceCredentials;
/**
* The UUID of an object is always unique, and refers to a specific object.
*/
object_uuid?: string;
parameters?: PaasServiceParameters;
resource_limits?: PaasServiceResourceLimits;
};