Skip to main content

types

Creates, updates, deletes, gets or lists a types resource.

Overview

Nametypes
TypeResource
Idlinode.object_storage.types

Fields

The following fields are returned by SELECT queries:

A collection of Object Storage types.

NameDatatypeDescription
idstringRead-only The ID representing the Object Storage type. (example: objectstorage)
labelstringFilterable, Read-only The Object Storage type label is for display purposes only. (example: Object Storage)
priceobjectRead-only The default cost of this Object Storage 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_pricesarray
transferintegerFilterable, Read-only The monthly outbound transfer amount, in MB.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectReturns Object Storage 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.

NameDatatypeDescription

SELECT examples

Returns Object Storage types and prices, including any region-specific rates.

Learn more...

SELECT
id,
label,
price,
region_prices,
transfer
FROM linode.object_storage.types
;