@microsoft/msgraph-beta-sdk-external
Version: 
External fluent API for Microsoft Graph
86 lines • 4.83 kB
TypeScript
import { type InboundFlow } from '@microsoft/msgraph-beta-sdk/models/industryData/index.js';
import { type DataConnectorRequestBuilder } from './dataConnector/index.js';
import { type YearRequestBuilder } from './year/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the inboundFlows property of the microsoft.graph.industryData.industryDataRoot entity.
 */
export interface InboundFlowItemRequestBuilder extends BaseRequestBuilder<InboundFlowItemRequestBuilder> {
    /**
     * Provides operations to manage the dataConnector property of the microsoft.graph.industryData.inboundFlow entity.
     */
    get dataConnector(): DataConnectorRequestBuilder;
    /**
     * Provides operations to manage the year property of the microsoft.graph.industryData.inboundFlow entity.
     */
    get year(): YearRequestBuilder;
    /**
     * Delete an inboundFlow object.
     * @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
     * @see {@link https://learn.microsoft.com/graph/api/industrydata-inboundflow-delete?view=graph-rest-beta|Find more info here}
     */
    delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
    /**
     * Read the properties and relationships of an inboundFlow object.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<InboundFlow>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     * @see {@link https://learn.microsoft.com/graph/api/industrydata-inboundflow-get?view=graph-rest-beta|Find more info here}
     */
    get(requestConfiguration?: RequestConfiguration<InboundFlowItemRequestBuilderGetQueryParameters> | undefined): Promise<InboundFlow | undefined>;
    /**
     * Update the properties of an inboundFileFlow object.
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<InboundFlow>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     * @see {@link https://learn.microsoft.com/graph/api/industrydata-inboundfileflow-update?view=graph-rest-beta|Find more info here}
     */
    patch(body: InboundFlow, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<InboundFlow | undefined>;
    /**
     * Delete an inboundFlow object.
     * @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 an inboundFlow object.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<InboundFlowItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Update the properties of an inboundFileFlow object.
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPatchRequestInformation(body: InboundFlow, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * Read the properties and relationships of an inboundFlow object.
 */
export interface InboundFlowItemRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const InboundFlowItemRequestBuilderUriTemplate = "{+baseurl}/external/industryData/inboundFlows/{inboundFlow%2Did}{?%24expand,%24select}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const InboundFlowItemRequestBuilderNavigationMetadata: Record<Exclude<keyof InboundFlowItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const InboundFlowItemRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map