UNPKG

@microsoft/msgraph-beta-sdk-security

Version:
42 lines 2.33 kB
import { type CitationTemplate } from '@microsoft/msgraph-beta-sdk/models/security/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the citationTemplate property of the microsoft.graph.security.filePlanDescriptor entity. */ export interface CitationTemplateRequestBuilder extends BaseRequestBuilder<CitationTemplateRequestBuilder> { /** * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<CitationTemplate>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<CitationTemplateRequestBuilderGetQueryParameters> | undefined): Promise<CitationTemplate | undefined>; /** * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<CitationTemplateRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. */ export interface CitationTemplateRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const CitationTemplateRequestBuilderUriTemplate = "{+baseurl}/security/labels/retentionLabels/{retentionLabel%2Did}/descriptors/citationTemplate{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const CitationTemplateRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map