import { InvalidateQueryFilters, QueryClient, UseQueryResult, UseSuspenseQueryResult } from "@tanstack/react-query"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { QueryHookOptions, SuspenseQueryHookOptions, TupleToPrefixes } from "./_types.js"; import { buildComputeServicesListServiceLogsQuery, ComputeServicesListServiceLogsQueryData, prefetchComputeServicesListServiceLogs, queryKeyComputeServicesListServiceLogs } from "./computeServicesListServiceLogs.core.js"; export { buildComputeServicesListServiceLogsQuery, type ComputeServicesListServiceLogsQueryData, prefetchComputeServicesListServiceLogs, queryKeyComputeServicesListServiceLogs, }; export type ComputeServicesListServiceLogsQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List service logs */ export declare function useComputeServicesListServiceLogs(request: operations.ListServiceLogsRequest, options?: QueryHookOptions): UseQueryResult; /** * List service logs */ export declare function useComputeServicesListServiceLogsSuspense(request: operations.ListServiceLogsRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setComputeServicesListServiceLogsData(client: QueryClient, queryKeyBase: [ id: string, parameters: { source?: components.ComputeLogSource | undefined; cursor?: string | undefined; limit?: number | undefined; order?: components.ComputeOrder | undefined; xOnBehalfOf?: string | undefined; } ], data: ComputeServicesListServiceLogsQueryData): ComputeServicesListServiceLogsQueryData | undefined; export declare function invalidateComputeServicesListServiceLogs(client: QueryClient, queryKeyBase: TupleToPrefixes<[ id: string, parameters: { source?: components.ComputeLogSource | undefined; cursor?: string | undefined; limit?: number | undefined; order?: components.ComputeOrder | undefined; xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllComputeServicesListServiceLogs(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=computeServicesListServiceLogs.d.ts.map