UNPKG

@gridscale/api

Version:
35 lines (33 loc) 1.02 kB
/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type LoadbalancerUpdate = { /** * The human-readable name of the object. It supports the full UTF-8 character set, with a maximum of 64 characters. */ name?: string; /** * An array of objects containing the forwarding rules for the Load balancer ( */ forwarding_rules?: Array<any>; /** * The servers that this Load balancer can communicate with */ backend_servers?: Array<any>; /** * Status indicates the status of the object. */ status?: string; /** * Whether the Load balancer is forced to redirect requests from HTTP to HTTPS. */ redirect_http_to_https?: boolean; /** * List of labels. */ labels?: Array<string>; /** * The algorithm used to process requests. Accepted values: roundrobin / leastconn. */ algorithm?: string; }