UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
71 lines 4.02 kB
import { type CloudPcCloudApp } 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 cloudApps property of the microsoft.graph.virtualEndpoint entity. */ export interface CloudPcCloudAppItemRequestBuilder extends BaseRequestBuilder<CloudPcCloudAppItemRequestBuilder> { /** * Delete navigation property cloudApps 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>; /** * Read the properties of a specific cloudPcCloudApp object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<CloudPcCloudApp>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/cloudpccloudapp-get?view=graph-rest-beta|Find more info here} */ get(requestConfiguration?: RequestConfiguration<CloudPcCloudAppItemRequestBuilderGetQueryParameters> | undefined): Promise<CloudPcCloudApp | undefined>; /** * Update the properties of a cloudPcCloudApp object, such as the display name or icon path. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<CloudPcCloudApp>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/cloudpccloudapp-update?view=graph-rest-beta|Find more info here} */ patch(body: CloudPcCloudApp, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CloudPcCloudApp | undefined>; /** * Delete navigation property cloudApps for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Read the properties of a specific cloudPcCloudApp object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<CloudPcCloudAppItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the properties of a cloudPcCloudApp object, such as the display name or icon path. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: CloudPcCloudApp, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Read the properties of a specific cloudPcCloudApp object. */ export interface CloudPcCloudAppItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const CloudPcCloudAppItemRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint/cloudApps/{cloudPcCloudApp%2Did}{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const CloudPcCloudAppItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map