@microsoft/msgraph-beta-sdk-external
Version:
External fluent API for Microsoft Graph
91 lines • 4.67 kB
TypeScript
import { type IndustryDataRoot } from '@microsoft/msgraph-beta-sdk/models/industryData/index.js';
import { type DataConnectorsRequestBuilder } from './dataConnectors/index.js';
import { type InboundFlowsRequestBuilder } from './inboundFlows/index.js';
import { type OperationsRequestBuilder } from './operations/index.js';
import { type OutboundProvisioningFlowSetsRequestBuilder } from './outboundProvisioningFlowSets/index.js';
import { type ReferenceDefinitionsRequestBuilder } from './referenceDefinitions/index.js';
import { type RoleGroupsRequestBuilder } from './roleGroups/index.js';
import { type RunsRequestBuilder } from './runs/index.js';
import { type SourceSystemsRequestBuilder } from './sourceSystems/index.js';
import { type YearsRequestBuilder } from './years/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the industryData property of the microsoft.graph.externalConnectors.external entity.
*/
export interface IndustryDataRequestBuilder extends BaseRequestBuilder<IndustryDataRequestBuilder> {
/**
* Provides operations to manage the dataConnectors property of the microsoft.graph.industryData.industryDataRoot entity.
*/
get dataConnectors(): DataConnectorsRequestBuilder;
/**
* Provides operations to manage the inboundFlows property of the microsoft.graph.industryData.industryDataRoot entity.
*/
get inboundFlows(): InboundFlowsRequestBuilder;
/**
* Provides operations to manage the operations property of the microsoft.graph.industryData.industryDataRoot entity.
*/
get operations(): OperationsRequestBuilder;
/**
* Provides operations to manage the outboundProvisioningFlowSets property of the microsoft.graph.industryData.industryDataRoot entity.
*/
get outboundProvisioningFlowSets(): OutboundProvisioningFlowSetsRequestBuilder;
/**
* Provides operations to manage the referenceDefinitions property of the microsoft.graph.industryData.industryDataRoot entity.
*/
get referenceDefinitions(): ReferenceDefinitionsRequestBuilder;
/**
* Provides operations to manage the roleGroups property of the microsoft.graph.industryData.industryDataRoot entity.
*/
get roleGroups(): RoleGroupsRequestBuilder;
/**
* Provides operations to manage the runs property of the microsoft.graph.industryData.industryDataRoot entity.
*/
get runs(): RunsRequestBuilder;
/**
* Provides operations to manage the sourceSystems property of the microsoft.graph.industryData.industryDataRoot entity.
*/
get sourceSystems(): SourceSystemsRequestBuilder;
/**
* Provides operations to manage the years property of the microsoft.graph.industryData.industryDataRoot entity.
*/
get years(): YearsRequestBuilder;
/**
* Get industryData from external
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<IndustryDataRoot>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<IndustryDataRequestBuilderGetQueryParameters> | undefined): Promise<IndustryDataRoot | undefined>;
/**
* Get industryData from external
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<IndustryDataRequestBuilderGetQueryParameters> | undefined): RequestInformation;
}
/**
* Get industryData from external
*/
export interface IndustryDataRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const IndustryDataRequestBuilderUriTemplate = "{+baseurl}/external/industryData{?%24expand,%24select}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const IndustryDataRequestBuilderNavigationMetadata: Record<Exclude<keyof IndustryDataRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const IndustryDataRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map