UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
60 lines 3.68 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createCloudCertificationAuthorityLeafCertificateFromDiscriminatorValue, deserializeIntoBaseCollectionPaginationCountResponse, serializeBaseCollectionPaginationCountResponse, serializeCloudCertificationAuthorityLeafCertificate } 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 {GetAllCloudCertificationAuthorityLeafCertificatesPostResponse} */ // @ts-ignore export function createGetAllCloudCertificationAuthorityLeafCertificatesPostResponseFromDiscriminatorValue(parseNode) { return deserializeIntoGetAllCloudCertificationAuthorityLeafCertificatesPostResponse; } /** * The deserialization information for the current model * @param GetAllCloudCertificationAuthorityLeafCertificatesPostResponse The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoGetAllCloudCertificationAuthorityLeafCertificatesPostResponse(getAllCloudCertificationAuthorityLeafCertificatesPostResponse = {}) { return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(getAllCloudCertificationAuthorityLeafCertificatesPostResponse)), { "value": n => { getAllCloudCertificationAuthorityLeafCertificatesPostResponse.value = n.getCollectionOfObjectValues(createCloudCertificationAuthorityLeafCertificateFromDiscriminatorValue); } }); } /** * Serializes information the current object * @param GetAllCloudCertificationAuthorityLeafCertificatesPostResponse 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 serializeGetAllCloudCertificationAuthorityLeafCertificatesPostResponse(writer, getAllCloudCertificationAuthorityLeafCertificatesPostResponse = {}, isSerializingDerivedType = false) { if (!getAllCloudCertificationAuthorityLeafCertificatesPostResponse || isSerializingDerivedType) { return; } serializeBaseCollectionPaginationCountResponse(writer, getAllCloudCertificationAuthorityLeafCertificatesPostResponse, isSerializingDerivedType); writer.writeCollectionOfObjectValues("value", getAllCloudCertificationAuthorityLeafCertificatesPostResponse.value, serializeCloudCertificationAuthorityLeafCertificate); } /** * Uri template for the request builder. */ export const GetAllCloudCertificationAuthorityLeafCertificatesRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority%2Did}/getAllCloudCertificationAuthorityLeafCertificates"; /** * Metadata for all the requests in the request builder. */ export const GetAllCloudCertificationAuthorityLeafCertificatesRequestBuilderRequestsMetadata = { post: { uriTemplate: GetAllCloudCertificationAuthorityLeafCertificatesRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createGetAllCloudCertificationAuthorityLeafCertificatesPostResponseFromDiscriminatorValue, }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map