Function getReloads

  • Finds and returns the reloads that the user has access to.

    Parameters

    • query: {
          appId: string;
          filter?: string;
          limit?: number;
          log?: boolean;
          next?: string;
          partial?: boolean;
          prev?: string;
      }

      an object with query parameters

      • appId: string

        The UUID formatted string used to search for an app's reload history entries. TenantAdmin users may omit this parameter to list all reload history in the tenant.

      • Optionalfilter?: string

        SCIM filter expression used to search for reloads. The filter syntax is defined in RFC 7644 section 3.4.2.2

        Supported attributes:

        • status: see #schemas/Status
        • partial: see #schemas/Partial
        • type: see #schemas/Type

        Supported operators:

        • eq
      • Optionallimit?: number
      • Optionallog?: boolean
      • Optionalnext?: string
      • Optionalpartial?: boolean
      • Optionalprev?: string
    • Optionaloptions: ApiCallOptions

    Returns Promise<GetReloadsHttpResponse>

    getReloads(
    {
    filter: "(status eq \"FAILED\" or status eq \"EXCEEDED_LIMIT\") and partial eq \"false\" and type eq \"chronos\"
    "
    }
    )

    GetReloadsHttpError