UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
26 lines 1.46 kB
import { type DeviceManagementRequestBuilder } from './deviceManagement/index.js'; import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions'; /** * Instantiates a new DeviceManagementServiceClient and sets the default values. * @param backingStore The backing store to use for the models. * @param requestAdapter The request adapter to use to execute the requests. */ export declare function createDeviceManagementServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): DeviceManagementServiceClient; /** * The main entry point of the SDK, exposes the configuration and the fluent API. */ export interface DeviceManagementServiceClient extends BaseRequestBuilder<DeviceManagementServiceClient> { /** * Provides operations to manage the deviceManagement singleton. */ get deviceManagement(): DeviceManagementRequestBuilder; } /** * Metadata for all the navigation properties in the request builder. */ export declare const DeviceManagementServiceClientNavigationMetadata: Record<Exclude<keyof DeviceManagementServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const DeviceManagementServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=deviceManagementServiceClient.d.ts.map