UNPKG

@microsoft/msgraph-beta-sdk-admin

Version:
78 lines 4.28 kB
import { type InternetExplorerMode } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type SiteListsRequestBuilder } from './siteLists/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the internetExplorerMode property of the microsoft.graph.edge entity. */ export interface InternetExplorerModeRequestBuilder extends BaseRequestBuilder<InternetExplorerModeRequestBuilder> { /** * Provides operations to manage the siteLists property of the microsoft.graph.internetExplorerMode entity. */ get siteLists(): SiteListsRequestBuilder; /** * Delete navigation property internetExplorerMode for admin * @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 */ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * A container for Internet Explorer mode resources. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<InternetExplorerMode>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<InternetExplorerModeRequestBuilderGetQueryParameters> | undefined): Promise<InternetExplorerMode | undefined>; /** * Update the navigation property internetExplorerMode in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<InternetExplorerMode>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: InternetExplorerMode, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<InternetExplorerMode | undefined>; /** * Delete navigation property internetExplorerMode for admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * A container for Internet Explorer mode resources. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<InternetExplorerModeRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property internetExplorerMode in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: InternetExplorerMode, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * A container for Internet Explorer mode resources. */ export interface InternetExplorerModeRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const InternetExplorerModeRequestBuilderUriTemplate = "{+baseurl}/admin/edge/internetExplorerMode{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const InternetExplorerModeRequestBuilderNavigationMetadata: Record<Exclude<keyof InternetExplorerModeRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const InternetExplorerModeRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map