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

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

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