@microsoft/msgraph-beta-sdk-devicemanagement
Version:
DeviceManagement fluent API for Microsoft Graph
98 lines • 5.43 kB
TypeScript
import { type WindowsDriverUpdateProfile } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type AssignRequestBuilder } from './assign/index.js';
import { type AssignmentsRequestBuilder } from './assignments/index.js';
import { type DriverInventoriesRequestBuilder } from './driverInventories/index.js';
import { type ExecuteActionRequestBuilder } from './executeAction/index.js';
import { type SyncInventoryRequestBuilder } from './syncInventory/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the windowsDriverUpdateProfiles property of the microsoft.graph.deviceManagement entity.
*/
export interface WindowsDriverUpdateProfileItemRequestBuilder extends BaseRequestBuilder<WindowsDriverUpdateProfileItemRequestBuilder> {
/**
* Provides operations to call the assign method.
*/
get assign(): AssignRequestBuilder;
/**
* Provides operations to manage the assignments property of the microsoft.graph.windowsDriverUpdateProfile entity.
*/
get assignments(): AssignmentsRequestBuilder;
/**
* Provides operations to manage the driverInventories property of the microsoft.graph.windowsDriverUpdateProfile entity.
*/
get driverInventories(): DriverInventoriesRequestBuilder;
/**
* Provides operations to call the executeAction method.
*/
get executeAction(): ExecuteActionRequestBuilder;
/**
* Provides operations to call the syncInventory method.
*/
get syncInventory(): SyncInventoryRequestBuilder;
/**
* Delete navigation property windowsDriverUpdateProfiles 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 driver update profiles
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<WindowsDriverUpdateProfile>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<WindowsDriverUpdateProfileItemRequestBuilderGetQueryParameters> | undefined): Promise<WindowsDriverUpdateProfile | undefined>;
/**
* Update the navigation property windowsDriverUpdateProfiles in deviceManagement
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<WindowsDriverUpdateProfile>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
patch(body: WindowsDriverUpdateProfile, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WindowsDriverUpdateProfile | undefined>;
/**
* Delete navigation property windowsDriverUpdateProfiles 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 driver update profiles
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<WindowsDriverUpdateProfileItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
/**
* Update the navigation property windowsDriverUpdateProfiles 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: WindowsDriverUpdateProfile, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* A collection of windows driver update profiles
*/
export interface WindowsDriverUpdateProfileItemRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const WindowsDriverUpdateProfileItemRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile%2Did}{?%24expand,%24select}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const WindowsDriverUpdateProfileItemRequestBuilderNavigationMetadata: Record<Exclude<keyof WindowsDriverUpdateProfileItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const WindowsDriverUpdateProfileItemRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map