Managed

Managed Linode Settings List

get
https://api.linode.com/v4/managed/linode-settings

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

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

Query Parameters

page
integer > = 1
Default: 1

The page of a collection to return.

page_size
integer [25 .. 500]
Default: 100

The number of items to return per page.

Request Samples

curl -H "Authorization: Bearer $TOKEN" \
    https://api.linode.com/v4/managed/linode-settings

Response Samples

{
  "data": [
    {
      "id": "",
      "label": "linode123",
      "group": "linodes",
      "ssh": {
        "access": true,
        "user": "linode",
        "ip": "203.0.113.1",
        "port": 22
      }
    }
  ],
  "page": 1,
  "pages": 1,
  "results": 1
}

Responses

200: A paginated list of Managed settings for your Linodes.

data
array of objects
id
integer

The ID of the Linode these Settings are for.

label
string

The label of the Linode these Settings are for.

group
string
Deprecated

The group of the Linode these Settings are for. This is for display purposes only.

ssh
object

The SSH settings for this Linode.

access
boolean

If true, Linode special forces may access this Linode over ssh to respond to Issues.

user
Nullable
string

The specific user, if any, Linode's special forces should use when accessing this Linode to respond to an issue.

The default null value corresponds to the root user.

ip
string

The IP Linode special forces should use to access this Linode when responding to an Issue.

By default, any of a Linode's IP addresses can be used for incident response access.

port
Nullable
integer

The port Linode special forces should use to access this Linode over ssh to respond to an Issue.

The default null value corresponds to port 22.

page
integer

The current page.

pages
integer

The total number of pages.

results
integer

The total number of results.

default: Error

errors
array of objects
reason
string

What happened to cause this error. In most cases, this can be fixed immediately by changing the data you sent in the request, but in some cases you will be instructed to open a Support Ticket or perform some other action before you can complete the request successfully.

field
string

The field in the request that caused this error. This may be a path, separated by periods in the case of nested fields. In some cases this may come back as "null" if the error is not specific to any single element of the request.