UNPKG

@microsoft/msgraph-beta-sdk-policies

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