UNPKG

@microsoft/msgraph-beta-sdk-external

Version:
78 lines 4.62 kB
import { type OutboundProvisioningFlowSet } from '@microsoft/msgraph-beta-sdk/models/industryData/index.js'; import { type ProvisioningFlowsRequestBuilder } from './provisioningFlows/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the outboundProvisioningFlowSets property of the microsoft.graph.industryData.industryDataRoot entity. */ export interface OutboundProvisioningFlowSetItemRequestBuilder extends BaseRequestBuilder<OutboundProvisioningFlowSetItemRequestBuilder> { /** * Provides operations to manage the provisioningFlows property of the microsoft.graph.industryData.outboundProvisioningFlowSet entity. */ get provisioningFlows(): ProvisioningFlowsRequestBuilder; /** * Delete navigation property outboundProvisioningFlowSets for external * @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>; /** * Get outboundProvisioningFlowSets from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<OutboundProvisioningFlowSet>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<OutboundProvisioningFlowSetItemRequestBuilderGetQueryParameters> | undefined): Promise<OutboundProvisioningFlowSet | undefined>; /** * Update the navigation property outboundProvisioningFlowSets in external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<OutboundProvisioningFlowSet>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: OutboundProvisioningFlowSet, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<OutboundProvisioningFlowSet | undefined>; /** * Delete navigation property outboundProvisioningFlowSets for external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Get outboundProvisioningFlowSets from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<OutboundProvisioningFlowSetItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property outboundProvisioningFlowSets in external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: OutboundProvisioningFlowSet, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Get outboundProvisioningFlowSets from external */ export interface OutboundProvisioningFlowSetItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const OutboundProvisioningFlowSetItemRequestBuilderUriTemplate = "{+baseurl}/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet%2Did}{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const OutboundProvisioningFlowSetItemRequestBuilderNavigationMetadata: Record<Exclude<keyof OutboundProvisioningFlowSetItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const OutboundProvisioningFlowSetItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map