import { type CorrelationRecord } from '../../../models/report/index.js'; import { type WithCorrelationItemRequestBuilder } from './item/index.js'; import { type TenantRequestBuilder } from './tenant/index.js'; import { type BaseRequestBuilder, type Guid, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/LicenseReport/Correlation */ export interface CorrelationRequestBuilder extends BaseRequestBuilder { /** * The Tenant property */ get tenant(): TenantRequestBuilder; /** * Gets an item from the ApiSdk.Api.LicenseReport.Correlation.item collection * @param correlationId The object ID of the correlation identifier for the specified record. * @returns {WithCorrelationItemRequestBuilder} */ byCorrelationId(correlationId: Guid): WithCorrelationItemRequestBuilder; /** * Retrieves the list of correlation records for the authenticated tenant. Can use filters targeting creation date to limit results. Correlation records store the metadata for a specific license report.This endpoint requires the `LicenseReport.Read`, `LicenseReport.Read.All`, `LicenseReport.ReadWrite`, or `LicenseReport.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 correlation records for the authenticated tenant. Can use filters targeting creation date to limit results. Correlation records store the metadata for a specific license report.This endpoint requires the `LicenseReport.Read`, `LicenseReport.Read.All`, `LicenseReport.ReadWrite`, or `LicenseReport.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 correlation records for the authenticated tenant. Can use filters targeting creation date to limit results. Correlation records store the metadata for a specific license report.This endpoint requires the `LicenseReport.Read`, `LicenseReport.Read.All`, `LicenseReport.ReadWrite`, or `LicenseReport.ReadWrite.All` scope (permission). */ export interface CorrelationRequestBuilderGetQueryParameters { /** * 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 CorrelationRequestBuilderUriTemplate = "{+baseurl}/Api/LicenseReport/Correlation{?dateEnd*,dateStart*}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const CorrelationRequestBuilderNavigationMetadata: Record, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const CorrelationRequestBuilderRequestsMetadata: RequestsMetadata;