Skip to content

Commit

Permalink
Added new Capability enum values ReadBucketNotifications and WriteBuc…
Browse files Browse the repository at this point in the history
…ketNotifications.
  • Loading branch information
logiclrd committed May 24, 2024
1 parent f927ee6 commit 49dc556
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/Client/Models/Enums/Capability.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,23 @@ public enum Capability
WriteBucketEncryption,

/// <summary>
/// Permission to
/// Permission to read bucket replication information.
/// </summary>
ReadBucketReplications,

/// <summary>
/// Permission to
/// Permission to write bucket replication information.
/// </summary>
WriteBucketReplications
WriteBucketReplications,

/// <summary>
/// Permission to read the event notification rules for a bucket.
/// </summary>
ReadBucketNotifications,

/// <summary>
/// Permission to write event notification rule information for a bucket.
/// </summary>
WriteBucketNotifications,
}
}

0 comments on commit 49dc556

Please sign in to comment.