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