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

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

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