@microsoft/msgraph-sdk-drives
Version:
Drives fluent API for Microsoft Graph
25 lines • 1.19 kB
TypeScript
import { type DrivesRequestBuilder } from './drives/index.js';
import { 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 DrivesServiceClient extends BaseRequestBuilder<DrivesServiceClient> {
/**
* Provides operations to manage the collection of drive entities.
*/
get drives(): DrivesRequestBuilder;
}
/**
* Instantiates a new DrivesServiceClient and sets the default values.
* @param requestAdapter The request adapter to use to execute the requests.
*/
export declare function createDrivesServiceClient(requestAdapter: RequestAdapter): DrivesServiceClient;
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const DrivesServiceClientNavigationMetadata: Record<Exclude<keyof DrivesServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Uri template for the request builder.
*/
export declare const DrivesServiceClientUriTemplate = "{+baseurl}";
//# sourceMappingURL=drivesServiceClient.d.ts.map