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