Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch: Adds Move Operation #3389

Merged
merged 19 commits into from
Apr 11, 2023
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
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
Moved summary location.
  • Loading branch information
Amaan-Haque authored Aug 30, 2022
commit 60730f951fcf9a61129ab9f7833269c02fb41efd
9 changes: 3 additions & 6 deletions Microsoft.Azure.Cosmos/src/Patch/PatchOperationType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,14 @@ namespace Microsoft.Azure.Cosmos
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

/// <summary>
/// Type of Patch operation.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]

/// <summary>
/// Describes the list of Patch supported operation types.
/// </summary>
/// <remarks>
/// Further enum additions are expected in the future, application should be authored to cover this scenario
/// </remarks>
/// </remarks>
[JsonConverter(typeof(StringEnumConverter))]

public enum PatchOperationType
{
/// <summary>
Expand Down