/// <summary>
        /// Initializes any collection properties after deserialization, like next requests for paging.
        /// </summary>
        /// <param name="windows10ImportedPFXCertificateProfileToInitialize">The <see cref="Windows10ImportedPFXCertificateProfile"/> with the collection properties to initialize.</param>
        private void InitializeCollectionProperties(Windows10ImportedPFXCertificateProfile windows10ImportedPFXCertificateProfileToInitialize)
        {
            if (windows10ImportedPFXCertificateProfileToInitialize != null && windows10ImportedPFXCertificateProfileToInitialize.AdditionalData != null)
            {
                if (windows10ImportedPFXCertificateProfileToInitialize.ManagedDeviceCertificateStates != null && windows10ImportedPFXCertificateProfileToInitialize.ManagedDeviceCertificateStates.CurrentPage != null)
                {
                    windows10ImportedPFXCertificateProfileToInitialize.ManagedDeviceCertificateStates.AdditionalData = windows10ImportedPFXCertificateProfileToInitialize.AdditionalData;

                    object nextPageLink;
                    windows10ImportedPFXCertificateProfileToInitialize.AdditionalData.TryGetValue("*****@*****.**", out nextPageLink);
                    var nextPageLinkString = nextPageLink as string;

                    if (!string.IsNullOrEmpty(nextPageLinkString))
                    {
                        windows10ImportedPFXCertificateProfileToInitialize.ManagedDeviceCertificateStates.InitializeNextPageRequest(
                            this.Client,
                            nextPageLinkString);
                    }
                }
            }
        }
        /// <summary>
        /// Creates the specified Windows10ImportedPFXCertificateProfile using POST.
        /// </summary>
        /// <param name="windows10ImportedPFXCertificateProfileToCreate">The Windows10ImportedPFXCertificateProfile to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created Windows10ImportedPFXCertificateProfile.</returns>
        public async System.Threading.Tasks.Task <Windows10ImportedPFXCertificateProfile> CreateAsync(Windows10ImportedPFXCertificateProfile windows10ImportedPFXCertificateProfileToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <Windows10ImportedPFXCertificateProfile>(windows10ImportedPFXCertificateProfileToCreate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
 /// <summary>
 /// Creates the specified Windows10ImportedPFXCertificateProfile using POST.
 /// </summary>
 /// <param name="windows10ImportedPFXCertificateProfileToCreate">The Windows10ImportedPFXCertificateProfile to create.</param>
 /// <returns>The created Windows10ImportedPFXCertificateProfile.</returns>
 public System.Threading.Tasks.Task <Windows10ImportedPFXCertificateProfile> CreateAsync(Windows10ImportedPFXCertificateProfile windows10ImportedPFXCertificateProfileToCreate)
 {
     return(this.CreateAsync(windows10ImportedPFXCertificateProfileToCreate, CancellationToken.None));
 }
        /// <summary>
        /// Updates the specified Windows10ImportedPFXCertificateProfile using PATCH.
        /// </summary>
        /// <param name="windows10ImportedPFXCertificateProfileToUpdate">The Windows10ImportedPFXCertificateProfile to update.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <exception cref="ClientException">Thrown when an object returned in a response is used for updating an object in Microsoft Graph.</exception>
        /// <returns>The updated Windows10ImportedPFXCertificateProfile.</returns>
        public async System.Threading.Tasks.Task <Windows10ImportedPFXCertificateProfile> UpdateAsync(Windows10ImportedPFXCertificateProfile windows10ImportedPFXCertificateProfileToUpdate, CancellationToken cancellationToken)
        {
            if (windows10ImportedPFXCertificateProfileToUpdate.AdditionalData != null)
            {
                if (windows10ImportedPFXCertificateProfileToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    windows10ImportedPFXCertificateProfileToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, windows10ImportedPFXCertificateProfileToUpdate.GetType().Name)
                    });
                }
            }
            if (windows10ImportedPFXCertificateProfileToUpdate.AdditionalData != null)
            {
                if (windows10ImportedPFXCertificateProfileToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    windows10ImportedPFXCertificateProfileToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, windows10ImportedPFXCertificateProfileToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <Windows10ImportedPFXCertificateProfile>(windows10ImportedPFXCertificateProfileToUpdate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(updatedEntity);
            return(updatedEntity);
        }