UNPKG

@microsoft/msgraph-beta-sdk-compliance

Version:
104 lines 6.12 kB
import { type ReviewSet, type ReviewSetCollectionResponse } from '@microsoft/msgraph-beta-sdk/models/ediscovery/index.js'; import { type CountRequestBuilder } from './count/index.js'; import { type ReviewSetItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the reviewSets property of the microsoft.graph.ediscovery.case entity. */ export interface ReviewSetsRequestBuilder extends BaseRequestBuilder<ReviewSetsRequestBuilder> { /** * Provides operations to count the resources in the collection. * @deprecated The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security. as of 2022-12/ediscoveryNamespace on 2022-12-05 and will be removed 2023-02-01 */ get count(): CountRequestBuilder; /** * Provides operations to manage the reviewSets property of the microsoft.graph.ediscovery.case entity. * @param reviewSetId The unique identifier of reviewSet * @returns {ReviewSetItemRequestBuilder} * @deprecated The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security. as of 2022-12/ediscoveryNamespace on 2022-12-05 and will be removed 2023-02-01 */ byReviewSetId(reviewSetId: string): ReviewSetItemRequestBuilder; /** * Retrieve the properties and relationships of a reviewSet object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<ReviewSetCollectionResponse>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @deprecated The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security. as of 2022-12/ediscoveryNamespace on 2022-12-05 and will be removed 2023-02-01 */ get(requestConfiguration?: RequestConfiguration<ReviewSetsRequestBuilderGetQueryParameters> | undefined): Promise<ReviewSetCollectionResponse | undefined>; /** * Create a new reviewSet object. The request body contains the display name of the review set, which is the only writable property. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<ReviewSet>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @deprecated The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security. as of 2022-12/ediscoveryNamespace on 2022-12-05 and will be removed 2023-02-01 * @see {@link https://learn.microsoft.com/graph/api/ediscovery-case-post-reviewsets?view=graph-rest-beta|Find more info here} */ post(body: ReviewSet, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ReviewSet | undefined>; /** * Retrieve the properties and relationships of a reviewSet object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} * @deprecated The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security. as of 2022-12/ediscoveryNamespace on 2022-12-05 and will be removed 2023-02-01 */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<ReviewSetsRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Create a new reviewSet object. The request body contains the display name of the review set, which is the only writable property. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} * @deprecated The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security. as of 2022-12/ediscoveryNamespace on 2022-12-05 and will be removed 2023-02-01 */ toPostRequestInformation(body: ReviewSet, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Retrieve the properties and relationships of a reviewSet object. */ export interface ReviewSetsRequestBuilderGetQueryParameters { /** * Include count of items */ count?: boolean; /** * Expand related entities */ expand?: string[]; /** * Filter items by property values */ filter?: string; /** * Order items by property values */ orderby?: string[]; /** * Search items by search phrases */ search?: string; /** * Select properties to be returned */ select?: string[]; /** * Skip the first n items */ skip?: number; /** * Show only the first n items */ top?: number; } /** * Uri template for the request builder. */ export declare const ReviewSetsRequestBuilderUriTemplate = "{+baseurl}/compliance/ediscovery/cases/{case%2Did}/reviewSets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const ReviewSetsRequestBuilderNavigationMetadata: Record<Exclude<keyof ReviewSetsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const ReviewSetsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map