UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
51 lines 2.41 kB
import { type Bitlocker } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type RecoveryKeysRequestBuilder } from './recoveryKeys/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the bitlocker property of the microsoft.graph.informationProtection entity. */ export interface BitlockerRequestBuilder extends BaseRequestBuilder<BitlockerRequestBuilder> { /** * Provides operations to manage the recoveryKeys property of the microsoft.graph.bitlocker entity. */ get recoveryKeys(): RecoveryKeysRequestBuilder; /** * Get bitlocker from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<Bitlocker>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<BitlockerRequestBuilderGetQueryParameters> | undefined): Promise<Bitlocker | undefined>; /** * Get bitlocker from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<BitlockerRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * Get bitlocker from users */ export interface BitlockerRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const BitlockerRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/informationProtection/bitlocker{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const BitlockerRequestBuilderNavigationMetadata: Record<Exclude<keyof BitlockerRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const BitlockerRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map