UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
61 lines 2.5 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 {GetFileVaultKeyGetResponse} */ // @ts-ignore export function createGetFileVaultKeyGetResponseFromDiscriminatorValue(parseNode) { return deserializeIntoGetFileVaultKeyGetResponse; } /** * The deserialization information for the current model * @param GetFileVaultKeyGetResponse The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoGetFileVaultKeyGetResponse(getFileVaultKeyGetResponse = {}) { return { "backingStoreEnabled": n => { getFileVaultKeyGetResponse.backingStoreEnabled = true; }, "value": n => { getFileVaultKeyGetResponse.value = n.getStringValue(); }, }; } /** * Serializes information the current object * @param GetFileVaultKeyGetResponse The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeGetFileVaultKeyGetResponse(writer, getFileVaultKeyGetResponse = {}, isSerializingDerivedType = false) { if (!getFileVaultKeyGetResponse || isSerializingDerivedType) { return; } writer.writeStringValue("value", getFileVaultKeyGetResponse.value); writer.writeAdditionalData(getFileVaultKeyGetResponse.additionalData); } /** * Uri template for the request builder. */ export const GetFileVaultKeyRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/comanagedDevices/{managedDevice%2Did}/getFileVaultKey()"; /** * Metadata for all the requests in the request builder. */ export const GetFileVaultKeyRequestBuilderRequestsMetadata = { get: { uriTemplate: GetFileVaultKeyRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createGetFileVaultKeyGetResponseFromDiscriminatorValue, }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map