UNPKG

@microsoft/msgraph-beta-sdk-devices

Version:
26 lines 1.34 kB
import { type DevicesRequestBuilder } from './devices/index.js'; import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions'; /** * Instantiates a new DevicesServiceClient 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 createDevicesServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): DevicesServiceClient; /** * The main entry point of the SDK, exposes the configuration and the fluent API. */ export interface DevicesServiceClient extends BaseRequestBuilder<DevicesServiceClient> { /** * Provides operations to manage the collection of device entities. */ get devices(): DevicesRequestBuilder; } /** * Metadata for all the navigation properties in the request builder. */ export declare const DevicesServiceClientNavigationMetadata: Record<Exclude<keyof DevicesServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const DevicesServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=devicesServiceClient.d.ts.map