UNPKG

@gridscale/api

Version:
79 lines (77 loc) 2.22 kB
/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type Loadbalancer = { /** * The UUID of an object is always unique, and refers to a specific object. */ object_uuid?: string; /** * The human-readable name of the object. It supports the full UTF-8 character set, with a maximum of 64 characters. */ name?: string; /** * Indicates the amount of memory in GB. */ forwarding_rules?: Array<any>; /** * Uses IATA airport code, which works as a location identifier. */ location_iata?: string; /** * Helps to identify which data-center an object belongs to. */ location_uuid?: string; /** * The servers that this Load balancer can communicate with (see table below). */ backend_servers?: Array<any>; /** * Defines the date and time of the last object change. */ change_time?: string; /** * Status indicates the status of the object. */ status?: string; /** * Deprecated */ current_price?: number; /** * The human-readable name of the location. It supports the full UTF-8 character set, with a maximum of 64 characters. */ location_country?: 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 human-readable name of the location. It supports the full UTF-8 character set, with a maximum of 64 characters. */ location_name?: string; /** * Total minutes of cores used */ usage_in_minutes?: number; /** * The algorithm used to process requests. Accepted values: roundrobin / leastconn. */ algorithm?: string; /** * Defines the date and time the object was initially created. */ create_time?: string; /** * The UUID of the IPv4 address the Load balancer will listen to for incoming requests. */ listen_ipv4_uuid?: string; /** * The UUID of the IPv6 address the Load balancer will listen to for incoming requests. */ listen_ipv6_uuid?: string; }