UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
42 lines 2.28 kB
import { type WindowsAutopilotDeploymentProfile } 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 intendedDeploymentProfile property of the microsoft.graph.windowsAutopilotDeviceIdentity entity. */ export interface IntendedDeploymentProfileRequestBuilder extends BaseRequestBuilder<IntendedDeploymentProfileRequestBuilder> { /** * Deployment profile intended to be assigned to the Windows autopilot device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<WindowsAutopilotDeploymentProfile>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<IntendedDeploymentProfileRequestBuilderGetQueryParameters> | undefined): Promise<WindowsAutopilotDeploymentProfile | undefined>; /** * Deployment profile intended to be assigned to the Windows autopilot device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<IntendedDeploymentProfileRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * Deployment profile intended to be assigned to the Windows autopilot device. */ export interface IntendedDeploymentProfileRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const IntendedDeploymentProfileRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity%2Did}/intendedDeploymentProfile{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const IntendedDeploymentProfileRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map