UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
115 lines 5.11 kB
import { type CloudPC, type CloudPCCollectionResponse } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type BulkResizeRequestBuilder } from './bulkResize/index.js'; import { type CountRequestBuilder } from './count/index.js'; import { type GetProvisionedCloudPCsWithGroupIdWithServicePlanIdRequestBuilder } from './getProvisionedCloudPCsWithGroupIdWithServicePlanId/index.js'; import { type CloudPCItemRequestBuilder } from './item/index.js'; import { type ValidateBulkResizeRequestBuilder } from './validateBulkResize/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the cloudPCs property of the microsoft.graph.user entity. */ export interface CloudPCsRequestBuilder extends BaseRequestBuilder<CloudPCsRequestBuilder> { /** * Provides operations to call the bulkResize method. */ get bulkResize(): BulkResizeRequestBuilder; /** * Provides operations to count the resources in the collection. */ get count(): CountRequestBuilder; /** * Provides operations to call the validateBulkResize method. */ get validateBulkResize(): ValidateBulkResizeRequestBuilder; /** * Provides operations to manage the cloudPCs property of the microsoft.graph.user entity. * @param cloudPCId The unique identifier of cloudPC * @returns {CloudPCItemRequestBuilder} */ byCloudPCId(cloudPCId: string): CloudPCItemRequestBuilder; /** * Get cloudPCs from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<CloudPCCollectionResponse>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<CloudPCsRequestBuilderGetQueryParameters> | undefined): Promise<CloudPCCollectionResponse | undefined>; /** * Provides operations to call the getProvisionedCloudPCs method. * @param groupId Usage: groupId='{groupId}' * @param servicePlanId Usage: servicePlanId='{servicePlanId}' * @returns {GetProvisionedCloudPCsWithGroupIdWithServicePlanIdRequestBuilder} */ getProvisionedCloudPCsWithGroupIdWithServicePlanId(groupId: string | undefined, servicePlanId: string | undefined): GetProvisionedCloudPCsWithGroupIdWithServicePlanIdRequestBuilder; /** * Create new navigation property to cloudPCs for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<CloudPC>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ post(body: CloudPC, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CloudPC | undefined>; /** * Get cloudPCs from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<CloudPCsRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Create new navigation property to cloudPCs for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: CloudPC, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Get cloudPCs from users */ export interface CloudPCsRequestBuilderGetQueryParameters { /** * Include count of items */ count?: boolean; /** * Expand related entities */ expand?: string[]; /** * Filter items by property values */ filter?: string; /** * Order items by property values */ orderby?: string[]; /** * Search items by search phrases */ search?: string; /** * Select properties to be returned */ select?: string[]; /** * Skip the first n items */ skip?: number; /** * Show only the first n items */ top?: number; } /** * Uri template for the request builder. */ export declare const CloudPCsRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/cloudPCs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const CloudPCsRequestBuilderNavigationMetadata: Record<Exclude<keyof CloudPCsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const CloudPCsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map