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

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

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