@microsoft/msgraph-beta-sdk-compliance
Version:
Compliance fluent API for Microsoft Graph
26 lines • 1.38 kB
TypeScript
import { type ComplianceRequestBuilder } from './compliance/index.js';
import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
/**
* The main entry point of the SDK, exposes the configuration and the fluent API.
*/
export interface ComplianceServiceClient extends BaseRequestBuilder<ComplianceServiceClient> {
/**
* Provides operations to manage the compliance singleton.
*/
get compliance(): ComplianceRequestBuilder;
}
/**
* Instantiates a new ComplianceServiceClient 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 createComplianceServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): ComplianceServiceClient;
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const ComplianceServiceClientNavigationMetadata: Record<Exclude<keyof ComplianceServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Uri template for the request builder.
*/
export declare const ComplianceServiceClientUriTemplate = "{+baseurl}";
//# sourceMappingURL=complianceServiceClient.d.ts.map