UNPKG

@microsoft/msgraph-beta-sdk-applications

Version:
51 lines 2.61 kB
import { type ConnectorGroup } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type RefRequestBuilder } from './ref/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the connectorGroup property of the microsoft.graph.application entity. */ export interface ConnectorGroupRequestBuilder extends BaseRequestBuilder<ConnectorGroupRequestBuilder> { /** * Provides operations to manage the collection of application entities. */ get ref(): RefRequestBuilder; /** * The connectorGroup the application is using with Microsoft Entra application proxy. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<ConnectorGroup>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<ConnectorGroupRequestBuilderGetQueryParameters> | undefined): Promise<ConnectorGroup | undefined>; /** * The connectorGroup the application is using with Microsoft Entra application proxy. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<ConnectorGroupRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * The connectorGroup the application is using with Microsoft Entra application proxy. Nullable. */ export interface ConnectorGroupRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const ConnectorGroupRequestBuilderUriTemplate = "{+baseurl}/applications/{application%2Did}/connectorGroup{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const ConnectorGroupRequestBuilderNavigationMetadata: Record<Exclude<keyof ConnectorGroupRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const ConnectorGroupRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map