UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

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