@microsoft/msgraph-beta-sdk-devicemanagement
Version:
DeviceManagement fluent API for Microsoft Graph
69 lines • 4.03 kB
TypeScript
import { type WindowsUpdateCatalogItem } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the windowsUpdateCatalogItems property of the microsoft.graph.deviceManagement entity.
*/
export interface WindowsUpdateCatalogItemItemRequestBuilder extends BaseRequestBuilder<WindowsUpdateCatalogItemItemRequestBuilder> {
/**
* Delete navigation property windowsUpdateCatalogItems for deviceManagement
* @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 collection of windows update catalog items (fetaure updates item , quality updates item)
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<WindowsUpdateCatalogItem>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<WindowsUpdateCatalogItemItemRequestBuilderGetQueryParameters> | undefined): Promise<WindowsUpdateCatalogItem | undefined>;
/**
* Update the navigation property windowsUpdateCatalogItems in deviceManagement
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<WindowsUpdateCatalogItem>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
patch(body: WindowsUpdateCatalogItem, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WindowsUpdateCatalogItem | undefined>;
/**
* Delete navigation property windowsUpdateCatalogItems for deviceManagement
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
/**
* A collection of windows update catalog items (fetaure updates item , quality updates item)
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<WindowsUpdateCatalogItemItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
/**
* Update the navigation property windowsUpdateCatalogItems in deviceManagement
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPatchRequestInformation(body: WindowsUpdateCatalogItem, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* A collection of windows update catalog items (fetaure updates item , quality updates item)
*/
export interface WindowsUpdateCatalogItemItemRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const WindowsUpdateCatalogItemItemRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/windowsUpdateCatalogItems/{windowsUpdateCatalogItem%2Did}{?%24expand,%24select}";
/**
* Metadata for all the requests in the request builder.
*/
export declare const WindowsUpdateCatalogItemItemRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map