/// <summary>
        /// Updates the specified EnrollmentProfile using PATCH.
        /// </summary>
        /// <param name="enrollmentProfileToUpdate">The EnrollmentProfile 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 EnrollmentProfile.</returns>
        public async System.Threading.Tasks.Task <EnrollmentProfile> UpdateAsync(EnrollmentProfile enrollmentProfileToUpdate, CancellationToken cancellationToken)
        {
            if (enrollmentProfileToUpdate.AdditionalData != null)
            {
                if (enrollmentProfileToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    enrollmentProfileToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, enrollmentProfileToUpdate.GetType().Name)
                    });
                }
            }
            if (enrollmentProfileToUpdate.AdditionalData != null)
            {
                if (enrollmentProfileToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    enrollmentProfileToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, enrollmentProfileToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <EnrollmentProfile>(enrollmentProfileToUpdate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(updatedEntity);
            return(updatedEntity);
        }
        /// <summary>
        /// Creates the specified EnrollmentProfile using POST.
        /// </summary>
        /// <param name="enrollmentProfileToCreate">The EnrollmentProfile to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created EnrollmentProfile.</returns>
        public async System.Threading.Tasks.Task <EnrollmentProfile> CreateAsync(EnrollmentProfile enrollmentProfileToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <EnrollmentProfile>(enrollmentProfileToCreate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
 /// <summary>
 /// Creates the specified EnrollmentProfile using POST.
 /// </summary>
 /// <param name="enrollmentProfileToCreate">The EnrollmentProfile to create.</param>
 /// <returns>The created EnrollmentProfile.</returns>
 public System.Threading.Tasks.Task <EnrollmentProfile> CreateAsync(EnrollmentProfile enrollmentProfileToCreate)
 {
     return(this.CreateAsync(enrollmentProfileToCreate, CancellationToken.None));
 }
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="enrollmentProfileToInitialize">The <see cref="EnrollmentProfile"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(EnrollmentProfile enrollmentProfileToInitialize)
 {
 }
 /// <summary>
 /// Adds the specified EnrollmentProfile to the collection via POST.
 /// </summary>
 /// <param name="enrollmentProfile">The EnrollmentProfile to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created EnrollmentProfile.</returns>
 public System.Threading.Tasks.Task <EnrollmentProfile> AddAsync(EnrollmentProfile enrollmentProfile, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <EnrollmentProfile>(enrollmentProfile, cancellationToken));
 }