UNPKG

@gridscale/api

Version:
23 lines (22 loc) 788 B
import { PaasServiceParameters } from './PaasServiceParameters'; import { PaasServiceResourceLimits } from './PaasServiceResourceLimits'; export declare type PaasServiceCreate = { /** * The human-readable name of the object. It supports the full UTF-8 character set, with a maximum of 64 characters. */ name: string; /** * The template used to create the service, you can find an available list at the /service_templates endpoint. */ paas_service_template_uuid: string; /** * List of labels. */ labels?: Array<string>; /** * The UUID of the security zone that the service is running in. */ paas_security_zone_uuid?: string; parameters?: PaasServiceParameters; resource_limits?: PaasServiceResourceLimits; };