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

    Type Alias GetDashboardsByIdResponses

    type GetDashboardsByIdResponses = {
        "200": {
            created: string;
            id: number;
            label: string;
            service_type: string;
            type: "standard";
            updated: string;
            widgets: {
                aggregate_function: "min" | "max" | "avg" | "sum" | "rate";
                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;
            }[];
        };
    }
    Index

    Properties

    Properties

    "200": {
        created: string;
        id: number;
        label: string;
        service_type: string;
        type: "standard";
        updated: string;
        widgets: {
            aggregate_function: "min" | "max" | "avg" | "sum" | "rate";
            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;
        }[];
    }

    Returns a dashboard.

    Type Declaration

    • created: string

      When the dashboard was created.

    • id: number

      The unique identifier for the dashboard.

    • label: string

      The name of the dashboard. This is used for display purposes in Akamai Cloud Manager.

    • service_type: string

      The Akamai Cloud Computing service used by this dashboard.

    • type: "standard"

      The type of dashboard. Currently, this can only be standard for a dashboard that uses default formatting.

    • updated: string

      When the dashboard was last updated.

    • widgets: {
          aggregate_function: "min" | "max" | "avg" | "sum" | "rate";
          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;
      }[]

      The widgets used in the dashboard.