UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
30 lines 1.89 kB
import { type CloudPcLaunchDetail } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to call the retrieveCloudPcLaunchDetail method. */ export interface RetrieveCloudPcLaunchDetailRequestBuilder extends BaseRequestBuilder<RetrieveCloudPcLaunchDetailRequestBuilder> { /** * Get the cloudPcLaunchDetail for a specific cloudPC that belongs to the current signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<CloudPcLaunchDetail>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-beta|Find more info here} */ get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CloudPcLaunchDetail | undefined>; /** * Get the cloudPcLaunchDetail for a specific cloudPC that belongs to the current signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const RetrieveCloudPcLaunchDetailRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC%2Did}/retrieveCloudPcLaunchDetail()"; /** * Metadata for all the requests in the request builder. */ export declare const RetrieveCloudPcLaunchDetailRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map