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

    Type Alias GetMonitorInformationData

    type GetMonitorInformationData = {
        body?: never;
        headers?: {
            "X-Filter"?:
                | { is_alertable?: boolean }
                | { metric_type?: "counter" | "histogram" | "gauge" | "summary" }
                | {
                    "+and"?: {
                        is_alertable?: boolean;
                        metric_type?: "counter" | "histogram" | "gauge" | "summary";
                    }[];
                }
                | {
                    "+or"?: {
                        is_alertable?: boolean;
                        metric_type?: "counter"
                        | "histogram"
                        | "gauge"
                        | "summary";
                    }[];
                };
        };
        path: { serviceType: string };
        query?: never;
        url: "monitor/services/{serviceType}/metric-definitions";
    }
    Index

    Properties

    body?: never
    headers?: {
        "X-Filter"?:
            | { is_alertable?: boolean }
            | { metric_type?: "counter" | "histogram" | "gauge" | "summary" }
            | {
                "+and"?: {
                    is_alertable?: boolean;
                    metric_type?: "counter" | "histogram" | "gauge" | "summary";
                }[];
            }
            | {
                "+or"?: {
                    is_alertable?: boolean;
                    metric_type?: "counter"
                    | "histogram"
                    | "gauge"
                    | "summary";
                }[];
            };
    }

    Type Declaration

    • OptionalX-Filter?:
          | { is_alertable?: boolean }
          | { metric_type?: "counter" | "histogram" | "gauge" | "summary" }
          | {
              "+and"?: {
                  is_alertable?: boolean;
                  metric_type?: "counter" | "histogram" | "gauge" | "summary";
              }[];
          }
          | {
              "+or"?: {
                  is_alertable?: boolean;
                  metric_type?: "counter"
                  | "histogram"
                  | "gauge"
                  | "summary";
              }[];
          }

      Specifies the optional X-Filter header JSON object's filtering and sort criteria.

    path: { serviceType: string }

    Type Declaration

    • serviceType: string

      The Akamai Cloud Computing service being monitored. To see your currently supported services, run the List supported service types operation and store the appropriate service_type.

    query?: never
    url: "monitor/services/{serviceType}/metric-definitions"