UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
65 lines 3.21 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createCloudPcPolicyScheduledApplyActionDetailFromDiscriminatorValue, serializeCloudPcPolicyScheduledApplyActionDetail } 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 {SchedulePolicyApplyTaskPostRequestBody} */ // @ts-ignore export function createSchedulePolicyApplyTaskPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoSchedulePolicyApplyTaskPostRequestBody; } /** * The deserialization information for the current model * @param SchedulePolicyApplyTaskPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoSchedulePolicyApplyTaskPostRequestBody(schedulePolicyApplyTaskPostRequestBody = {}) { return { "backingStoreEnabled": n => { schedulePolicyApplyTaskPostRequestBody.backingStoreEnabled = true; }, "scheduledRule": n => { schedulePolicyApplyTaskPostRequestBody.scheduledRule = n.getObjectValue(createCloudPcPolicyScheduledApplyActionDetailFromDiscriminatorValue); }, }; } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param SchedulePolicyApplyTaskPostRequestBody The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeSchedulePolicyApplyTaskPostRequestBody(writer, schedulePolicyApplyTaskPostRequestBody = {}, isSerializingDerivedType = false) { if (!schedulePolicyApplyTaskPostRequestBody || isSerializingDerivedType) { return; } writer.writeObjectValue("scheduledRule", schedulePolicyApplyTaskPostRequestBody.scheduledRule, serializeCloudPcPolicyScheduledApplyActionDetail); writer.writeAdditionalData(schedulePolicyApplyTaskPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const SchedulePolicyApplyTaskRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy%2Did}/schedulePolicyApplyTask"; /** * Metadata for all the requests in the request builder. */ export const SchedulePolicyApplyTaskRequestBuilderRequestsMetadata = { post: { uriTemplate: SchedulePolicyApplyTaskRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeSchedulePolicyApplyTaskPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map