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