@gridscale/api
Version:
gridscale API Wrapper
19 lines (18 loc) • 627 B
TypeScript
import { PaasServiceParameters } from './PaasServiceParameters';
import { PaasServiceResourceLimits } from './PaasServiceResourceLimits';
export declare type PaasServiceUpdate = {
/**
* The human-readable name of the object. It supports the full UTF-8 character set, with a maximum of 64 characters.
*/
name?: string;
/**
* List of labels.
*/
labels?: Array<string>;
parameters?: PaasServiceParameters;
resource_limits?: PaasServiceResourceLimits;
/**
* The template to which you want to update/upgrade your paas service.
*/
paas_service_template_uuid?: string;
};