import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import { GraphRbacManagementClientContext } from "../graphRbacManagementClientContext"; /** Class representing a Objects. */ export declare class Objects { private readonly client; /** * Create a Objects. * @param {GraphRbacManagementClientContext} client Reference to the service client. */ constructor(client: GraphRbacManagementClientContext); /** * Gets the directory objects specified in a list of object IDs. You can also specify which * resource collections (users, groups, etc.) should be searched by specifying the optional types * parameter. * @param parameters Objects filtering parameters. * @param [options] The optional parameters * @returns Promise */ getObjectsByObjectIds(parameters: Models.GetObjectsParameters, options?: msRest.RequestOptionsBase): Promise; /** * @param parameters Objects filtering parameters. * @param callback The callback */ getObjectsByObjectIds(parameters: Models.GetObjectsParameters, callback: msRest.ServiceCallback): void; /** * @param parameters Objects filtering parameters. * @param options The optional parameters * @param callback The callback */ getObjectsByObjectIds(parameters: Models.GetObjectsParameters, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; /** * Gets AD group membership for the specified AD object IDs. * @param nextLink Next link for the list operation. * @param [options] The optional parameters * @returns Promise */ getObjectsByObjectIdsNext(nextLink: string, options?: msRest.RequestOptionsBase): Promise; /** * @param nextLink Next link for the list operation. * @param callback The callback */ getObjectsByObjectIdsNext(nextLink: string, callback: msRest.ServiceCallback): void; /** * @param nextLink Next link for the list operation. * @param options The optional parameters * @param callback The callback */ getObjectsByObjectIdsNext(nextLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; } //# sourceMappingURL=objects.d.ts.map