Skip to main content

linode_settings

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

Overview

Namelinode_settings
TypeResource
Idlinode.managed.linode_settings

Fields

The following fields are returned by SELECT queries:

A paginated list of Managed settings for your Linodes.

NameDatatypeDescription
dataarray
pageintegerRead-only The current page.
pagesintegerRead-only The total number of pages.
resultsintegerRead-only The total number of results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_managed_linode_settingsselectpage, page_sizeReturns a paginated list of Managed Settings for your Linodes. There will be one entry per Linode on your Account.

This operation can only be accessed by the unrestricted users of an account.

Learn more...

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
pageintegerThe page of a collection to return.
page_sizeintegerThe number of items to return per page.

SELECT examples

Returns a paginated list of Managed Settings for your Linodes. There will be one entry per Linode on your Account.

This operation can only be accessed by the unrestricted users of an account.

Learn more...

Learn more...

SELECT
data,
page,
pages,
results
FROM linode.managed.linode_settings
WHERE page = '{{ page }}'
AND page_size = '{{ page_size }}';