import { type LicenseReportV0 } from '../../models/index.js'; import { type CorrelationRequestBuilder } from './correlation/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/LicenseReport */ export interface LicenseReportRequestBuilder extends BaseRequestBuilder { /** * The Correlation property */ get correlation(): CorrelationRequestBuilder; /** * Store the results of a license analytics run.This endpoint requires the `LicenseReport.ReadWrite`, or `LicenseReport.ReadWrite.All` scope (permission). * @param body Completely calculated license report structure that is the result of a complete run. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ post(body: LicenseReportV0, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Store the results of a license analytics run.This endpoint requires the `LicenseReport.ReadWrite`, or `LicenseReport.ReadWrite.All` scope (permission). * @param body Completely calculated license report structure that is the result of a complete run. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: LicenseReportV0, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const LicenseReportRequestBuilderUriTemplate = "{+baseurl}/Api/LicenseReport"; /** * Metadata for all the navigation properties in the request builder. */ export declare const LicenseReportRequestBuilderNavigationMetadata: Record, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const LicenseReportRequestBuilderRequestsMetadata: RequestsMetadata;