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

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="enrollmentTroubleshootingEventToInitialize">The <see cref="EnrollmentTroubleshootingEvent"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(EnrollmentTroubleshootingEvent enrollmentTroubleshootingEventToInitialize)
 {
 }
 /// <summary>
 /// Creates the specified EnrollmentTroubleshootingEvent using POST.
 /// </summary>
 /// <param name="enrollmentTroubleshootingEventToCreate">The EnrollmentTroubleshootingEvent to create.</param>
 /// <returns>The created EnrollmentTroubleshootingEvent.</returns>
 public System.Threading.Tasks.Task <EnrollmentTroubleshootingEvent> CreateAsync(EnrollmentTroubleshootingEvent enrollmentTroubleshootingEventToCreate)
 {
     return(this.CreateAsync(enrollmentTroubleshootingEventToCreate, CancellationToken.None));
 }
        /// <summary>
        /// Updates the specified EnrollmentTroubleshootingEvent using PATCH.
        /// </summary>
        /// <param name="enrollmentTroubleshootingEventToUpdate">The EnrollmentTroubleshootingEvent 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 EnrollmentTroubleshootingEvent.</returns>
        public async System.Threading.Tasks.Task <EnrollmentTroubleshootingEvent> UpdateAsync(EnrollmentTroubleshootingEvent enrollmentTroubleshootingEventToUpdate, CancellationToken cancellationToken)
        {
            if (enrollmentTroubleshootingEventToUpdate.AdditionalData != null)
            {
                if (enrollmentTroubleshootingEventToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    enrollmentTroubleshootingEventToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, enrollmentTroubleshootingEventToUpdate.GetType().Name)
                    });
                }
            }
            if (enrollmentTroubleshootingEventToUpdate.AdditionalData != null)
            {
                if (enrollmentTroubleshootingEventToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    enrollmentTroubleshootingEventToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, enrollmentTroubleshootingEventToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <EnrollmentTroubleshootingEvent>(enrollmentTroubleshootingEventToUpdate, cancellationToken).ConfigureAwait(false);

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