/// <summary>
 /// Adds the specified MicrosoftTunnelHealthThreshold to the collection via POST.
 /// </summary>
 /// <param name="microsoftTunnelHealthThreshold">The MicrosoftTunnelHealthThreshold to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created MicrosoftTunnelHealthThreshold.</returns>
 public System.Threading.Tasks.Task <MicrosoftTunnelHealthThreshold> AddAsync(MicrosoftTunnelHealthThreshold microsoftTunnelHealthThreshold, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <MicrosoftTunnelHealthThreshold>(microsoftTunnelHealthThreshold, cancellationToken));
 }
 /// <summary>
 /// Adds the specified MicrosoftTunnelHealthThreshold to the collection via POST.
 /// </summary>
 /// <param name="microsoftTunnelHealthThreshold">The MicrosoftTunnelHealthThreshold to add.</param>
 /// <returns>The created MicrosoftTunnelHealthThreshold.</returns>
 public System.Threading.Tasks.Task <MicrosoftTunnelHealthThreshold> AddAsync(MicrosoftTunnelHealthThreshold microsoftTunnelHealthThreshold)
 {
     return(this.AddAsync(microsoftTunnelHealthThreshold, CancellationToken.None));
 }
Example #3
0
        /// <summary>
        /// Creates the specified MicrosoftTunnelHealthThreshold using POST.
        /// </summary>
        /// <param name="microsoftTunnelHealthThresholdToCreate">The MicrosoftTunnelHealthThreshold to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created MicrosoftTunnelHealthThreshold.</returns>
        public async System.Threading.Tasks.Task <MicrosoftTunnelHealthThreshold> CreateAsync(MicrosoftTunnelHealthThreshold microsoftTunnelHealthThresholdToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <MicrosoftTunnelHealthThreshold>(microsoftTunnelHealthThresholdToCreate, cancellationToken).ConfigureAwait(false);

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

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