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

    Type Alias AddedGetClients200

    type AddedGetClients200 = {
        data?: {
            id?: string;
            label?: string;
            public?: boolean;
            redirect_uri?: string;
            secret?: string;
            status?: "active" | "disabled" | "suspended";
            thumbnail_url?: string | null;
        }[];
        page?: number;
        pages?: number;
        results?: number;
    }
    Index

    Properties

    data?: {
        id?: string;
        label?: string;
        public?: boolean;
        redirect_uri?: string;
        secret?: string;
        status?: "active" | "disabled" | "suspended";
        thumbnail_url?: string | null;
    }[]

    Type Declaration

    • Optional Readonlyid?: string

      Read-only The OAuth Client ID. This is used to identify the client, and is a publicly known value (it is not a secret).

    • Optionallabel?: string

      Filterable The name of this application. This will be presented to users when they are asked to grant it access to their Account.

    • Optionalpublic?: boolean

      Filterable If this is a public or private OAuth Client. Public clients have a slightly different authentication workflow than private clients. See the OAuth spec for more details.

    • Optionalredirect_uri?: string

      The location a successful log in from login.linode.com should be redirected to for this client. The receiver of this redirect should be ready to accept an OAuth exchange code and finish the OAuth exchange.

    • Optional Readonlysecret?: string

      Read-only The OAuth Client secret, used in the OAuth exchange. This is returned as <REDACTED> except when an OAuth Client is created or its secret is reset. This is a secret, and should not be shared or disclosed publicly.

    • Optionalstatus?: "active" | "disabled" | "suspended"

      Read-only The status of this application. active by default.

    • Optional Readonlythumbnail_url?: string | null

      Read-only The URL where this client's thumbnail may be viewed, or null if this client does not have a thumbnail set.

    page?: number

    Read-only The current page.

    pages?: number

    Read-only The total number of pages.

    results?: number

    Read-only The total number of results.