@microsoft/msgraph-beta-sdk-devicemanagement
Version:
DeviceManagement fluent API for Microsoft Graph
98 lines • 6.66 kB
TypeScript
import { type HardwareConfiguration } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type AssignRequestBuilder } from './assign/index.js';
import { type AssignmentsRequestBuilder } from './assignments/index.js';
import { type DeviceRunStatesRequestBuilder } from './deviceRunStates/index.js';
import { type RunSummaryRequestBuilder } from './runSummary/index.js';
import { type UserRunStatesRequestBuilder } from './userRunStates/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the hardwareConfigurations property of the microsoft.graph.deviceManagement entity.
*/
export interface HardwareConfigurationItemRequestBuilder extends BaseRequestBuilder<HardwareConfigurationItemRequestBuilder> {
/**
* Provides operations to call the assign method.
*/
get assign(): AssignRequestBuilder;
/**
* Provides operations to manage the assignments property of the microsoft.graph.hardwareConfiguration entity.
*/
get assignments(): AssignmentsRequestBuilder;
/**
* Provides operations to manage the deviceRunStates property of the microsoft.graph.hardwareConfiguration entity.
*/
get deviceRunStates(): DeviceRunStatesRequestBuilder;
/**
* Provides operations to manage the runSummary property of the microsoft.graph.hardwareConfiguration entity.
*/
get runSummary(): RunSummaryRequestBuilder;
/**
* Provides operations to manage the userRunStates property of the microsoft.graph.hardwareConfiguration entity.
*/
get userRunStates(): UserRunStatesRequestBuilder;
/**
* Delete navigation property hardwareConfigurations 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>;
/**
* BIOS configuration and other settings provides customers the ability to configure hardware/bios settings on the enrolled Windows 10/11 Entra ID joined devices by uploading a configuration file generated with their OEM tool (e.g. Dell Command tool). A BIOS configuration policy can be assigned to multiple devices, allowing admins to remotely control a device's hardware properties (e.g. enable Secure Boot) from the Intune Portal. Supported for Dell only at this time.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<HardwareConfiguration>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<HardwareConfigurationItemRequestBuilderGetQueryParameters> | undefined): Promise<HardwareConfiguration | undefined>;
/**
* Update the navigation property hardwareConfigurations in deviceManagement
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<HardwareConfiguration>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
patch(body: HardwareConfiguration, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<HardwareConfiguration | undefined>;
/**
* Delete navigation property hardwareConfigurations for deviceManagement
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
/**
* BIOS configuration and other settings provides customers the ability to configure hardware/bios settings on the enrolled Windows 10/11 Entra ID joined devices by uploading a configuration file generated with their OEM tool (e.g. Dell Command tool). A BIOS configuration policy can be assigned to multiple devices, allowing admins to remotely control a device's hardware properties (e.g. enable Secure Boot) from the Intune Portal. Supported for Dell only at this time.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<HardwareConfigurationItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
/**
* Update the navigation property hardwareConfigurations 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: HardwareConfiguration, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* BIOS configuration and other settings provides customers the ability to configure hardware/bios settings on the enrolled Windows 10/11 Entra ID joined devices by uploading a configuration file generated with their OEM tool (e.g. Dell Command tool). A BIOS configuration policy can be assigned to multiple devices, allowing admins to remotely control a device's hardware properties (e.g. enable Secure Boot) from the Intune Portal. Supported for Dell only at this time.
*/
export interface HardwareConfigurationItemRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const HardwareConfigurationItemRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/hardwareConfigurations/{hardwareConfiguration%2Did}{?%24expand,%24select}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const HardwareConfigurationItemRequestBuilderNavigationMetadata: Record<Exclude<keyof HardwareConfigurationItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const HardwareConfigurationItemRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map