@microsoft/msgraph-beta-sdk-compliance
Version:
Compliance fluent API for Microsoft Graph
105 lines • 6.23 kB
TypeScript
import { type SourceCollection, type SourceCollectionCollectionResponse } from '@microsoft/msgraph-beta-sdk/models/ediscovery/index.js';
import { type CountRequestBuilder } from './count/index.js';
import { type SourceCollectionItemRequestBuilder } 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 sourceCollections property of the microsoft.graph.ediscovery.case entity.
*/
export interface SourceCollectionsRequestBuilder extends BaseRequestBuilder<SourceCollectionsRequestBuilder> {
/**
* 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 sourceCollections property of the microsoft.graph.ediscovery.case entity.
* @param sourceCollectionId The unique identifier of sourceCollection
* @returns {SourceCollectionItemRequestBuilder}
* @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
*/
bySourceCollectionId(sourceCollectionId: string): SourceCollectionItemRequestBuilder;
/**
* Get the list of sourceCollections from a case object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<SourceCollectionCollectionResponse>}
* @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-list-sourcecollections?view=graph-rest-beta|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<SourceCollectionsRequestBuilderGetQueryParameters> | undefined): Promise<SourceCollectionCollectionResponse | undefined>;
/**
* Create a new sourceCollection object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<SourceCollection>}
* @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-sourcecollections?view=graph-rest-beta|Find more info here}
*/
post(body: SourceCollection, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<SourceCollection | undefined>;
/**
* Get the list of sourceCollections from a case 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<SourceCollectionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
/**
* Create a new sourceCollection object.
* @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: SourceCollection, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* Get the list of sourceCollections from a case object.
*/
export interface SourceCollectionsRequestBuilderGetQueryParameters {
/**
* 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 SourceCollectionsRequestBuilderUriTemplate = "{+baseurl}/compliance/ediscovery/cases/{case%2Did}/sourceCollections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const SourceCollectionsRequestBuilderNavigationMetadata: Record<Exclude<keyof SourceCollectionsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const SourceCollectionsRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map