UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
54 lines 2.17 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createODataErrorFromDiscriminatorValue } from '@microsoft/msgraph-beta-sdk/models/oDataErrors/index.js'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {ResizePostRequestBody} */ export function createResizePostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoResizePostRequestBody; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ export function deserializeIntoResizePostRequestBody(resizePostRequestBody = {}) { return { "backingStoreEnabled": n => { resizePostRequestBody.backingStoreEnabled = true; }, "targetServicePlanId": n => { resizePostRequestBody.targetServicePlanId = n.getStringValue(); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export function serializeResizePostRequestBody(writer, resizePostRequestBody = {}) { writer.writeStringValue("targetServicePlanId", resizePostRequestBody.targetServicePlanId); writer.writeAdditionalData(resizePostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const ResizeRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC%2Did}/resize"; /** * Metadata for all the requests in the request builder. */ export const ResizeRequestBuilderRequestsMetadata = { post: { uriTemplate: ResizeRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeResizePostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map