UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
60 lines 3.28 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createCloudCertificationAuthorityFromDiscriminatorValue, deserializeIntoBaseCollectionPaginationCountResponse, serializeBaseCollectionPaginationCountResponse, serializeCloudCertificationAuthority } 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 {PostCloudCertificationAuthorityPostResponse} */ // @ts-ignore export function createPostCloudCertificationAuthorityPostResponseFromDiscriminatorValue(parseNode) { return deserializeIntoPostCloudCertificationAuthorityPostResponse; } /** * The deserialization information for the current model * @param PostCloudCertificationAuthorityPostResponse The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoPostCloudCertificationAuthorityPostResponse(postCloudCertificationAuthorityPostResponse = {}) { return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(postCloudCertificationAuthorityPostResponse)), { "value": n => { postCloudCertificationAuthorityPostResponse.value = n.getCollectionOfObjectValues(createCloudCertificationAuthorityFromDiscriminatorValue); } }); } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param PostCloudCertificationAuthorityPostResponse The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializePostCloudCertificationAuthorityPostResponse(writer, postCloudCertificationAuthorityPostResponse = {}, isSerializingDerivedType = false) { if (!postCloudCertificationAuthorityPostResponse || isSerializingDerivedType) { return; } serializeBaseCollectionPaginationCountResponse(writer, postCloudCertificationAuthorityPostResponse, isSerializingDerivedType); writer.writeCollectionOfObjectValues("value", postCloudCertificationAuthorityPostResponse.value, serializeCloudCertificationAuthority); } /** * Uri template for the request builder. */ export const PostCloudCertificationAuthorityRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority%2Did}/postCloudCertificationAuthority"; /** * Metadata for all the requests in the request builder. */ export const PostCloudCertificationAuthorityRequestBuilderRequestsMetadata = { post: { uriTemplate: PostCloudCertificationAuthorityRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createPostCloudCertificationAuthorityPostResponseFromDiscriminatorValue, }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map