@microsoft/msgraph-beta-sdk-external
Version:
External fluent API for Microsoft Graph
42 lines • 2.11 kB
TypeScript
import { type IndustryDataConnector } from '@microsoft/msgraph-beta-sdk/models/industryData/index.js';
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the dataConnector property of the microsoft.graph.industryData.inboundFlow entity.
*/
export interface DataConnectorRequestBuilder extends BaseRequestBuilder<DataConnectorRequestBuilder> {
/**
* The data connector to the source system from where this flow gets its data.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<IndustryDataConnector>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<DataConnectorRequestBuilderGetQueryParameters> | undefined): Promise<IndustryDataConnector | undefined>;
/**
* The data connector to the source system from where this flow gets its data.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<DataConnectorRequestBuilderGetQueryParameters> | undefined): RequestInformation;
}
/**
* The data connector to the source system from where this flow gets its data.
*/
export interface DataConnectorRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const DataConnectorRequestBuilderUriTemplate = "{+baseurl}/external/industryData/inboundFlows/{inboundFlow%2Did}/dataConnector{?%24expand,%24select}";
/**
* Metadata for all the requests in the request builder.
*/
export declare const DataConnectorRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map