import { type CloudMatrixCorrelation } from '../../../../models/cloudMatrix/index.js'; import { type DataRequestBuilder } from './data/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/CloudMatrix/Correlation/{correlationId} */ export interface WithCorrelationItemRequestBuilder extends BaseRequestBuilder { /** * The Data property */ get data(): DataRequestBuilder; /** * Retrieves the details of a specific Cloud Matrix correlation record if it exists on the tenant found in the token.This endpoint requires the `CloudMatrix.Read`, `CloudMatrix.Read.Del`, `CloudMatrix.Read.All`, `CloudMatrix.ReadWrite`, 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 details of a specific Cloud Matrix correlation record if it exists on the tenant found in the token.This endpoint requires the `CloudMatrix.Read`, `CloudMatrix.Read.Del`, `CloudMatrix.Read.All`, `CloudMatrix.ReadWrite`, 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; } /** * Uri template for the request builder. */ export declare const WithCorrelationItemRequestBuilderUriTemplate = "{+baseurl}/Api/CloudMatrix/Correlation/{correlationId}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const WithCorrelationItemRequestBuilderNavigationMetadata: Record, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const WithCorrelationItemRequestBuilderRequestsMetadata: RequestsMetadata;