@microsoft/msgraph-beta-sdk-devicemanagement
Version:
DeviceManagement fluent API for Microsoft Graph
65 lines • 3.35 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
// Generated by Microsoft Kiota
// @ts-ignore
import { createUpdateWindowsDeviceAccountActionParameterFromDiscriminatorValue, serializeUpdateWindowsDeviceAccountActionParameter } from '@microsoft/msgraph-beta-sdk/models/index.js';
// @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 {UpdateWindowsDeviceAccountPostRequestBody}
*/
// @ts-ignore
export function createUpdateWindowsDeviceAccountPostRequestBodyFromDiscriminatorValue(parseNode) {
return deserializeIntoUpdateWindowsDeviceAccountPostRequestBody;
}
/**
* The deserialization information for the current model
* @param UpdateWindowsDeviceAccountPostRequestBody The instance to deserialize into.
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoUpdateWindowsDeviceAccountPostRequestBody(updateWindowsDeviceAccountPostRequestBody = {}) {
return {
"backingStoreEnabled": n => { updateWindowsDeviceAccountPostRequestBody.backingStoreEnabled = true; },
"updateWindowsDeviceAccountActionParameter": n => { updateWindowsDeviceAccountPostRequestBody.updateWindowsDeviceAccountActionParameter = n.getObjectValue(createUpdateWindowsDeviceAccountActionParameterFromDiscriminatorValue); },
};
}
/**
* Serializes information the current object
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
* @param UpdateWindowsDeviceAccountPostRequestBody The instance to serialize from.
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeUpdateWindowsDeviceAccountPostRequestBody(writer, updateWindowsDeviceAccountPostRequestBody = {}, isSerializingDerivedType = false) {
if (!updateWindowsDeviceAccountPostRequestBody || isSerializingDerivedType) {
return;
}
writer.writeObjectValue("updateWindowsDeviceAccountActionParameter", updateWindowsDeviceAccountPostRequestBody.updateWindowsDeviceAccountActionParameter, serializeUpdateWindowsDeviceAccountActionParameter);
writer.writeAdditionalData(updateWindowsDeviceAccountPostRequestBody.additionalData);
}
/**
* Uri template for the request builder.
*/
export const UpdateWindowsDeviceAccountRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/comanagedDevices/{managedDevice%2Did}/updateWindowsDeviceAccount";
/**
* Metadata for all the requests in the request builder.
*/
export const UpdateWindowsDeviceAccountRequestBuilderRequestsMetadata = {
post: {
uriTemplate: UpdateWindowsDeviceAccountRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "sendNoResponseContent",
requestBodyContentType: "application/json",
requestBodySerializer: serializeUpdateWindowsDeviceAccountPostRequestBody,
requestInformationContentSetMethod: "setContentFromParsable",
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map