UNPKG

@microsoft/msgraph-beta-sdk-security

Version:
42 lines 2.13 kB
import { type CategoryTemplate } 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 categoryTemplate property of the microsoft.graph.security.filePlanDescriptor entity. */ export interface CategoryTemplateRequestBuilder extends BaseRequestBuilder<CategoryTemplateRequestBuilder> { /** * Specifies a group of similar types of content in a particular department. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<CategoryTemplate>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<CategoryTemplateRequestBuilderGetQueryParameters> | undefined): Promise<CategoryTemplate | undefined>; /** * Specifies a group of similar types of content in a particular department. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<CategoryTemplateRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * Specifies a group of similar types of content in a particular department. */ export interface CategoryTemplateRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const CategoryTemplateRequestBuilderUriTemplate = "{+baseurl}/security/labels/retentionLabels/{retentionLabel%2Did}/descriptors/categoryTemplate{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const CategoryTemplateRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map