Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update comments
  • Loading branch information
azabbasi committed May 21, 2020
commit 570c1b000ebc59237d4d5daf2ec0106c8ef59602
6 changes: 3 additions & 3 deletions sdk/iot/Azure.Iot.Hub.Service/src/API Design.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ public class Modules
/// only if this ETag matches the value maintained by the server, indicating that the module has not been modified since it was last retrieved.
/// The current ETag can be retrieved from the module identity last retrieved from the service. To force an unconditional update, set If-Match to the wildcard character (*).</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>The created or updated device.</returns>
/// <returns>The created or updated device module.</returns>
public virtual async Task<Response<ModuleIdentity>> UpdateIdentityAsync(ModuleIdentity moduleIdentity, string ifMatch = null, CancellationToken cancellationToken = default);

/// <summary>
/// Delete a single device.
/// Delete a single module.
/// </summary>
/// <param name="deviceId">The unique identifier of the device that contains the module.</param>
/// <param name="moduleId">The unique identifier of the module to get.</param>
Expand Down Expand Up @@ -129,7 +129,7 @@ public class Modules
public virtual async Task<Response<TwinData>> UpdateTwinAsync(TwinData twinPatch, string ifMatch = null, CancellationToken cancellationToken = default);

/// <summary>
/// Invoke a method on a device.
/// Invoke a method on a device module.
/// </summary>
/// <param name="deviceId">The unique identifier of the device that contains the module.</param>
/// <param name="moduleId">The unique identifier of the module.</param>
Expand Down