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

    Type Alias GetDashboardsResponses

    type GetDashboardsResponses = {
        "200": {
            data: {
                created: string;
                id: number;
                label: string;
                service_type: string;
                type: "standard";
                updated: string;
                widgets: {
                    aggregate_function:
                        | "min"
                        | "max"
                        | "avg"
                        | "sum"
                        | "rate"
                        | "increase";
                    chart_type: "line"
                    | "area";
                    color: string;
                    label: string;
                    metric: string;
                    size: "6" | "12";
                    unit:
                        | "%"
                        | "Bytes"
                        | "sec"
                        | "bps"
                        | "msec"
                        | "Bps"
                        | "KB"
                        | "MB"
                        | "GB"
                        | "rate"
                        | "percentile"
                        | "ratio"
                        | "OPS"
                        | "IOPS";
                    y_label: string;
                }[];
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            created: string;
            id: number;
            label: string;
            service_type: string;
            type: "standard";
            updated: string;
            widgets: {
                aggregate_function:
                    | "min"
                    | "max"
                    | "avg"
                    | "sum"
                    | "rate"
                    | "increase";
                chart_type: "line"
                | "area";
                color: string;
                label: string;
                metric: string;
                size: "6" | "12";
                unit:
                    | "%"
                    | "Bytes"
                    | "sec"
                    | "bps"
                    | "msec"
                    | "Bps"
                    | "KB"
                    | "MB"
                    | "GB"
                    | "rate"
                    | "percentile"
                    | "ratio"
                    | "OPS"
                    | "IOPS";
                y_label: string;
            }[];
        }[];
        page: number;
        pages: number;
        results: number;
    }

    Returns a paginated list of dashboards.

    Type Declaration

    • data: {
          created: string;
          id: number;
          label: string;
          service_type: string;
          type: "standard";
          updated: string;
          widgets: {
              aggregate_function: "min" | "max" | "avg" | "sum" | "rate" | "increase";
              chart_type: "line" | "area";
              color: string;
              label: string;
              metric: string;
              size: "6" | "12";
              unit:
                  | "%"
                  | "Bytes"
                  | "sec"
                  | "bps"
                  | "msec"
                  | "Bps"
                  | "KB"
                  | "MB"
                  | "GB"
                  | "rate"
                  | "percentile"
                  | "ratio"
                  | "OPS"
                  | "IOPS";
              y_label: string;
          }[];
      }[]
    • Readonlypage: number

      Read-only The current page.

    • Readonlypages: number

      Read-only The total number of pages.

    • Readonlyresults: number

      Read-only The total number of results.