UNPKG

@microsoft/msgraph-beta-sdk-settings

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