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

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

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