action linode_get_managed_linode_settings { label: "Managed Linode Settings List" description: "Returns a paginated list of Managed Settings for your Linodes. There will\nbe one entry per Linode on your Account.\n\nThis command can only be accessed by the unrestricted users of an account.\n" provider: linode method: GET path: "/managed/linode-settings" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "Settings for a specific Linode related to Managed Services. There is one ManagedLinodeSettings object for each Linode on your Account.\n" properties: { group: { type: "string" description: "The group of the Linode these Settings are for. This is for display purposes only.\n" } id: { type: "integer" description: "The ID of the Linode these Settings are for.\n" } label: { type: "string" description: "The label of the Linode these Settings are for.\n" } ssh: { type: "object" description: "The SSH settings for this Linode.\n" properties: { access: { type: "boolean" description: "If true, Linode special forces may access this Linode over ssh to respond to Issues.\n" } ip: { type: "string" format: "ip" description: "The IP Linode special forces should use to access this Linode\nwhen responding to an Issue.\n\nBy default, any of a Linode's IP addresses can be used for incident response access.\n" } port: { type: "integer" description: "The port Linode special forces should use to access this Linode\nover ssh to respond to an Issue.\n\nThe default `null` value corresponds to port 22.\n" } user: { type: "string" description: "The specific user, if any, Linode's special forces should use when accessing this\nLinode to respond to an issue.\n\nThe default `null` value corresponds to the root user.\n" } } } } } } page: { type: "integer" description: "The current [page](/docs/api/#pagination)." } pages: { type: "integer" description: "The total number of [pages](/docs/api/#pagination)." } results: { type: "integer" description: "The total number of results." } } } }