import { type CloudMatrixCorrelation } from '../../../../../models/cloudMatrix/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/CloudMatrix/Account/{accountId}/Dashboard */ export interface DashboardRequestBuilder extends BaseRequestBuilder { /** * Retrieves the list of cloud matrix correlation records on the account passed in. Can use filters targeting creation date to limit results. Cloud matrix records store the metadata for a specific cloud matrix correlation.This endpoint is only accessible from the `SHI` and `SHI Lab` tenants and requires the `CloudMatrix.Read.All` or `CloudMatrix.ReadWrite.All` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Retrieves the list of cloud matrix correlation records on the account passed in. Can use filters targeting creation date to limit results. Cloud matrix records store the metadata for a specific cloud matrix correlation.This endpoint is only accessible from the `SHI` and `SHI Lab` tenants and requires the `CloudMatrix.Read.All` or `CloudMatrix.ReadWrite.All` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Retrieves the list of cloud matrix correlation records on the account passed in. Can use filters targeting creation date to limit results. Cloud matrix records store the metadata for a specific cloud matrix correlation.This endpoint is only accessible from the `SHI` and `SHI Lab` tenants and requires the `CloudMatrix.Read.All` or `CloudMatrix.ReadWrite.All` scope (permission). */ export interface DashboardRequestBuilderGetQueryParameters { /** * Date string to narrow records selection to those created before or on that date. */ dateEnd?: Date; /** * Date string to narrow records selection to those created on or after that date. */ dateStart?: Date; } /** * Uri template for the request builder. */ export declare const DashboardRequestBuilderUriTemplate = "{+baseurl}/Api/CloudMatrix/Account/{accountId}/Dashboard{?dateEnd*,dateStart*}"; /** * Metadata for all the requests in the request builder. */ export declare const DashboardRequestBuilderRequestsMetadata: RequestsMetadata;