types
Creates, updates, deletes, gets or lists a types resource.
Overview
| Name | types |
| Type | Resource |
| Id | linode.longview.types |
Fields
The following fields are returned by SELECT queries:
- list
A collection of Longview types.
| Name | Datatype | Description |
|---|---|---|
id | string | Read-only The ID representing the Longview type. (example: longview-3) |
label | string | Filterable, Read-only The Longview type label is for display purposes only. (example: Longview Pro 3 pack) |
price | object | Read-only The default cost of this Longview type. Prices are in US dollars, broken down into hourly and monthly charges. Certain regions have different prices from the default. For region-specific prices, see region_prices. |
region_prices | array | |
transfer | integer | Filterable, Read-only The monthly outbound transfer amount, in MB. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | Returns Longview types and prices, including any region-specific rates. Learn more... |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|
SELECT examples
- list
Returns Longview types and prices, including any region-specific rates.
Learn more...
SELECT
id,
label,
price,
region_prices,
transfer
FROM linode.longview.types
;