UNPKG

@microsoft/msgraph-sdk-shares

Version:
52 lines 2.94 kB
import { type DriveItem } from '@microsoft/msgraph-sdk/models/index.js'; import { type ContentRequestBuilder } from './content/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the driveItem property of the microsoft.graph.sharedDriveItem entity. */ export interface DriveItemRequestBuilder extends BaseRequestBuilder<DriveItemRequestBuilder> { /** * Provides operations to manage the media for the sharedDriveItem entity. */ get content(): ContentRequestBuilder; /** * Access a shared DriveItem or a collection of shared items by using a shareId or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<DriveItem>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration<DriveItemRequestBuilderGetQueryParameters> | undefined): Promise<DriveItem | undefined>; /** * Access a shared DriveItem or a collection of shared items by using a shareId or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<DriveItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * Access a shared DriveItem or a collection of shared items by using a shareId or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token. */ export interface DriveItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const DriveItemRequestBuilderUriTemplate = "{+baseurl}/shares/{sharedDriveItem%2Did}/driveItem{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const DriveItemRequestBuilderNavigationMetadata: Record<Exclude<keyof DriveItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const DriveItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map