UNPKG

@microsoft/msgraph-beta-sdk-connections

Version:
26 lines 1.41 kB
import { type ConnectionsRequestBuilder } from './connections/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 ConnectionsServiceClient extends BaseRequestBuilder<ConnectionsServiceClient> { /** * Provides operations to manage the collection of externalConnection entities. */ get connections(): ConnectionsRequestBuilder; } /** * Instantiates a new ConnectionsServiceClient 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 createConnectionsServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): ConnectionsServiceClient; /** * Metadata for all the navigation properties in the request builder. */ export declare const ConnectionsServiceClientNavigationMetadata: Record<Exclude<keyof ConnectionsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const ConnectionsServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=connectionsServiceClient.d.ts.map