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