UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
63 lines 2.54 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 {ResetPostRequestBody} */ // @ts-ignore export function createResetPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoResetPostRequestBody; } /** * The deserialization information for the current model * @param ResetPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoResetPostRequestBody(resetPostRequestBody = {}) { return { "backingStoreEnabled": n => { resetPostRequestBody.backingStoreEnabled = true; }, "cloudAppIds": n => { resetPostRequestBody.cloudAppIds = n.getCollectionOfPrimitiveValues(); }, }; } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param ResetPostRequestBody The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeResetPostRequestBody(writer, resetPostRequestBody = {}, isSerializingDerivedType = false) { if (!resetPostRequestBody || isSerializingDerivedType) { return; } writer.writeCollectionOfPrimitiveValues("cloudAppIds", resetPostRequestBody.cloudAppIds); writer.writeAdditionalData(resetPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const ResetRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint/cloudApps/reset"; /** * Metadata for all the requests in the request builder. */ export const ResetRequestBuilderRequestsMetadata = { post: { uriTemplate: ResetRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeResetPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map