UNPKG

@microsoft/msgraph-beta-sdk-external

Version:
98 lines 4.77 kB
import { type ProvisioningFlow, type ProvisioningFlowCollectionResponse } from '@microsoft/msgraph-beta-sdk/models/industryData/index.js'; import { type CountRequestBuilder } from './count/index.js'; import { type ProvisioningFlowItemRequestBuilder } 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 provisioningFlows property of the microsoft.graph.industryData.outboundProvisioningFlowSet entity. */ export interface ProvisioningFlowsRequestBuilder extends BaseRequestBuilder<ProvisioningFlowsRequestBuilder> { /** * Provides operations to count the resources in the collection. */ get count(): CountRequestBuilder; /** * Provides operations to manage the provisioningFlows property of the microsoft.graph.industryData.outboundProvisioningFlowSet entity. * @param provisioningFlowId The unique identifier of provisioningFlow * @returns {ProvisioningFlowItemRequestBuilder} */ byProvisioningFlowId(provisioningFlowId: string): ProvisioningFlowItemRequestBuilder; /** * Get a list of the provisioningFlow objects and their properties. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<ProvisioningFlowCollectionResponse>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/industrydata-outboundprovisioningflowset-list-provisioningflows?view=graph-rest-beta|Find more info here} */ get(requestConfiguration?: RequestConfiguration<ProvisioningFlowsRequestBuilderGetQueryParameters> | undefined): Promise<ProvisioningFlowCollectionResponse | undefined>; /** * Create new navigation property to provisioningFlows for external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<ProvisioningFlow>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ post(body: ProvisioningFlow, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProvisioningFlow | undefined>; /** * Get a list of the provisioningFlow objects and their properties. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<ProvisioningFlowsRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Create new navigation property to provisioningFlows for external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: ProvisioningFlow, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Get a list of the provisioningFlow objects and their properties. */ export interface ProvisioningFlowsRequestBuilderGetQueryParameters { /** * 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 ProvisioningFlowsRequestBuilderUriTemplate = "{+baseurl}/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet%2Did}/provisioningFlows{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const ProvisioningFlowsRequestBuilderNavigationMetadata: Record<Exclude<keyof ProvisioningFlowsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const ProvisioningFlowsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map