UNPKG

@microsoft/msgraph-sdk-security

Version:
79 lines 4.81 kB
import { type IntelligenceProfileIndicator } from '@microsoft/msgraph-sdk/models/security/index.js'; import { type ArtifactRequestBuilder } from './artifact/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the intelligenceProfileIndicators property of the microsoft.graph.security.threatIntelligence entity. */ export interface IntelligenceProfileIndicatorItemRequestBuilder extends BaseRequestBuilder<IntelligenceProfileIndicatorItemRequestBuilder> { /** * Provides operations to manage the artifact property of the microsoft.graph.security.indicator entity. */ get artifact(): ArtifactRequestBuilder; /** * Delete navigation property intelligenceProfileIndicators for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * Read the properties and relationships of a intelligenceProfileIndicator object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<IntelligenceProfileIndicator>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/security-intelligenceprofileindicator-get?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration<IntelligenceProfileIndicatorItemRequestBuilderGetQueryParameters> | undefined): Promise<IntelligenceProfileIndicator | undefined>; /** * Update the navigation property intelligenceProfileIndicators in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<IntelligenceProfileIndicator>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: IntelligenceProfileIndicator, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<IntelligenceProfileIndicator | undefined>; /** * Delete navigation property intelligenceProfileIndicators for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Read the properties and relationships of a intelligenceProfileIndicator object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<IntelligenceProfileIndicatorItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property intelligenceProfileIndicators in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: IntelligenceProfileIndicator, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Read the properties and relationships of a intelligenceProfileIndicator object. */ export interface IntelligenceProfileIndicatorItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const IntelligenceProfileIndicatorItemRequestBuilderUriTemplate = "{+baseurl}/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator%2Did}{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const IntelligenceProfileIndicatorItemRequestBuilderNavigationMetadata: Record<Exclude<keyof IntelligenceProfileIndicatorItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const IntelligenceProfileIndicatorItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map