@akamai/openapi-ts
    Preparing search index...

    Type Alias PutManagedLinodeSettingResponses

    type PutManagedLinodeSettingResponses = {
        "200": {
            group: string;
            id: number;
            label: string;
            ssh: {
                access: boolean;
                ip: string;
                port: number | null;
                user: string | null;
            };
        };
    }
    Index

    Properties

    Properties

    "200": {
        group: string;
        id: number;
        label: string;
        ssh: {
            access: boolean;
            ip: string;
            port: number | null;
            user: string | null;
        };
    }

    Settings for a specific Linode related to Managed Services. There is one ManagedLinodeSettings object for each Linode on your Account.

    Type Declaration

    • Readonlygroup: string

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

    • Readonlyid: number

      Read-only The ID of the Linode these Settings are for.

    • Readonlylabel: string

      Read-only The label of the Linode these Settings are for.

    • ssh: { access: boolean; ip: string; port: number | null; user: string | null }

      The SSH settings for this Linode.

      • access: boolean

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

      • 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: number | null

        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.

      • user: string | null

        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.